 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --gold: #D4AF37;
            --gold-light: #F4D03F;
            --gold-dark: #B8941E;
            --green: #1B5E20;
            --green-light: #2E7D32;
            --green-dark: #0D3A14;
            --white: #FFFFFF;
        }

        body {
            font-family: 'Poppins', sans-serif;
            overflow-x: hidden;
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            background: transparent;
        }

        .navbar.scrolled {
            background: rgba(27, 94, 32, 1);
            backdrop-filter: blur(20px);
            box-shadow: 0 8px 32px rgba(27, 94, 32, 0.2);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 10px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: padding 0.4s ease;
        }

        .navbar.scrolled .nav-container {
            padding: 1rem 3rem;
        }

        /* Logo Container */
        .logo-container {
            display: flex;
            align-items: center;
            z-index: 1001;
        }

        .logo-full {
            display: block;
            height: 55px;
            width: auto;
            filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
            transition: all 0.3s ease;
        }

        .logo-full:hover {
            transform: scale(1.05);
        }

        .logo-symbol {
            display: none;
            height: 45px;
            width: auto;
            filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
        }

        /* Navigation Links */
        .nav-links {
            display: flex;
            list-style: none;
            gap: 3rem;
            align-items: center;
            position: relative;
            z-index: 10;
        }

        .nav-links a:not(.cta-button) {
            text-decoration: none;
            color: var(--white);
            font-weight: 500;
            font-size: 1rem;
            position: relative;
            transition: all 0.3s ease;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
            letter-spacing: 0.5px;
        }

        .nav-links a:not(.cta-button)::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: var(--gold);
            transition: width 0.3s ease;
        }

        .nav-links a:not(.cta-button):hover {
            color: var(--gold);
        }

        .nav-links a:not(.cta-button):hover::after {
            width: 100%;
        }

        /* CTA Button */
        .cta-button {
            padding: 0.85rem 2rem;
            background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
            color: var(--green-dark);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
            white-space: nowrap;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            position: relative;
            overflow: hidden;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s ease;
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 30px rgba(212, 175, 55, 0.4);
            background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
        }

        /* Mobile Menu Toggle */
        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 5px;
            z-index: 1001;
        }

        .menu-toggle span {
            width: 28px;
            height: 3px;
            background: var(--white);
            border-radius: 3px;
            transition: all 0.3s ease;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }

        .menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(8px, -8px);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            position: relative;
            display: flex;
            align-items: center;
            overflow: hidden;
        }

        .hero-background {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 1;
        }

        .hero-background img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.9);
        }

        /* Gradient Overlay - Left to Right (Opaque to Transparent) */
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(
                to right,
                rgba(13, 58, 20, 0.95) 0%,
                rgba(27, 94, 32, 0.85) 25%,
                rgba(27, 94, 32, 0.6) 50%,
                rgba(46, 125, 50, 0.3) 75%,
                transparent 100%
            );
            z-index: 2;
            animation: overlaySlide 1.5s ease-out;
        }

        @keyframes overlaySlide {
            from {
                clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
            }
            to {
                clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            }
        }

        .hero-content-wrapper {
            position: relative;
            z-index: 3;
            max-width: 1400px;
            margin: 0 auto;
            padding: 6rem 3rem 4rem;
            width: 100%;
        }

        .hero-content {
            max-width: 700px;
            opacity: 0;
            transform: translateX(-50px);
            animation: slideInFromLeft 1s ease-out 0.5s forwards;
        }

        @keyframes slideInFromLeft {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* 3D Title */
        .hero-title {
            font-size: clamp(1rem, 9vw, 5rem);
            font-weight: 900;
            line-height: 1.0* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --gold: #D4AF37;
            --gold-light: #F4D03F;
            --gold-dark: #B8941E;
            --green: #1B5E20;
            --green-light: #2E7D32;
            --green-dark: #0D3A14;
            --white: #FFFFFF;
        }

        body {
            font-family: 'Poppins', sans-serif;
            overflow-x: hidden;
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            background: transparent;
        }

        .navbar.scrolled {
            background: rgba(27, 94, 32, 1);
            backdrop-filter: blur(20px);
            box-shadow: 0 8px 32px rgba(27, 94, 32, 0.2);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 10px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: padding 0.4s ease;
        }

        .navbar.scrolled .nav-container {
            padding: 1rem 3rem;
        }

        /* Logo Container */
        .logo-container {
            display: flex;
            align-items: center;
            z-index: 1001;
        }

        .logo-full {
            display: block;
            height: 55px;
            width: auto;
            filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
            transition: all 0.3s ease;
        }

        .logo-full:hover {
            transform: scale(1.05);
        }

        .logo-symbol {
            display: none;
            height: 45px;
            width: auto;
            filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
        }

        /* Navigation Links */
        .nav-links {
            display: flex;
            list-style: none;
            gap: 3rem;
            align-items: center;
            position: relative;
            z-index: 10;
        }

        .nav-links a:not(.cta-button) {
            text-decoration: none;
            color: var(--white);
            font-weight: 500;
            font-size: 1rem;
            position: relative;
            transition: all 0.3s ease;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
            letter-spacing: 0.5px;
        }

        .nav-links a:not(.cta-button)::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: var(--gold);
            transition: width 0.3s ease;
        }

        .nav-links a:not(.cta-button):hover {
            color: var(--gold);
        }

        .nav-links a:not(.cta-button):hover::after {
            width: 100%;
        }

        /* CTA Button */
        .cta-button {
            padding: 0.85rem 2rem;
            background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
            color: var(--green-dark);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
            white-space: nowrap;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            position: relative;
            overflow: hidden;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s ease;
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 30px rgba(212, 175, 55, 0.4);
            background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
        }

        /* Mobile Menu Toggle */
        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 5px;
            z-index: 1001;
        }

        .menu-toggle span {
            width: 28px;
            height: 3px;
            background: var(--white);
            border-radius: 3px;
            transition: all 0.3s ease;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }

        .menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(8px, -8px);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            position: relative;
            display: flex;
            align-items: center;
            overflow: hidden;
        }

        .hero-background {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 1;
        }

        .hero-background img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.9);
        }

        /* Gradient Overlay - Left to Right (Opaque to Transparent) */
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(
                to right,
                rgba(13, 58, 20, 0.95) 0%,
                rgba(27, 94, 32, 0.85) 25%,
                rgba(27, 94, 32, 0.6) 50%,
                rgba(46, 125, 50, 0.3) 75%,
                transparent 100%
            );
            z-index: 2;
            animation: overlaySlide 1.5s ease-out;
        }

        @keyframes overlaySlide {
            from {
                clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
            }
            to {
                clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            }
        }

        .hero-content-wrapper {
            position: relative;
            z-index: 3;
            max-width: 1400px;
            margin: 0 auto;
            padding: 6rem 3rem 4rem;
            width: 100%;
        }

        .hero-content {
            max-width: 700px;
            opacity: 0;
            transform: translateX(-50px);
            animation: slideInFromLeft 1s ease-out 0.5s forwards;
        }

        @keyframes slideInFromLeft {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* 3D Title */
        .hero-title {
            font-size: clamp(1rem, 9vw, 5rem);
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, #ffd700 0%, #ff6b35 50%, #ffd700 100%);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            animation: goldShimmer 4s ease-in-out infinite;
            letter-spacing: -2px;
        }

        .title-line {
            display: block;
        }

        .title-premium {
            background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-block;
        }

        /* Subtitle with Rotating Words */
        .hero-subtitle {
            font-size: 2rem;
            color: rgba(255, 255, 255, 0.95);
            font-weight: 400;
            line-height: 1.6;
            margin-bottom: 2rem;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
        }

        .rotating-word {
            display: inline-block;
            min-width: 180px;
            font-weight: 600;
            color: var(--gold-light);
            text-shadow: 2px 2px 8px rgba(212, 175, 55, 0.5);
        }

        /* Description */
        .hero-description {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 300;
            line-height: 1.8;
            max-width: 650px;
            text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
        }

        /* Decorative Elements */
        .gold-accent {
            position: absolute;
            width: 4px;
            height: 80px;
            background: linear-gradient(to bottom, var(--gold), transparent);
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            box-shadow: 0 0 20px var(--gold);
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% {
                opacity: 0.6;
                transform: translateY(-50%) scaleY(1);
            }
            50% {
                opacity: 1;
                transform: translateY(-50%) scaleY(1.2);
            }
        }

        /* Tablet Styles */
        @media (max-width: 1024px) {
            .hero-title {
                font-size: 4rem;
            }

            .hero-subtitle {
                font-size: 1.6rem;
            }

            .hero-description {
                font-size: 1.1rem;
            }

            .nav-links {
                gap: 2rem;
            }
        }

        /* Mobile Styles */
        @media (max-width: 768px) {
            .nav-container {
                padding: 1rem 1.5rem;
            }

            .navbar.scrolled .nav-container {
                padding: 0.8rem 1.5rem;
            }

            /* Show symbol logo, hide full logo on mobile */
            .logo-full {
                display: none;
            }

            .logo-symbol {
                display: block;
            }

            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 50%;
                height: 100vh;
                background: rgba(27, 94, 32, 0.98);
                backdrop-filter: blur(20px);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                padding: 3rem 1.5rem;
                gap: 2rem;
                transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
            }

            .nav-links.active {
                right: 0;
            }

            .nav-links li {
                width: 100%;
                text-align: center;
                opacity: 0;
                transform: translateX(20px);
                transition: all 0.3s ease;
            }

            .nav-links.active li {
                opacity: 1;
                transform: translateX(0);
            }

            .nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
            .nav-links.active li:nth-child(2) { transition-delay: 0.2s; }
            .nav-links.active li:nth-child(3) { transition-delay: 0.3s; }
            .nav-links.active li:nth-child(4) { transition-delay: 0.4s; }
            .nav-links.active li:nth-child(5) { transition-delay: 0.5s; }

            .nav-links a:not(.cta-button) {
                font-size: 1.2rem;
                display: block;
                padding: 0.8rem;
            }

            .menu-toggle {
                display: flex;
            }

            .hero-content-wrapper {
                padding: 4rem 1.5rem 3rem;
            }

            .hero-content {
                max-width: 100%;
            }

            .hero-subtitle {
                font-size: 1.3rem;
            }

            .rotating-word {
                min-width: 120px;
            }

            .hero-description {
                font-size: 1rem;
            }

            .hero-overlay {
                background: linear-gradient(
                    to right,
                    rgba(13, 58, 20, 0.92) 0%,
                    rgba(27, 94, 32, 0.8) 40%,
                    rgba(27, 94, 32, 0.5) 70%,
                    transparent 100%
                );
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 2.2rem;
            }

            .hero-subtitle {
                font-size: 1.1rem;
            }

            .hero-description {
                font-size: 0.95rem;
            }

            .cta-button {
                padding: 0.7rem 1.3rem;
                font-size: 0.8rem;
            }

            .nav-links {
                width: 70%;
            }
        } * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --gold: #D4AF37;
            --gold-light: #F4D03F;
            --gold-dark: #B8941E;
            --green: #1B5E20;
            --green-light: #2E7D32;
            --green-dark: #0D3A14;
            --white: #FFFFFF;
        }

        body {
            font-family: 'Poppins', sans-serif;
            overflow-x: hidden;
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            background: transparent;
        }

        .navbar.scrolled {
            background: rgba(27, 94, 32, 1);
            backdrop-filter: blur(20px);
            box-shadow: 0 8px 32px rgba(27, 94, 32, 0.2);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 10px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: padding 0.4s ease;
        }

        .navbar.scrolled .nav-container {
            padding: 1rem 3rem;
        }

        /* Logo Container */
        .logo-container {
            display: flex;
            align-items: center;
            z-index: 1001;
        }

        .logo-full {
            display: block;
            height: 55px;
            width: auto;
            filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
            transition: all 0.3s ease;
        }

        .logo-full:hover {
            transform: scale(1.05);
        }

        .logo-symbol {
            display: none;
            height: 45px;
            width: auto;
            filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
        }

        /* Navigation Links */
        .nav-links {
            display: flex;
            list-style: none;
            gap: 3rem;
            align-items: center;
            position: relative;
            z-index: 10;
        }

        .nav-links a:not(.cta-button) {
            text-decoration: none;
            color: var(--white);
            font-weight: 500;
            font-size: 1rem;
            position: relative;
            transition: all 0.3s ease;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
            letter-spacing: 0.5px;
        }

        .nav-links a:not(.cta-button)::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: var(--gold);
            transition: width 0.3s ease;
        }

        .nav-links a:not(.cta-button):hover {
            color: var(--gold);
        }

        .nav-links a:not(.cta-button):hover::after {
            width: 100%;
        }

        /* CTA Button */
        .cta-button {
            padding: 0.85rem 2rem;
            background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
            color: var(--green-dark);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
            white-space: nowrap;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            position: relative;
            overflow: hidden;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s ease;
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 30px rgba(212, 175, 55, 0.4);
            background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
        }

        /* Mobile Menu Toggle */
        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 5px;
            z-index: 1001;
        }

        .menu-toggle span {
            width: 28px;
            height: 3px;
            background: var(--white);
            border-radius: 3px;
            transition: all 0.3s ease;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }

        .menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(8px, -8px);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            position: relative;
            display: flex;
            align-items: center;
            overflow: hidden;
        }

        .hero-background {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 1;
        }

        .hero-background img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.9);
        }

        /* Gradient Overlay - Left to Right (Opaque to Transparent) */
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(
                to right,
                rgba(13, 58, 20, 0.95) 0%,
                rgba(27, 94, 32, 0.85) 25%,
                rgba(27, 94, 32, 0.6) 50%,
                rgba(46, 125, 50, 0.3) 75%,
                transparent 100%
            );
            z-index: 2;
            animation: overlaySlide 1.5s ease-out;
        }

        @keyframes overlaySlide {
            from {
                clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
            }
            to {
                clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            }
        }

        .hero-content-wrapper {
            position: relative;
            z-index: 3;
            max-width: 1400px;
            margin: 0 auto;
            padding: 6rem 3rem 4rem;
            width: 100%;
        }

        .hero-content {
            max-width: 800px;
            opacity: 0;
            transform: translateX(-50px);
            animation: slideInFromLeft 1s ease-out 0.5s forwards;
        }

        @keyframes slideInFromLeft {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* 3D Title */
        .hero-title {
            font-size: clamp(1rem, 9vw, 5rem);
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, #ffd700 0%, #ff6b35 50%, #ffd700 100%);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            animation: goldShimmer 4s ease-in-out infinite;
            letter-spacing: -2px;
        }

        .title-line {
            display: block;
        }

        .title-premium {
            background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-block;
        }

        /* Subtitle with Rotating Words */
        .hero-subtitle {
            font-size: 2rem;
            color: rgba(255, 255, 255, 0.95);
            font-weight: 400;
            line-height: 1.6;
            margin-bottom: 2rem;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
        }

        .rotating-word {
            display: inline-block;
            min-width: 180px;
            font-weight: 600;
            color: var(--gold-light);
            text-shadow: 2px 2px 8px rgba(212, 175, 55, 0.5);
        }

        /* Description */
        .hero-description {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 300;
            line-height: 1.8;
            max-width: 650px;
            text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
        }

        /* Decorative Elements */
        .gold-accent {
            position: absolute;
            width: 4px;
            height: 80px;
            background: linear-gradient(to bottom, var(--gold), transparent);
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            box-shadow: 0 0 20px var(--gold);
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% {
                opacity: 0.6;
                transform: translateY(-50%) scaleY(1);
            }
            50% {
                opacity: 1;
                transform: translateY(-50%) scaleY(1.2);
            }
        }

        /* Tablet Styles */
        @media (max-width: 1024px) {
            .hero-title {
                font-size: 4rem;
            }

            .hero-subtitle {
                font-size: 1.6rem;
            }

            .hero-description {
                font-size: 1.1rem;
            }

            .nav-links {
                gap: 2rem;
            }
        }

        /* Mobile Styles */
        @media (max-width: 768px) {
            .nav-container {
                padding: 1rem 1.5rem;
            }

            .navbar.scrolled .nav-container {
                padding: 0.8rem 1.5rem;
            }

            /* Show symbol logo, hide full logo on mobile */
            .logo-full {
                display: none;
            }

            .logo-symbol {
                display: block;
            }

            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 50%;
                height: 100vh;
                background: rgba(27, 94, 32, 0.98);
                backdrop-filter: blur(20px);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                padding: 3rem 1.5rem;
                gap: 2rem;
                transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
            }

            .nav-links.active {
                right: 0;
            }

            .nav-links li {
                width: 100%;
                text-align: center;
                opacity: 0;
                transform: translateX(20px);
                transition: all 0.3s ease;
            }

            .nav-links.active li {
                opacity: 1;
                transform: translateX(0);
            }

            .nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
            .nav-links.active li:nth-child(2) { transition-delay: 0.2s; }
            .nav-links.active li:nth-child(3) { transition-delay: 0.3s; }
            .nav-links.active li:nth-child(4) { transition-delay: 0.4s; }
            .nav-links.active li:nth-child(5) { transition-delay: 0.5s; }

            .nav-links a:not(.cta-button) {
                font-size: 1.2rem;
                display: block;
                padding: 0.8rem;
            }

            .menu-toggle {
                display: flex;
            }

            .hero-content-wrapper {
                padding: 4rem 1.5rem 3rem;
            }

            .hero-content {
                max-width: 100%;
            }

            .hero-subtitle {
                font-size: 1.3rem;
            }

            .rotating-word {
                min-width: 120px;
            }

            .hero-description {
                font-size: 1rem;
            }

            .hero-overlay {
                background: linear-gradient(
                    to right,
                    rgba(13, 58, 20, 0.92) 0%,
                    rgba(27, 94, 32, 0.8) 40%,
                    rgba(27, 94, 32, 0.5) 70%,
                    transparent 100%
                );
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 2.2rem;
            }

            .hero-subtitle {
                font-size: 1.1rem;
            }

            .hero-description {
                font-size: 0.95rem;
            }

            .cta-button {
                padding: 0.7rem 1.3rem;
                font-size: 0.8rem;
            }

            .nav-links {
                width: 70%;
            }
        };
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, #ffd700 0%, #ff6b35 50%, #ffd700 100%);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            animation: goldShimmer 4s ease-in-out infinite;
            letter-spacing: -2px;
        }

        .title-line {
            display: block;
        }

        .title-premium {
            background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-block;
        }

        /* Subtitle with Rotating Words */
        .hero-subtitle {
            font-size: 2rem;
            color: rgba(255, 255, 255, 0.95);
            font-weight: 400;
            line-height: 1.6;
            margin-bottom: 2rem;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
        }

        .rotating-word {
            display: inline-block;
            min-width: 180px;
            font-weight: 600;
            color: var(--gold-light);
            text-shadow: 2px 2px 8px rgba(212, 175, 55, 0.5);
        }

        /* Description */
        .hero-description {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 300;
            line-height: 1.8;
            max-width: 650px;
            text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
        }

        /* Decorative Elements */
        .gold-accent {
            position: absolute;
            width: 4px;
            height: 80px;
            background: linear-gradient(to bottom, var(--gold), transparent);
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            box-shadow: 0 0 20px var(--gold);
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% {
                opacity: 0.6;
                transform: translateY(-50%) scaleY(1);
            }
            50% {
                opacity: 1;
                transform: translateY(-50%) scaleY(1.2);
            }
        }

        /* Tablet Styles */
        @media (max-width: 1024px) {
            .hero-title {
                font-size: 4rem;
            }

            .hero-subtitle {
                font-size: 1.6rem;
            }

            .hero-description {
                font-size: 1.1rem;
            }

            .nav-links {
                gap: 2rem;
            }
        }

        /* Mobile Styles */
        @media (max-width: 768px) {
            .nav-container {
                padding: 1rem 1.5rem;
            }

            .navbar.scrolled .nav-container {
                padding: 0.8rem 1.5rem;
            }

            /* Show symbol logo, hide full logo on mobile */
            .logo-full {
                display: none;
            }

            .logo-symbol {
                display: block;
            }

            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 50%;
                height: 100vh;
                background: rgba(27, 94, 32, 0.98);
                backdrop-filter: blur(20px);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                padding: 3rem 1.5rem;
                gap: 2rem;
                transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
            }

            .nav-links.active {
                right: 0;
            }

            .nav-links li {
                width: 100%;
                text-align: center;
                opacity: 0;
                transform: translateX(20px);
                transition: all 0.3s ease;
            }

            .nav-links.active li {
                opacity: 1;
                transform: translateX(0);
            }

            .nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
            .nav-links.active li:nth-child(2) { transition-delay: 0.2s; }
            .nav-links.active li:nth-child(3) { transition-delay: 0.3s; }
            .nav-links.active li:nth-child(4) { transition-delay: 0.4s; }
            .nav-links.active li:nth-child(5) { transition-delay: 0.5s; }

            .nav-links a:not(.cta-button) {
                font-size: 1.2rem;
                display: block;
                padding: 0.8rem;
            }

            .menu-toggle {
                display: flex;
            }

            .hero-content-wrapper {
                padding: 4rem 1.5rem 3rem;
            }

            .hero-content {
                max-width: 100%;
            }

            .hero-subtitle {
                font-size: 1.3rem;
            }

            .rotating-word {
                min-width: 120px;
            }

            .hero-description {
                font-size: 1rem;
            }

            .hero-overlay {
                background: linear-gradient(
                    to right,
                    rgba(13, 58, 20, 0.92) 0%,
                    rgba(27, 94, 32, 0.8) 40%,
                    rgba(27, 94, 32, 0.5) 70%,
                    transparent 100%
                );
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 2.2rem;
            }

            .hero-subtitle {
                font-size: 1.1rem;
            }

            .hero-description {
                font-size: 0.95rem;
            }

            .cta-button {
                padding: 0.7rem 1.3rem;
                font-size: 0.8rem;
            }

            .nav-links {
                width: 70%;
            }
        }