
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --emerald: #fddda5;
            --emerald-light: #ffe3ae;
            --emerald-dark: #c0904a;
            --emerald-darkest: #fcc525;
            --page-bg: #0a0a0a;
            --card-bg: #141414;
            --elevated-bg: #1f1f1f;
            --white: #ffffff;
            --gray-secondary: #a3a3a3;
            --gray-tertiary: #525252;
            --border: #262626;
            --error: #ef4444;
            --warning: #f59e0b;
        }

        body {
            font-family: 'Rajdhani', sans-serif;
            background-color: var(--page-bg);
            color: var(--white);
            line-height: 1.6;
            font-size: 16px;
            overflow-x: hidden;
            position: relative;
        }

        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 20%, rgba(173, 124, 58, 0.05) 0%, transparent 40%),
                radial-gradient(circle at 80% 80%, rgba(173, 124, 58, 0.03) 0%, transparent 40%);
            pointer-events: none;
            z-index: 0;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 64px;
            position: relative;
            z-index: 1;
        }

        @media (max-width: 768px) {
            .container {
                padding: 0 24px;
            }
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            height: 88px;
            background: rgba(20, 20, 20, 0.85);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border);
            z-index: 1000;
            transition: all 0.3s ease;
        }

        header.scrolled {
            background: rgba(20, 20, 20, 0.95);
            box-shadow: 0 8px 32px rgba(173, 124, 58, 0.1);
            border-bottom: 1px solid rgba(173, 124, 58, 0.2);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 64px;
        }

        .logo {
            font-family: 'Orbitron', sans-serif;
            font-size: 28px;
            font-weight: 700;
            color: var(--emerald);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 16px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .logo svg {
            width: 42px;
            height: 42px;
            stroke: var(--emerald);
        }

        nav {
            display: flex;
            gap: 48px;
            align-items: center;
        }

        nav a {
            font-size: 16px;
            font-weight: 500;
            color: var(--gray-secondary);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            transition: color 0.3s ease;
        }

        nav a::before {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--emerald);
            transition: width 0.3s ease;
        }

        nav a:hover {
            color: var(--emerald);
        }

        nav a:hover::before {
            width: 100%;
        }

        .cta-button {
            padding: 12px 32px;
            background: var(--emerald);
            color: var(--page-bg);
            border: 1px solid var(--emerald);
            border-radius: 4px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .cta-button:hover {
            background: transparent;
            color: var(--emerald);
            box-shadow: 0 0 20px rgba(173, 124, 58, 0.4);
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
        }

        .hamburger span {
            width: 28px;
            height: 2px;
            background: var(--emerald);
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(8px, -8px);
        }

        /* Hero Section */
        .hero {
            margin-top: 88px;
            padding: 140px 0;
            background: linear-gradient(180deg, var(--page-bg) 0%, var(--card-bg) 100%);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(173, 124, 58, 0.08) 0%, transparent 70%);
            animation: rotate 30s linear infinite;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .hero-content {
            max-width: 900px;
            position: relative;
            z-index: 1;
            animation: glitchIn 1.2s ease-out;
        }

        @keyframes glitchIn {
            0% {
                opacity: 0;
                transform: translateX(-100px);
                text-shadow: 10px 0 #ffd55c, -10px 0 #c0904a;
            }
            20% {
                text-shadow: 5px 0 #ffd55c, -5px 0 #c0904a;
            }
            40% {
                text-shadow: -5px 0 #ffd55c, 5px 0 #c0904a;
            }
            60% {
                text-shadow: 2px 0 #ffd55c, -2px 0 #c0904a;
            }
            80% {
                text-shadow: 0 0 transparent;
            }
            100% {
                opacity: 1;
                transform: translateX(0);
                text-shadow: 0 0 transparent;
            }
        }

        .hero h1 {
            font-family: 'Orbitron', sans-serif;
            font-size: 72px;
            font-weight: 900;
            line-height: 1.1;
            color: var(--white);
            margin-bottom: 32px;
            text-transform: uppercase;
            letter-spacing: 4px;
        }

        .hero h1 span {
            color: var(--emerald);
            text-shadow: 0 0 30px rgba(173, 124, 58, 0.5);
        }

        .hero p {
            font-size: 22px;
            color: var(--gray-secondary);
            margin-bottom: 48px;
            font-weight: 300;
        }

        .hero-cta {
            padding: 20px 56px;
            font-size: 18px;
            background: var(--emerald);
            color: var(--page-bg);
            border: 2px solid var(--emerald);
            border-radius: 4px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.4s ease;
            text-transform: uppercase;
            letter-spacing: 2px;
            box-shadow: 0 0 30px rgba(173, 124, 58, 0.3);
        }

        .hero-cta:hover {
            background: transparent;
            color: var(--emerald);
            box-shadow: 0 0 50px rgba(173, 124, 58, 0.6);
            transform: translateY(-4px);
        }

        /* About Section */
        .about {
            padding: 120px 0;
            background: var(--page-bg);
        }

        .section-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 52px;
            font-weight: 700;
            line-height: 1.2;
            color: var(--white);
            text-align: center;
            margin-bottom: 24px;
            text-transform: uppercase;
            letter-spacing: 3px;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 100px;
            height: 3px;
            background: var(--emerald);
            margin: 32px auto 0;
            box-shadow: 0 0 20px rgba(173, 124, 58, 0.5);
        }

        .section-subtitle {
            text-align: center;
            color: var(--gray-secondary);
            font-size: 18px;
            max-width: 720px;
            margin: 0 auto 80px;
            font-weight: 300;
        }

        .about-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 80px;
        }

        .about-card {
            text-align: center;
            padding: 48px 32px;
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: 4px;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            animation: slideUp 0.8s ease-out;
            animation-fill-mode: both;
        }

        .about-card:nth-child(1) { animation-delay: 0.1s; }
        .about-card:nth-child(2) { animation-delay: 0.2s; }
        .about-card:nth-child(3) { animation-delay: 0.3s; }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(60px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .about-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--emerald), transparent);
            transform: translateX(-100%);
            transition: transform 0.6s ease;
        }

        .about-card:hover::before {
            transform: translateX(100%);
        }

        .about-card:hover {
            transform: translateY(-12px);
            border-color: var(--emerald);
            box-shadow: 0 20px 60px rgba(173, 124, 58, 0.15);
        }

        .about-icon {
            width: 90px;
            height: 90px;
            margin: 0 auto 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(173, 124, 58, 0.1);
            border: 2px solid var(--emerald);
            border-radius: 4px;
            transition: all 0.4s ease;
        }

        .about-card:hover .about-icon {
            transform: scale(1.15) rotate(10deg);
            box-shadow: 0 0 30px rgba(173, 124, 58, 0.4);
        }

        .about-icon svg {
            width: 44px;
            height: 44px;
            stroke: var(--emerald);
        }

        .about-card h3 {
            font-family: 'Orbitron', sans-serif;
            font-size: 26px;
            font-weight: 600;
            color: var(--white);
            margin-bottom: 16px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .about-card p {
            color: var(--gray-secondary);
            line-height: 1.7;
            font-weight: 300;
        }

        /* Why Choose Us */
        .why-choose {
            padding: 120px 0;
            background: var(--card-bg);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 40px;
            margin-top: 80px;
        }

        .feature-card {
            padding: 36px;
            background: var(--elevated-bg);
            border: 1px solid var(--border);
            border-radius: 4px;
            transition: all 0.4s ease;
            opacity: 0;
            transform: scale(0.9);
            position: relative;
        }

        .feature-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--emerald);
            transition: width 0.5s ease;
        }

        .feature-card:hover::after {
            width: 100%;
        }

        .feature-card.animate {
            opacity: 1;
            transform: scale(1);
        }

        .feature-card:hover {
            border-color: var(--emerald);
            transform: scale(1.05);
            box-shadow: 0 16px 48px rgba(173, 124, 58, 0.2);
        }

        .feature-icon {
            width: 56px;
            height: 56px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--emerald);
            border-radius: 4px;
            margin-bottom: 24px;
            transition: all 0.3s ease;
        }

        .feature-card:hover .feature-icon {
            transform: scale(1.1);
            box-shadow: 0 0 25px rgba(173, 124, 58, 0.6);
        }

        .feature-icon svg {
            width: 28px;
            height: 28px;
            stroke: var(--page-bg);
        }

        .feature-card h3 {
            font-size: 22px;
            font-weight: 600;
            color: var(--white);
            margin-bottom: 12px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .feature-card p {
            color: var(--gray-secondary);
            line-height: 1.6;
            font-weight: 300;
        }

        /* Services */
        .services {
            padding: 120px 0;
            background: var(--page-bg);
        }

        .services-tabs {
            display: flex;
            justify-content: center;
            gap: 16px;
            margin-bottom: 80px;
            flex-wrap: wrap;
        }

        .tab-button {
            padding: 14px 32px;
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: 4px;
            font-size: 16px;
            font-weight: 600;
            color: var(--gray-secondary);
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .tab-button:hover {
            border-color: var(--emerald);
            color: var(--emerald);
        }

        .tab-button.active {
            background: var(--emerald);
            color: var(--page-bg);
            border-color: var(--emerald);
            box-shadow: 0 0 25px rgba(173, 124, 58, 0.4);
        }

        .tab-content {
            display: none;
        }

        .tab-content.active {
            display: block;
            animation: fadeInGrid 0.5s ease-out;
        }

        @keyframes fadeInGrid {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
            gap: 40px;
        }

        .service-card {
            padding: 40px;
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: 4px;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 3px;
            height: 0;
            background: var(--emerald);
            transition: height 0.4s ease;
        }

        .service-card:hover::before {
            height: 100%;
        }

        .service-card:hover {
            transform: translateX(8px);
            border-color: rgba(173, 124, 58, 0.3);
            box-shadow: 0 16px 48px rgba(173, 124, 58, 0.15);
        }

        .service-icon {
            width: 64px;
            height: 64px;
            margin-bottom: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(173, 124, 58, 0.1);
            border: 2px solid var(--emerald);
            border-radius: 4px;
            transition: all 0.4s ease;
        }

        .service-card:hover .service-icon {
            transform: scale(1.1) rotate(-5deg);
            box-shadow: 0 0 30px rgba(173, 124, 58, 0.5);
        }

        .service-icon svg {
            width: 32px;
            height: 32px;
            stroke: var(--emerald);
        }

        .service-card h3 {
            font-family: 'Orbitron', sans-serif;
            font-size: 24px;
            font-weight: 600;
            color: var(--white);
            margin-bottom: 16px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .service-card p {
            color: var(--gray-secondary);
            line-height: 1.6;
            margin-bottom: 24px;
            font-weight: 300;
        }

        .service-link {
            color: var(--emerald);
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: gap 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .service-link:hover {
            gap: 16px;
            text-shadow: 0 0 10px rgba(173, 124, 58, 0.5);
        }

        /* Testimonials */
        .testimonials {
            padding: 120px 0;
            background: var(--card-bg);
            position: relative;
        }

        .testimonial-carousel {
            max-width: 1000px;
            margin: 80px auto 0;
            position: relative;
        }

        .testimonial-track {
            display: flex;
            transition: transform 0.5s ease;
        }

        .testimonial-card {
            min-width: 100%;
            padding: 60px;
            background: var(--elevated-bg);
            border: 1px solid var(--border);
            border-radius: 4px;
            box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
            position: relative;
        }

        .testimonial-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--emerald), var(--emerald-light));
        }

        .stars {
            display: flex;
            gap: 8px;
            margin-bottom: 28px;
        }

        .star {
            width: 24px;
            height: 24px;
            fill: var(--emerald);
        }

        .testimonial-text {
            font-size: 22px;
            color: var(--white);
            line-height: 1.7;
            margin-bottom: 36px;
            font-weight: 300;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 24px;
        }

        .author-avatar {
            width: 72px;
            height: 72px;
            border-radius: 4px;
            background: var(--emerald);
            border: 2px solid var(--emerald);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            font-weight: 700;
            color: var(--page-bg);
            font-family: 'Orbitron', sans-serif;
        }

        .author-info h4 {
            font-size: 20px;
            font-weight: 600;
            color: var(--emerald);
            margin-bottom: 6px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .author-info p {
            font-size: 15px;
            color: var(--gray-secondary);
            font-weight: 300;
        }

        .carousel-controls {
            display: flex;
            justify-content: center;
            gap: 16px;
            margin-top: 48px;
        }

        .carousel-dot {
            width: 14px;
            height: 14px;
            border-radius: 2px;
            background: var(--border);
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .carousel-dot.active {
            width: 48px;
            background: var(--emerald);
            box-shadow: 0 0 15px rgba(173, 124, 58, 0.5);
        }

        /* FAQ */
        .faq {
            padding: 120px 0;
            background: var(--page-bg);
        }

        .faq-list {
            max-width: 1000px;
            margin: 80px auto 0;
        }

        .faq-item {
            margin-bottom: 20px;
            border: 1px solid var(--border);
            border-radius: 4px;
            overflow: hidden;
            background: var(--card-bg);
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            border-color: rgba(173, 124, 58, 0.3);
        }

        .faq-question {
            width: 100%;
            padding: 24px 32px;
            background: transparent;
            border: none;
            text-align: left;
            font-size: 19px;
            font-weight: 600;
            color: var(--white);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 24px;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .faq-item.active .faq-question {
            color: var(--emerald);
            background: rgba(173, 124, 58, 0.05);
        }

        .faq-icon {
            width: 24px;
            height: 24px;
            min-width: 24px;
            transition: transform 0.4s ease;
            stroke: var(--emerald);
        }

        .faq-item.active .faq-icon {
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
            padding: 0 32px 32px;
        }

        .faq-answer p {
            color: var(--gray-secondary);
            line-height: 1.7;
            font-weight: 300;
        }

        /* Contact Form */
        .contact {
            padding: 120px 0;
            background: var(--card-bg);
        }

        .contact-form {
            max-width: 900px;
            margin: 80px auto 0;
            padding: 60px;
            background: var(--elevated-bg);
            border: 1px solid var(--border);
            border-radius: 4px;
            box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
        }

        .form-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 28px;
            margin-bottom: 28px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-group.full-width {
            grid-column: 1 / -1;
        }

        .form-group label {
            font-size: 14px;
            font-weight: 600;
            color: var(--emerald);
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            padding: 16px 20px;
            font-size: 16px;
            color: var(--white);
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: 4px;
            font-family: 'Rajdhani', sans-serif;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--emerald);
            box-shadow: 0 0 15px rgba(173, 124, 58, 0.2);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 160px;
        }

        .submit-btn {
            width: 100%;
            padding: 18px;
            background: var(--emerald);
            color: var(--page-bg);
            border: 2px solid var(--emerald);
            border-radius: 4px;
            font-size: 18px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 16px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .submit-btn:hover {
            background: transparent;
            color: var(--emerald);
            box-shadow: 0 0 30px rgba(173, 124, 58, 0.4);
        }

        .success-message {
            display: none;
            padding: 20px;
            background: var(--emerald);
            color: var(--page-bg);
            border-radius: 4px;
            text-align: center;
            margin-top: 24px;
            animation: glowPulse 0.6s ease;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .success-message.show {
            display: block;
        }

        @keyframes glowPulse {
            0%, 100% { box-shadow: 0 0 20px rgba(173, 124, 58, 0.5); }
            50% { box-shadow: 0 0 40px rgba(173, 124, 58, 0.8); }
        }

        /* Footer */
        footer {
            background: var(--page-bg);
            color: var(--white);
            padding: 100px 0 32px;
            border-top: 1px solid var(--border);
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 56px;
            margin-bottom: 64px;
        }

        .footer-section h3 {
            font-family: 'Orbitron', sans-serif;
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 24px;
            color: var(--emerald);
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 14px;
        }

        .footer-section a {
            color: var(--gray-secondary);
            text-decoration: none;
            font-size: 15px;
            transition: all 0.3s ease;
            display: inline-block;
            font-weight: 300;
        }

        .footer-section a:hover {
            color: var(--emerald);
            transform: translateX(6px);
        }

        .footer-bottom {
            padding-top: 32px;
            border-top: 1px solid var(--border);
            text-align: center;
            color: var(--gray-tertiary);
            font-size: 14px;
        }

        .social-links {
            display: flex;
            gap: 16px;
            margin-top: 24px;
        }

        .social-link {
            width: 44px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: transparent;
            border: 2px solid var(--emerald);
            border-radius: 4px;
            color: var(--emerald);
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: var(--emerald);
            color: var(--page-bg);
            box-shadow: 0 0 25px rgba(173, 124, 58, 0.5);
            transform: scale(1.1);
        }

        /* Modal Overlay */
        .modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(10, 10, 10, 0.9);
            backdrop-filter: blur(12px);
            z-index: 2000;
            animation: fadeIn 0.4s ease;
        }

        .modal-overlay.show {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .modal {
            background: var(--card-bg);
            max-width: 700px;
            width: 90%;
            max-height: 90vh;
            overflow-y: auto;
            border-radius: 4px;
            border: 1px solid var(--border);
            padding: 52px;
            position: relative;
            animation: modalZoom 0.4s ease-out;
        }

        @keyframes modalZoom {
            from {
                opacity: 0;
                transform: scale(0.8);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .modal-close {
            position: absolute;
            top: 24px;
            right: 24px;
            width: 40px;
            height: 40px;
            background: var(--elevated-bg);
            border: 1px solid var(--border);
            font-size: 24px;
            color: var(--emerald);
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 4px;
        }

        .modal-close:hover {
            background: var(--emerald);
            color: var(--page-bg);
            transform: rotate(90deg);
            box-shadow: 0 0 20px rgba(173, 124, 58, 0.5);
        }

        .modal h2 {
            font-family: 'Orbitron', sans-serif;
            font-size: 36px;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 24px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .modal p {
            font-size: 16px;
            line-height: 1.7;
            color: var(--gray-secondary);
            margin-bottom: 16px;
            font-weight: 300;
        }

        .modal h3 {
            font-size: 22px;
            font-weight: 600;
            color: var(--emerald);
            margin: 32px 0 16px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .newsletter-form {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .checkbox-group {
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }

        .checkbox-group input[type="checkbox"] {
            margin-top: 4px;
            width: 22px;
            height: 22px;
            cursor: pointer;
            accent-color: var(--emerald);
        }

        .checkbox-group label {
            font-size: 14px;
            color: var(--gray-secondary);
            cursor: pointer;
            font-weight: 300;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .header-content {
                padding: 0 24px;
            }

            nav {
                display: none;
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: var(--card-bg);
                flex-direction: column;
                justify-content: center;
                padding: 48px;
            }

            nav.active {
                display: flex;
            }

            .hamburger {
                display: flex;
            }

            .hero {
                padding: 80px 0;
            }

            .hero h1 {
                font-size: 48px;
            }

            .section-title {
                font-size: 36px;
            }

            .about,
            .why-choose,
            .services,
            .testimonials,
            .faq,
            .contact {
                padding: 80px 0;
            }

            .form-grid {
                grid-template-columns: 1fr;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .contact-form,
            .modal {
                padding: 32px;
            }
        }
    