 /* ============================================
           GLOBAL STYLES & CSS VARIABLES
           ============================================ */
        :root {
            --primary-gold: #FFD700;
            --primary-gold-dark: #F5C600;
            --secondary-black: #0A0A0A;
            --accent-red: #FF3B30;
            --text-primary: #1A1A1A;
            --text-secondary: #666666;
            --light-bg: #F8F9FA;
            --white: #FFFFFF;
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
            --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
            --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
            --transition-fast: 0.2s ease;
            --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            color: var(--text-primary);
            line-height: 1.7;
            overflow-x: hidden;
            background-color: var(--white);
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Outfit', sans-serif;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1rem;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: all var(--transition-fast);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        /* ============================================
           NAVIGATION BAR
           ============================================ */
        .navbar {
            padding: 1.2rem 0;
            transition: all var(--transition-smooth);
            background: transparent;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
        }

        .navbar.scrolled {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px) saturate(180%);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
            padding: 0.8rem 0;
        }

        .navbar-brand {
            font-family: 'Outfit', sans-serif;
            font-weight: 800;
            font-size: 1.6rem;
            color: var(--white) !important;
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 0.7rem;
            transition: all var(--transition-fast);
        }

        .navbar.scrolled .navbar-brand {
            color: var(--secondary-black) !important;
        }

        .navbar-brand i {
            font-size: 2rem;
            color: var(--primary-gold);
            transition: transform var(--transition-smooth);
        }

        .navbar-brand:hover i {
            transform: rotate(-15deg) scale(1.1);
        }

        .navbar-brand span {
            position: relative;
            background: linear-gradient(135deg, var(--primary-gold) 0%, #FFA500 100%);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .navbar.scrolled .navbar-brand span {
            background: linear-gradient(135deg, var(--secondary-black) 0%, var(--text-primary) 100%);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .navbar-toggler {
            border: none;
            padding: 0.5rem;
            background: rgba(255, 215, 0, 0.2);
            border-radius: 8px;
        }

        .navbar-toggler:focus {
            box-shadow: none;
            outline: 2px solid var(--primary-gold);
        }

        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 215, 0, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

        .navbar.scrolled .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(10, 10, 10, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

        .nav-link {
            font-weight: 600;
            font-size: 1rem;
            color: white!important;
            padding: 0.6rem 1.2rem;
            margin: 0 0.3rem;
            position: relative;
            transition: all var(--transition-smooth);
            border-radius: 8px;
        }

        .navbar.scrolled .nav-link {
            color:black!important;
        }

        .nav-link::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 3px;
            background: var(--primary-gold);
            transform: translateX(-50%);
            transition: width var(--transition-smooth);
            border-radius: 2px;
        }

        .nav-link:hover::before {
            width: 60%;
        }

        .nav-link:hover {
            color: var(--primary-gold);
            transform: translateY(-2px);
        }

        .navbar.scrolled .nav-link:hover {
            color: var(--primary-gold);
            background: rgba(255, 215, 0, 0.08);
        }

        .contact-btn {
            background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-dark) 100%);
            color: white !important;
            border-radius: 50px;
            padding: 0.7rem 1.8rem !important;
            font-weight: 700;
            letter-spacing: 0.3px;
            box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
            transition: all var(--transition-smooth);
        }

        .contact-btn::before {
            display: none;
        }

        .contact-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 25px rgba(255, 215, 0, 0.5);
            background: linear-gradient(135deg, var(--primary-gold-dark) 0%, var(--primary-gold) 100%);
        }

        /* ============================================
           HERO SECTION
           ============================================ */
        .hero-section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 100%);
        }

        .video-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }

        .video-background::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                135deg,
                rgba(10, 10, 10, 0.7) 0%,
                rgba(26, 26, 26, 0.6) 50%,
                rgba(10, 10, 10, 0.7) 100%
            );
            z-index: 1;
        }

        .video-background video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

        .hero-section .container {
            position: relative;
            z-index: 10;
            padding: 2rem 1rem;
        }

        .hero-section h1 {
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            font-weight: 800;
            margin-bottom: 1.5rem;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
            letter-spacing: -1px;
            animation: fadeInUp 0.8s ease-out;
            background: linear-gradient(135deg, #FFFFFF 0%, #ffffff 100%);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-section .lead {
            font-size: clamp(1.1rem, 3vw, 1.5rem);
            margin-bottom: 2.5rem;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
            font-weight: 500;
            animation: fadeInUp 0.8s ease-out 0.2s both;
            color: rgba(255, 255, 255, 0.95);
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            justify-content: center;
            animation: fadeInUp 0.8s ease-out 0.4s both;
        }

        .hero-buttons .btn {
            padding: 1rem 2.5rem;
            font-size: 1.1rem;
            font-weight: 700;
            border-radius: 50px;
            letter-spacing: 0.5px;
            box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
            transition: all var(--transition-smooth);
            border: none;
            position: relative;
            overflow: hidden;
        }

        .hero-buttons .btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .hero-buttons .btn:hover::before {
            width: 300px;
            height: 300px;
        }

        .hero-buttons .btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
        }

        .btn-warning {
            background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-dark) 100%);
            color: var(--secondary-black) !important;
        }

        .btn-outline-light {
            background: transparent;
            border: 2px solid var(--white);
            color: var(--white) !important;
        }

        .btn-outline-light:hover {
            background: var(--white);
            color: var(--secondary-black) !important;
        }

        /* ============================================
           SERVICES SECTION
           ============================================ */
        #services {
            padding: 6rem 0;
            background: linear-gradient(180deg, #FFFFFF 0%, #F8F9FA 100%);
        }

        #services h2 {
            font-size: clamp(2rem, 5vw, 3rem);
            font-weight: 800;
            margin-bottom: 3rem;
            position: relative;
            display: inline-block;
            left: 50%;
            transform: translateX(-50%);
        }

        #services h2::after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-gold) 0%, var(--primary-gold-dark) 100%);
            border-radius: 2px;
        }

        .card {
            border: none;
            border-radius: 20px;
            transition: all var(--transition-smooth);
            box-shadow: var(--shadow-sm);
            overflow: hidden;
            background: var(--white);
            height: 100%;
        }

        .card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .card-body {
            padding: 3rem 2rem;
            position: relative;
        }

        .card-body i {
            transition: all var(--transition-smooth);
            position: relative;
            z-index: 1;
        }

        .card:hover .card-body i {
            transform: scale(1.2) rotate(5deg);
        }

        .card-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin: 1.5rem 0 1rem;
            color: var(--text-primary);
        }

        .card-text {
            font-size: 1rem;
            color: var(--text-secondary);
            line-height: 1.7;
        }

        /* ============================================
           ABOUT SECTION
           ============================================ */
        #about {
            padding: 6rem 0;
            background: linear-gradient(180deg, #F8F9FA 0%, #FFFFFF 100%);
        }

        #about h2 {
            font-size: clamp(2rem, 5vw, 3rem);
            font-weight: 800;
            margin-bottom: 3rem;
            position: relative;
            display: inline-block;
            left: 50%;
            transform: translateX(-50%);
        }

        #about h2::after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-gold) 0%, var(--primary-gold-dark) 100%);
            border-radius: 2px;
        }

        #about .lead {
            font-size: 1.2rem;
            font-weight: 500;
            color: var(--text-primary);
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }

        #about p {
            color: var(--text-secondary);
            font-size: 1.05rem;
            line-height: 1.8;
        }

        .about-features {
            background: var(--white);
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: var(--shadow-md);
        }

        .about-features .d-flex {
            padding: 1rem 0;
            transition: all var(--transition-fast);
            border-radius: 10px;
            padding-left: 1rem;
        }

        .about-features .d-flex:hover {
            background: rgba(255, 215, 0, 0.05);
            transform: translateX(8px);
        }

        .about-features i {
            font-size: 1.5rem;
            margin-right: 1rem;
        }

        .about-features span {
            font-weight: 600;
            font-size: 1.1rem;
            color: var(--text-primary);
        }

        /* ============================================
           GALLERY SECTION
           ============================================ */
        #gallery {
            padding: 6rem 0;
            background: linear-gradient(180deg, #FFFFFF 0%, #F8F9FA 100%);
        }

        #gallery h2 {
            font-size: clamp(2rem, 5vw, 3rem);
            font-weight: 800;
            margin-bottom: 3rem;
            position: relative;
            display: inline-block;
            left: 50%;
            transform: translateX(-50%);
        }

        #gallery h2::after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-gold) 0%, var(--primary-gold-dark) 100%);
            border-radius: 2px;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: var(--shadow-md);
            transition: all var(--transition-smooth);
            height: 350px;
        }

        .gallery-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .gallery-item:hover img {
            transform: scale(1.15);
        }

        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
            padding: 2rem;
            color: var(--white);
            transform: translateY(100%);
            transition: transform var(--transition-smooth);
        }

        .gallery-item:hover .gallery-overlay {
            transform: translateY(0);
        }

        .gallery-overlay h5 {
            margin-bottom: 0.5rem;
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--primary-gold);
        }

        .gallery-overlay p {
            margin: 0;
            font-size: 1rem;
            opacity: 0.95;
        }

        /* ============================================
           CONTACT SECTION
           ============================================ */
        #contact {
            padding: 6rem 0;
            background: linear-gradient(180deg, #F8F9FA 0%, #FFFFFF 100%);
        }

        #contact h2 {
            font-size: clamp(2rem, 5vw, 3rem);
            font-weight: 800;
            margin-bottom: 3rem;
            position: relative;
            display: inline-block;
            left: 50%;
            transform: translateX(-50%);
        }

        #contact h2::after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-gold) 0%, var(--primary-gold-dark) 100%);
            border-radius: 2px;
        }

        .contact-info {
            padding: 3rem;
            background: var(--white);
            border-radius: 20px;
            box-shadow: var(--shadow-md);
            height: 100%;
        }

        .contact-info h3 {
            margin-bottom: 2rem;
            color: var(--text-primary);
            font-size: 1.8rem;
            font-weight: 700;
        }

        .contact-info p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            transition: all var(--transition-fast);
            padding: 0.8rem;
            border-radius: 10px;
        }

        .contact-info p:hover {
            background: rgba(255, 215, 0, 0.05);
            transform: translateX(5px);
        }

        .contact-info i {
            margin-right: 1rem;
            color: var(--primary-gold);
            font-size: 1.3rem;
            min-width: 25px;
        }

        .contact-info a {
            color: var(--text-primary);
            font-weight: 600;
            transition: color var(--transition-fast);
        }

        .contact-info a:hover {
            color: var(--primary-gold);
        }

        .contact-map {
            height: 100%;
            min-height: 400px;
            background: var(--white);
            border-radius: 20px;
            box-shadow: var(--shadow-md);
            overflow: hidden;
        }

        .contact-map iframe {
            width: 100%;
            height: 100%;
            min-height: 400px;
            border: none;
        }

        /* ============================================
           FOOTER
           ============================================ */
        footer {
            background: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 100%);
            padding: 3rem 0 1.5rem;
            color: rgba(255, 255, 255, 0.8);
        }

        footer h5 {
            color: var(--white);
            font-weight: 700;
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }

        footer p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 1rem;
        }

        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            color: var(--white);
            font-size: 1.2rem;
            transition: all var(--transition-smooth);
            margin: 0 0.5rem;
        }

        .social-links a:hover {
            background: var(--primary-gold);
            color: var(--secondary-black);
            transform: translateY(-5px) rotate(5deg);
        }

        footer hr {
            border-color: rgba(255, 255, 255, 0.1);
            margin: 2rem 0;
        }

        /* ============================================
           ANIMATIONS
           ============================================ */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-10px);
            }
        }

        .fade-in {
            animation: fadeInUp 0.8s ease-out;
        }

        /* ============================================
           RESPONSIVE DESIGN
           ============================================ */
        @media (max-width: 991px) {
            .navbar {
                background: rgba(255, 255, 255, 0.98);
                backdrop-filter: blur(20px);
                box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
            }

            .navbar-brand {
                color: var(--secondary-black) !important;
            }

            .navbar-brand span {
                background: linear-gradient(135deg, var(--secondary-black) 0%, var(--text-primary) 100%);
                background-clip: text;
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
            }

            .nav-link {
                color: var(--text-primary);
                padding: 1rem 1.2rem;
            }

            .contact-btn {
                margin-top: 1rem;
                width: 100%;
                text-align: center;
            }
        }

        @media (max-width: 768px) {
            body {
                padding-top: 70px;
            }

            .hero-section {
                min-height: 80vh;
            }

            .hero-buttons {
                flex-direction: column;
            }

            .hero-buttons .btn {
                width: 100%;
                margin-bottom: 1rem;
            }

            #services, #about, #gallery, #contact {
                padding: 4rem 0;
            }

            .gallery-item {
                height: 280px;
                margin-bottom: 1.5rem;
            }

            .gallery-overlay {
                transform: translateY(0);
                background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 70%, transparent 100%);
            }

            .contact-info {
                margin-bottom: 2rem;
            }

            .about-features {
                margin-top: 2rem;
            }
        }

        @media (max-width: 576px) {
            .hero-section h1 {
                font-size: 2rem;
            }

            .hero-section .lead {
                font-size: 1rem;
            }

            #services h2, #about h2, #gallery h2, #contact h2 {
                font-size: 1.8rem;
            }

            .card-body {
                padding: 2rem 1.5rem;
            }

            .contact-info {
                padding: 2rem 1.5rem;
            }
        }

        /* ============================================
           UTILITY CLASSES
           ============================================ */
        .text-gradient {
            background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-dark) 100%);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .btn-lg {
            padding: 1rem 2.5rem;
            font-size: 1.1rem;
        }

        .text-warning {
            color: var(--primary-gold) !important;
        }

        /* ============================================
           LOADING PERFORMANCE
           ============================================ */
        .lazy {
            opacity: 0;
            transition: opacity 0.3s;
        }

        .lazy.loaded {
            opacity: 1;
        }