/* ============================================
   PY Studio - Premium CSS (COMPLETELY FIXED)
   ============================================ */

/* Force load - add at very top of style.css */
@charset "UTF-8";
/* CSS Variables */
:root {
    --void-black: #050505;
    --deep-black: #0a0a0f;
    --midnight: #0f1117;
    --navy-dark: #151921;
    --navy-mid: #1a1f2e;
    --navy-light: #232838;

    --gold-primary: #C9A84C;
    --gold-bright: #D4AF37;
    --gold-light: #E8D5A3;
    --gold-pale: #F5ECD7;
    --gold-dark: #A0852C;

    --text-primary: #f0f0f5;
    --text-secondary: #a0a5b8;
    --text-muted: #6b7280;
    --text-dark: #1a1a1a;

    --white: #ffffff;
    --overlay: rgba(5, 5, 5, 0.85);
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(201, 168, 76, 0.08);

    --font-display: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-slower: 0.8s cubic-bezier(0.16, 1, 0.3, 1);

    --shadow-sm: 0 1px 2px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.4);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.5);
    --shadow-xl: 0 16px 48px rgba(0,0,0,0.6);
    --shadow-gold: 0 4px 20px rgba(201, 168, 76, 0.15);
    --shadow-gold-lg: 0 8px 32px rgba(201, 168, 76, 0.25);
    --glow-gold: 0 0 40px rgba(201, 168, 76, 0.3);
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-secondary);
    background: var(--void-black);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: auto;
}

/* Custom Cursor - pointer-events none to not block clicks */
.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none !important;
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--gold-primary);
    box-shadow: 0 0 10px var(--gold-primary);
    transition: width 0.2s, height 0.2s, background 0.2s;
}

.cursor-outline {
    width: 36px;
    height: 36px;
    border: 1.5px solid var(--gold-primary);
    opacity: 0.4;
    transition: width 0.3s, height 0.3s, opacity 0.3s, border-color 0.3s;
}

@media (hover: none) {
    body { cursor: auto; }
    .cursor-dot, .cursor-outline { display: none; }
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

ul { list-style: none; }

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding { padding: 120px 0; }
.bg-light { background: var(--deep-black); }

/* ============================================
   LOADER
   ============================================ */
.loader-logo {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-logo img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    display: block;
}
.loader {
    position: fixed;
    inset: 0;
    background: var(--void-black);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}
.loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.loader-content { text-align: center; }
.loader-bar {
    width: 200px;
    height: 2px;
    background: var(--navy-mid);
    border-radius: 2px;
    margin: 0 auto 20px;
    overflow: hidden;
}
.loader-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-light));
    border-radius: 2px;
    animation: loadProgress 2s ease-in-out forwards;
    box-shadow: 0 0 10px var(--gold-primary);
}
.loader-text {
    color: var(--text-muted);
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
}
@keyframes loadProgress {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.95); }
}

/* ============================================
   NAVIGATION - FIXED LOGO SIZING
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition-base);
    border-bottom: 1px solid transparent;
}
.navbar.scrolled {
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 12px 0;
}
.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* FIXED: Single logo rule with proper constraints */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 10px;
    flex-shrink: 0;
    max-width: 180px;
    height: 50px;
    overflow: hidden;
}
.logo-img {
    height: 100%;
    width: auto;
    max-width: 180px;
    max-height: 50px;
    display: block;
    object-fit: contain;
    object-position: left center;
}
.logo-text-fallback { display: none; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav-link {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
    position: relative;
    padding: 5px 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-bright));
    transition: width 0.3s ease;
}
.nav-link:hover,
.nav-link.active {
    color: var(--gold-light);
}
.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}
.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: var(--void-black);
    font-weight: 700;
    font-size: 13px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition-base);
    box-shadow: var(--shadow-gold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold-lg);
    background: linear-gradient(135deg, var(--gold-bright), var(--gold-primary));
}
.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: var(--void-black);
    font-weight: 700;
    font-size: 15px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition-base);
    box-shadow: var(--shadow-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold-lg);
    background: linear-gradient(135deg, var(--gold-bright), var(--gold-primary));
}
.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: transparent;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 15px;
    border-radius: 50px;
    border: 1.5px solid var(--navy-light);
    cursor: pointer;
    transition: var(--transition-base);
}
.btn-outline:hover {
    border-color: var(--gold-primary);
    color: var(--gold-light);
    transform: translateY(-3px);
    background: rgba(201, 168, 76, 0.05);
}
.btn-white {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: var(--text-primary);
    color: var(--void-black);
    font-weight: 700;
    font-size: 15px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition-base);
    box-shadow: var(--shadow-lg);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    background: var(--white);
}
.btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: transparent;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 15px;
    border-radius: 50px;
    border: 1.5px solid rgba(240, 240, 245, 0.2);
    cursor: pointer;
    transition: var(--transition-base);
}
.btn-outline-white:hover {
    background: rgba(240, 240, 245, 0.05);
    border-color: var(--text-primary);
    transform: translateY(-3px);
}
.btn-large {
    padding: 18px 40px;
    font-size: 16px;
}
.btn-full {
    width: 100%;
    justify-content: center;
    padding: 18px;
    font-size: 16px;
}
.btn-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}
.btn-gold:hover .btn-icon {
    transform: translateX(5px);
}

/* Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}
.menu-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition-base);
    transform-origin: center;
}
.menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--void-black);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-slow);
}
.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}
.mobile-menu-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.mobile-link {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    color: var(--text-primary);
    position: relative;
    display: inline-block;
}
.mobile-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-bright));
    transition: width 0.3s ease;
}
.mobile-link:hover::after {
    width: 100%;
}

/* ============================================
   HERO SECTION - FIXED VIDEO & CONTENT
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--void-black);
    overflow: hidden;
    padding-top: 80px;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(201, 168, 76, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(21, 25, 33, 0.8) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(201, 168, 76, 0.05) 0%, transparent 40%);
    pointer-events: none;
    z-index: 1;
}

/* Hero Video Background */
.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    opacity: 0.4;
}
.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg, 
        rgba(5, 5, 5, 0.9) 0%, 
        rgba(15, 17, 23, 0.7) 50%, 
        rgba(5, 5, 5, 0.9) 100%
    );
    z-index: 1;
    pointer-events: none;
}

/* Hero content - above everything */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 24px;
    pointer-events: auto;
}

/* Gold particles */
.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}
.gold-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--gold-primary);
    border-radius: 50%;
    opacity: 0.2;
    box-shadow: 0 0 10px var(--gold-primary);
    animation: floatParticle 20s linear infinite;
    pointer-events: none;
}
@keyframes floatParticle {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    10% { opacity: 0.3; }
    90% { opacity: 0.3; }
    100% { transform: translateY(-100vh) scale(1.5); opacity: 0; }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: var(--gold-light);
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.8s ease forwards;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--gold-primary);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 8px var(--gold-primary);
}
/* ============================================
   HERO TITLE
   ============================================ */

.hero-title {
    margin-bottom: 30px;
}

.title-line {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(34px, 8vw, 80px);
    font-weight: 900;
    line-height: 1.1;
    color: var(--text-primary);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.title-line:nth-child(1) {
    animation-delay: 0.2s;
}

.title-line:nth-child(2) {
    animation-delay: 0.4s;
}

.title-line:nth-child(3) {
    animation-delay: 0.6s;
}

/* ============================================
   GOLD TEXT - DESKTOP
   ============================================ */

.gold-text {
    display: inline-block;
    color: var(--gold-bright);

    background: linear-gradient(
        135deg,
        var(--gold-primary),
        var(--gold-bright),
        var(--gold-light),
        var(--gold-bright),
        var(--gold-primary)
    );

    background-size: 250% 250%;
    background-position: 0% 50%;

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;

    animation: gradientShift 6s ease infinite;
}

/* ============================================
   MOBILE FIX - FORCE GOLD TEXT VISIBLE
   Put this section at the VERY BOTTOM of your CSS file
   ============================================ */

@media screen and (max-width: 768px) {
    .hero-title {
        margin-bottom: 22px !important;
    }

    .hero-title .title-line {
        display: block !important;
        font-size: clamp(31px, 10vw, 48px) !important;
        line-height: 1.15 !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        animation: none !important;
    }

    .hero-title .gold-line {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        min-height: 1.25em !important;
        margin: 4px 0 !important;
    }

    .hero-title .gold-text {
        display: inline-block !important;
        opacity: 1 !important;
        visibility: visible !important;

        /* Mobile-safe solid gold */
        color: #ffd700 !important;
        -webkit-text-fill-color: #ffd700 !important;

        /* Disable gradient on mobile */
        background: none !important;
        background-image: none !important;
        -webkit-background-clip: border-box !important;
        background-clip: border-box !important;

        /* Disable gradient animation on mobile */
        animation: none !important;

        text-shadow: 0 0 16px rgba(255, 215, 0, 0.35) !important;
    }
}

@media screen and (max-width: 420px) {
    .hero-title .title-line {
        font-size: clamp(28px, 10.5vw, 40px) !important;
        line-height: 1.18 !important;
    }

    .hero-title .gold-line {
        min-height: 1.3em !important;
    }

    .hero-title .gold-text {
        color: #ffdf3d !important;
        -webkit-text-fill-color: #ffdf3d !important;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}
	
@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}
.hero-description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.8s forwards;
}
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 80px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 1s forwards;
}
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 0.8s ease 1.2s forwards;
}
.stat-item { text-align: center; }
.stat-number {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 900;
    color: var(--text-primary);
    line-height: 1;
}
.stat-number::after {
    content: '+';
    font-size: 24px;
    color: var(--gold-primary);
    margin-left: 2px;
}
.stat-label {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.stat-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, var(--navy-light), transparent);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: fadeInUp 0.8s ease 1.5s forwards;
    opacity: 0;
    pointer-events: none;
    z-index: 2;
}
.scroll-mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--navy-light);
    border-radius: 13px;
    position: relative;
}
.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--gold-primary);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease-in-out infinite;
}
@keyframes scrollWheel {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50% { transform: translateX(-50%) translateY(8px); opacity: 0.3; }
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header { margin-bottom: 80px; }
.section-header.center { text-align: center; }
.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}
.section-title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 900;
    color: var(--text-primary);
    line-height: 1.1;
    margin-bottom: 20px;
}
.section-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 600px;
    line-height: 1.7;
}
.section-header.center .section-subtitle { margin: 0 auto; }

/* ============================================
   ABOUT SECTION
   ============================================ */  
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-text {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 20px;
}
.about-features {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}
.feature-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.15), rgba(201, 168, 76, 0.05));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    border: 1px solid var(--glass-border);
    transition: var(--transition-base);
}
.feature-item:hover .feature-icon {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: var(--void-black);
    box-shadow: var(--shadow-gold);
    border-color: transparent;
}
.feature-icon svg {
    width: 24px;
    height: 24px;
}
.feature-item h4 {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 5px;
}
.feature-item p {
    font-size: 15px;
    color: var(--text-muted);
}

.about-visual { position: relative; }
.about-image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--navy-dark), var(--midnight));
    border: 1px solid var(--glass-border);
}
.about-image-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(201, 168, 76, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(21, 25, 33, 0.5) 0%, transparent 50%);
}
.about-floating-card {
    position: absolute;
    background: var(--navy-mid);
    padding: 16px 24px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
    animation: floatCard 6s ease-in-out infinite;
    backdrop-filter: blur(10px);
    pointer-events: none;
}
.floating-icon { font-size: 24px; }
.card-1 { top: 15%; left: -20px; animation-delay: 0s; }
.card-2 { top: 45%; right: -30px; animation-delay: -2s; }
.card-3 { bottom: 15%; left: 10%; animation-delay: -4s; }
@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}
.about-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
}
.about-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.1), transparent);
    border-radius: 24px;
    pointer-events: none;
}

/* ============================================
   SERVICES SECTION - FIXED BUTTON
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    background: var(--navy-dark);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid var(--glass-border);
    transition: var(--transition-slower);
    position: relative;
    overflow: hidden;
    cursor: default;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-bright), var(--gold-primary));
    transform: scaleX(0);
    transition: transform 0.6s ease;
    pointer-events: none;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl), var(--shadow-gold);
    border-color: rgba(201, 168, 76, 0.15);
    background: var(--navy-mid);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card.featured {
    background: linear-gradient(135deg, var(--navy-mid), var(--navy-dark));
    border-color: rgba(201, 168, 76, 0.25);
    box-shadow: var(--shadow-gold);
}
.service-card.featured .service-title,
.service-desc { color: var(--text-primary); }
.service-card.featured .service-price { color: var(--gold-bright); }
.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 16px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: var(--void-black);
    font-size: 11px;
    font-weight: 800;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.1), rgba(201, 168, 76, 0.03));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--gold-primary);
    transition: var(--transition-base);
    border: 1px solid var(--glass-border);
}
.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: var(--void-black);
    transform: scale(1.1) rotate(-5deg);
    border-color: transparent;
    box-shadow: var(--shadow-gold);
}
.service-icon svg {
    width: 26px;
    height: 26px;
}
.service-title {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}
.service-desc {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 24px;
}
.service-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
}
.detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-secondary);
}
.detail-dot {
    width: 6px;
    height: 6px;
    background: var(--gold-primary);
    border-radius: 50%;
    min-width: 6px;
    box-shadow: 0 0 6px rgba(201, 168, 76, 0.4);
}

/* FIXED: Service footer with proper button */
.service-footer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 20px;
    border-top: 1px solid var(--glass-border);
    gap: 12px;
    position: relative;
    z-index: 2;
}
.service-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
}
.service-price {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--gold-primary);
}
.service-timeline {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
}

/* FIXED: Service button - clickable everywhere */
.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: none;
    color: var(--gold-primary);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition-base);
    padding: 8px 0;
    position: relative;
    z-index: 10;
    pointer-events: auto;
    -webkit-tap-highlight-color: rgba(201, 168, 76, 0.2);
}
.service-btn:hover {
    color: var(--gold-light);
    transform: translateX(5px);
}
.service-btn:active { transform: translateX(2px); }

.requirement-hint {
    background: rgba(201, 168, 76, 0.08);
    border-left: 3px solid #c9a84c;
    padding: 12px 16px;
    margin-bottom: 12px;
    border-radius: 0 6px 6px 0;
    font-size: 0.9rem;
    color: #c9a84c;
    line-height: 1.5;
    display: none;
}
#service option { padding: 8px; }
.contact.section-padding { transition: box-shadow 0.5s ease; }
.btn-loading { display: none; }
button[type="submit"]:disabled .btn-icon { display: none; }
button[type="submit"]:disabled .btn-loading { display: inline !important; }

/* ============================================
   PROCESS SECTION
   ============================================ */
.process-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}
.process-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--gold-primary), var(--gold-dark), var(--gold-primary), transparent);
    transform: translateX(-50%);
    opacity: 0.3;
}
.process-step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    position: relative;
}
.process-step:last-child { margin-bottom: 0; }
.process-step:nth-child(even) .process-number {
    grid-column: 2;
    justify-self: start;
}
.process-step:nth-child(even) .process-content {
    grid-column: 1;
    grid-row: 1;
    text-align: right;
}
.process-number {
    font-family: var(--font-display);
    font-size: 120px;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1.5px var(--gold-primary);
    line-height: 1;
    justify-self: end;
    opacity: 0.2;
    transition: var(--transition-slower);
}
.process-step:hover .process-number {
    opacity: 0.6;
    color: var(--gold-primary);
    -webkit-text-stroke: 0;
    text-shadow: var(--glow-gold);
}
.process-content {
    background: var(--navy-dark);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--glass-border);
    transition: var(--transition-base);
}
.process-step:hover .process-content {
    box-shadow: var(--shadow-lg), var(--shadow-gold);
    transform: translateX(10px);
    border-color: rgba(201, 168, 76, 0.1);
}
.process-step:nth-child(even):hover .process-content { transform: translateX(-10px); }
.process-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--void-black);
    margin-bottom: 20px;
    box-shadow: var(--shadow-gold);
}
.process-icon svg {
    width: 24px;
    height: 24px;
}
.process-content h3 {
    font-family: var(--font-body);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}
.process-content p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 20px;
}
.process-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.process-list li {
    font-size: 14px;
    color: var(--text-muted);
    padding-left: 20px;
    position: relative;
}
.process-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold-primary);
    font-weight: 700;
}

/* ============================================
   PORTFOLIO SECTION
   ============================================ */
.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}
.filter-btn {
    padding: 12px 28px;
    background: var(--navy-dark);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-base);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: var(--void-black);
    border-color: transparent;
    box-shadow: var(--shadow-gold);
}
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.portfolio-item {
    opacity: 1;
    transform: scale(1);
    transition: var(--transition-slower);
    cursor: pointer;
}
.portfolio-item.hidden {
    opacity: 0;
    transform: scale(0.8);
    position: absolute;
    pointer-events: none;
}
.portfolio-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    border: 1px solid var(--glass-border);
}
.portfolio-image {
    position: absolute;
    inset: 0;
    transition: transform 0.8s ease;
}
.portfolio-card:hover .portfolio-image { transform: scale(1.1); }
.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5, 5, 5, 0.95) 0%, rgba(5, 5, 5, 0.3) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transition: var(--transition-slower);
    pointer-events: none;
}
.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
    pointer-events: auto;
}
.portfolio-category {
    display: inline-block;
    padding: 6px 14px;
    background: var(--gold-primary);
    color: var(--void-black);
    font-size: 11px;
    font-weight: 800;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    width: fit-content;
}
.portfolio-overlay h4 {
    font-family: var(--font-body);
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}
.portfolio-overlay p {
    font-size: 14px;
    color: var(--text-muted);
}

/* ============================================
   TRUST SECTION
   ============================================ */
.trust {
    --trust-card-gap: 2rem;
    --trust-icon-size: 52px;
    --trust-icon-bg-size: 76px;
    --trust-border-radius: 20px;
    --trust-transition: all 0.3s cubic-bezier(0.2, 0, 0, 1);
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--trust-card-gap);
    margin-top: 3rem;	
}
.trust-card {
    border-radius: var(--trust-border-radius);
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--navy-mid), var(--navy-dark));
    border-color: rgba(201, 168, 76, 0.25);
    transition: var(--trust-transition);
}
.trust-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 40px -15px rgba(0, 0, 0, 0.12);
    border-color: rgba(184, 134, 11, 0.2);
}
.trust-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-bright), var(--gold-primary));
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}
.trust-card:hover::before { transform: scaleX(1); }
.trust-icon-wrapper {
    position: relative;
    width: var(--trust-icon-bg-size);
    height: var(--trust-icon-bg-size);
    margin: 0 auto 1.5rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.trust-icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.08), rgba(184, 134, 11, 0.02));
    border-radius: 50%;
    transition: var(--trust-transition);
}
.trust-card:hover .trust-icon-bg {
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.15), rgba(184, 134, 11, 0.05));
    transform: scale(1.05);
}
.trust-icon {
    width: var(--trust-icon-size);
    height: var(--trust-icon-size);
    stroke: #b8860b;
    stroke-width: 1.8;
    transition: var(--trust-transition);
    position: relative;
    z-index: 2;
}
.trust-card:hover .trust-icon {
    transform: scale(1.02);
    stroke: #d4af37;
}
.trust-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    letter-spacing: -0.2px;
}
.trust-card p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta {
    background: linear-gradient(135deg, var(--midnight), var(--navy-dark));
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}
.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}
.cta-title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 24px;
}
.cta-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 40px;
}
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}
.contact-desc {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 40px;
}
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}
.contact-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.1), rgba(201, 168, 76, 0.03));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    border: 1px solid var(--glass-border);
    transition: var(--transition-base);
}
.contact-item:hover .contact-icon {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: var(--void-black);
    box-shadow: var(--shadow-gold);
    border-color: transparent;
}
.contact-icon svg {
    width: 22px;
    height: 22px;
}
.contact-item h4 {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}
.contact-item p {
    font-size: 15px;
    color: var(--text-muted);
}
.social-links {
    display: flex;
    gap: 12px;
}
.social-link {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    border: 1px solid var(--glass-border);
    background: var(--navy-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition-base);
}
.social-link:hover {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    border-color: transparent;
    color: var(--void-black);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}
.social-link svg {
    width: 20px;
    height: 20px;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--navy-dark);
    border-radius: 20px;
    padding: 50px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--glass-border);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid var(--navy-light);
    border-radius: 12px;
    font-size: 15px;
    font-family: var(--font-body);
    color: var(--text-primary);
    background: var(--navy-mid);
    transition: var(--transition-base);
    outline: none;
    cursor: auto;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.1), var(--shadow-gold);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 18px;
    padding-right: 45px;
}
.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

/* ============================================
   QUOTE MODAL
   ============================================ */
.quote-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}
.quote-modal.active {
    opacity: 1;
    visibility: visible;
}
.quote-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(10px);
    cursor: pointer;
}
.quote-modal-content {
    position: relative;
    background: var(--navy-dark);
    border-radius: 24px;
    width: 90%;
    max-width: 700px;
    max-height: 90vh;
    overflow-y: auto;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-xl), var(--shadow-gold);
    transform: translateY(30px) scale(0.95);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.quote-modal.active .quote-modal-content {
    transform: translateY(0) scale(1);
}
.quote-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--navy-mid);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-base);
    z-index: 10;
}
.quote-modal-close:hover {
    background: var(--gold-primary);
    color: var(--void-black);
    transform: rotate(90deg);
}
.quote-modal-header {
    padding: 40px 40px 0;
    text-align: center;
}
.quote-modal-header h3 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}
.quote-modal-header p {
    color: var(--text-muted);
    font-size: 15px;
}
.quote-modal-body {
    padding: 30px 40px 40px;
}

/* ============================================
   NOTIFICATION
   ============================================ */
.notification {
    position: fixed;
    top: 100px;
    right: 30px;
    padding: 16px 24px;
    border-radius: 12px;
    background: var(--navy-dark);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-xl);
    z-index: 10001;
    transform: translateX(120%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    max-width: 400px;
    pointer-events: none;
}
.notification.show { transform: translateX(0); }
.notification-success { border-left: 4px solid var(--gold-primary); }
.notification-error { border-left: 4px solid #ef4444; }
.notification-content {
    display: flex;
    align-items: center;
    gap: 12px;
}
.notification-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}
.notification-success .notification-icon {
    background: rgba(201, 168, 76, 0.15);
    color: var(--gold-primary);
}
.notification-error .notification-icon {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}
.notification-text {
    font-size: 14px;
    color: var(--text-primary);
    line-height: 1.5;
}

/* ============================================
   FOOTER
   ============================================ 
.footer {
    background: var(--void-black);
    padding: 80px 0 30px;
    border-top: 1px solid var(--glass-border);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}
.footer-brand { max-width: 300px; }
.footer-desc {
    font-size: 15px;
    line-height: 2.2;
    color: var(--text-muted);
}
.footer-links h4 {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.footer-links a {
    font-size: 14px;
    color: var(--text-muted);
    transition: var(--transition-base);
    display: inline-block;
}
.footer-links a:hover {
    color: var(--gold-primary);
    padding-left: 5px;
}
.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--glass-border);
    text-align: center;
}
.footer-bottom p {
    font-size: 13px;
    color: var(--text-muted);
    letter-spacing: 1px;
}  */

/* code start from here for footer */

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--void-black);
    padding: 80px 0 30px;
    border-top: 1px solid var(--glass-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    max-width: 360px;
}

.footer-brand .logo {
    display: inline-flex;
    align-items: center;
    margin-bottom: 22px;
}

.footer-brand .logo-img {
    max-width: 150px;
    height: auto;
    display: block;
}

.footer-desc {
    font-size: 15px;
    line-height: 2;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Footer CTA Button */
.footer-cta {
    margin-top: 26px;
}

.footer-sample-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, #E5B83C, #F8D86A);
    color: #111111;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.2;
    text-decoration: none;
    letter-spacing: 0.3px;
    box-shadow: 0 10px 30px rgba(229, 184, 60, 0.25);
    transition: var(--transition-base);
    white-space: nowrap;
}

.footer-sample-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(229, 184, 60, 0.38);
    color: #111111;
}

/* Footer Links */
.footer-links h4 {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 14px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin: 0;
    padding: 0;
}

.footer-links a,
.footer-links span {
    font-size: 14px;
    color: var(--text-muted);
    transition: var(--transition-base);
    display: inline-block;
    text-decoration: none;
    line-height: 1.6;
}

.footer-links a:hover {
    color: var(--gold-primary);
    padding-left: 5px;
}

/* Contact column fix */
.footer-contact a,
.footer-contact span {
    word-break: break-word;
}
/* Footer Highlight Strip  */
.footer-highlights {
    position: relative;
    margin-top: 42px;
    margin-bottom: 34px;
    padding: 20px;
    border-radius: 22px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    background:
        linear-gradient(135deg, rgba(229, 184, 60, 0.10), rgba(255, 255, 255, 0.03)),
        rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(229, 184, 60, 0.22);
    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

.footer-highlights::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(229, 184, 60, 0.18), transparent 35%),
        radial-gradient(circle at bottom right, rgba(0, 229, 255, 0.08), transparent 35%);
    pointer-events: none;
}

.footer-highlight-item {
    position: relative;
    z-index: 1;
    min-height: 58px;
    padding: 14px 16px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
    text-align: center;
    background: rgba(10, 10, 10, 0.42);
    border: 1px solid rgba(229, 184, 60, 0.18);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: var(--transition-base);
}

.footer-highlight-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #E5B83C, #F8D86A);
    color: #111111;
    font-size: 12px;
    font-weight: 900;
    box-shadow: 0 0 18px rgba(229, 184, 60, 0.28);
}

.footer-highlight-item:hover {
    color: var(--gold-primary);
    border-color: rgba(229, 184, 60, 0.42);
    background: rgba(229, 184, 60, 0.08);
    transform: translateY(-3px);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.25);
}

/* Footer Bottom */
.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--glass-border);
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-muted);
    letter-spacing: 1px;
    line-height: 1.8;
    margin: 0;
}

.footer-bottom-note {
    margin-top: 10px !important;
    opacity: 0.75;
    letter-spacing: 0.5px !important;
}
/* footer privacy */
.footer-legal-links {
    margin-top: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.footer-legal-links a,
.footer-legal-links span {
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: none;
}

.footer-legal-links a:hover {
    color: var(--gold-primary);
}

@media (max-width: 480px) {
    .footer-legal-links {
        flex-wrap: wrap;
        gap: 8px;
    }
}
/* ============================================
   FOOTER RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
    .footer {
        padding: 70px 0 28px;
    }

    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 42px;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-highlights {
        grid-template-columns: repeat(2, 1fr);
		padding: 18px;
    }
}
/* Mobile */
@media (max-width: 768px) {
    .footer {
        padding: 60px 0 26px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 38px;
        margin-bottom: 44px;
        text-align: left;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-brand .logo-img {
        max-width: 135px;
    }

    .footer-desc {
        font-size: 14px;
        line-height: 1.9;
    }

    .footer-cta {
        margin-top: 22px;
    }

    .footer-sample-btn {
        width: 100%;
        max-width: 280px;
        padding: 14px 18px;
        font-size: 14px;
        white-space: normal;
        text-align: center;
    }

    .footer-links h4 {
        margin-bottom: 18px;
        font-size: 13px;
        letter-spacing: 1.6px;
    }

    .footer-links ul {
        gap: 11px;
    }

    .footer-links a,
    .footer-links span {
        font-size: 14px;
    }

    .footer-links a:hover {
        padding-left: 0;
    }

    .footer-highlights {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 30px;
        margin-bottom: 28px;
        padding: 16px;
        border-radius: 18px;
    }

    .footer-highlight-item {
        justify-content: flex-start;
        min-height: 54px;
        padding: 13px 15px;
        border-radius: 16px;
        font-size: 13.5px;
        text-align: left;
    }
	.footer-highlight-icon {
        width: 23px;
        height: 23px;
        min-width: 23px;
        font-size: 11px;
    }
    .footer-bottom {
        padding-top: 24px;
    }

    .footer-bottom p {
        font-size: 12px;
        line-height: 1.8;
        letter-spacing: 0.5px;
    }
}

/* Small Mobile */
@media (max-width: 420px) {
    .footer {
        padding: 52px 0 24px;
    }

    .footer-grid {
        gap: 34px;
    }

    .footer-brand .logo-img {
        max-width: 125px;
    }

    .footer-sample-btn {
        max-width: 100%;
        font-size: 13px;
        padding: 13px 16px;
    }

    .footer-highlights {
        padding: 14px;
    }

    .footer-highlight-item {
        font-size: 13px;
        padding: 12px 14px;
    }
} 


/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: var(--void-black);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-base);
    box-shadow: var(--shadow-gold);
    z-index: 999;
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold-lg);
}
.back-to-top svg {
    width: 20px;
    height: 20px;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    animation: fadeIn 0.3s ease;
    cursor: pointer;
}
.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}
.lightbox-content img {
    width: 100%;
    height: auto;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
}
.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 10px;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .process-step {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .process-line { display: none; }
    .process-number {
        justify-self: start !important;
        font-size: 80px;
    }
    .process-step:nth-child(even) .process-content {
        grid-column: 1;
        grid-row: auto;
        text-align: left;
    }
    .process-step:nth-child(even) .process-number { grid-column: 1; }
    .testimonial-card { min-width: calc(100% - 0px); }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .menu-toggle { display: flex; }

    /* Mobile logo sizing */
    .logo {
        max-width: 140px;
        height: 42px;
    }
    .logo-img { max-height: 42px; }

    .hero-stats { gap: 20px; }
    .stat-divider { display: none; }
    .stat-item { flex: 1 1 40%; }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    .services-grid { grid-template-columns: 1fr; }
    .portfolio-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-brand { max-width: 100%; }
    .section-padding { padding: 80px 0; }
    .about-floating-card { display: none; }
    .process-step:hover .process-content { transform: none; }
    .contact-form-wrapper { padding: 30px 20px; }
}

@media (max-width: 480px) {
    .hero-title .title-line { font-size: 36px; }
    .stat-number { font-size: 36px; }
    .testimonial-card { padding: 30px; }
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .trust-card { padding: 1.75rem 1.25rem; }
    .trust-icon-wrapper {
        --trust-icon-bg-size: 68px;
        --trust-icon-size: 44px;
    }
}

/* Smooth scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--void-black); }
::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, var(--gold-primary), var(--gold-dark));
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: var(--gold-bright); }

::selection {
    background: rgba(201, 168, 76, 0.3);
    color: var(--text-primary);
}
:focus-visible {
    outline: 2px solid var(--gold-primary);
    outline-offset: 2px;
}
/* ============================================ */
/* 1. SMOOTHER TRANSITIONS & MICRO-INTERACTIONS */
/* ============================================ */

/* Subtle scale effect for stat items on hover */
.stat-item {
    transition: transform 0.2s ease, opacity 0.2s ease;
}
.stat-item:hover {
    transform: translateY(-5px);
}

/* Enhance gold-particle animation with softer glow */
.gold-particle {
    filter: blur(1px);
    transition: filter 0.3s;
}
.gold-particle:hover {
    filter: blur(0px);
    box-shadow: 0 0 12px rgba(255, 215, 0, 0.8);
}

/* ============================================ */
/* 2. IMPROVED TYPOGRAPHY & TEXT EFFECTS         */
/* ============================================ */

/* Gradient text for .gold-text (if not already defined) */
.gold-text {
    background: linear-gradient(135deg, #F5AF19, #F2C94C, #FFD700);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    text-shadow: none;
}

/* Better letter-spacing for hero description */
.hero-description {
    line-height: 1.5;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================ */
/* 3. RESPONSIVE ENHANCEMENTS (mobile & tablet)  */
/* ============================================ */

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    .hero-services span {
        font-size: 0.7rem;
        padding: 0.2rem 0.8rem;
    }
    .hero-stats {
        flex-wrap: wrap;
        gap: 1rem;
    }
    .stat-divider {
        display: none; /* cleaner on mobile */
    }
    .stat-item {
        min-width: 120px;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    .btn-large {
        width: 80%;
        justify-content: center;
    }
}

/* ============================================ */
/* 4. VIDEO OVERLAY ENHANCEMENT (depth & texture) */
/* ============================================ */

.hero-video-overlay {
    background: radial-gradient(circle at center, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
    backdrop-filter: brightness(0.9) contrast(1.1);
}

/* ============================================ */
/* 5. CTA BUTTON ELEVATION & GLOW               */
/* ============================================ */

.btn-gold {
    transition: all 0.25s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}
.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
}

.btn-outline {
    transition: all 0.25s ease;
}
.btn-outline:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-3px);
}

/* ============================================ */
/* 6. ANIMATION FOR STAT NUMBERS (pulse on update) */
/* ============================================ */

@keyframes statPop {
    0% { transform: scale(1); }
    50% { transform: scale(1.08); color: #FFD700; }
    100% { transform: scale(1); }
}
.stat-number.changed {
    animation: statPop 0.3s ease-out;
}

/* ============================================ */
/* 7. SCROLL-DRIVEN FADE-IN (already used via JS, but CSS can be fallback) */
/* ============================================ */

.hero-content {
    animation: fadeSlideUp 0.8s ease-out;
}
@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================ */
/* 8. CUSTOM SCROLLBAR (premium feel)           */
/* ============================================ */

::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #0a0a0a;
}
::-webkit-scrollbar-thumb {
    background: #FFD700;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: #F5AF19;
}
/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-page {
    background: var(--void-black);
    color: var(--text-primary);
}

.legal-hero {
    padding-top: 140px;
    padding-bottom: 60px;
    background:
        radial-gradient(circle at top center, rgba(229, 184, 60, 0.12), transparent 35%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent);
}

.legal-content {
    padding-top: 40px;
}

.legal-content .container {
    max-width: 920px;
}

.legal-content h2 {
    font-family: var(--font-display);
    color: var(--text-primary);
    font-size: 26px;
    margin-top: 42px;
    margin-bottom: 14px;
}

.legal-content p {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 18px;
}

.legal-content ul {
    margin: 16px 0 26px 20px;
    padding: 0;
}

.legal-content li {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 8px;
}

.legal-content a {
    color: var(--gold-primary);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .legal-hero {
        padding-top: 110px;
        padding-bottom: 40px;
    }

    .legal-content h2 {
        font-size: 22px;
        margin-top: 34px;
    }

    .legal-content p,
    .legal-content li {
        font-size: 14px;
    }
}

/* HOSTINGER LOADER FIX 20260611-loader-hostinger-v3: real loader styles are also injected by include/header.js */
.loader.py-loader-hidden{opacity:0!important;visibility:hidden!important;pointer-events:none!important;}
