        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-gold: #F3CE34;
            --gold-light: #E8C547;
            --dark-bg: #0A0A0A;
            --dark-card: #202020;
            --dark-input: #1A1A1A;
            --text-white: #FFFFFF;
            --text-light: #F5F5F5;
            --text-muted: rgba(245, 245, 245, 0.6);
            --border-gold: rgba(243, 206, 52, 0.3);
        }

        body {
            font-family: 'Outfit', sans-serif;
            background: var(--dark-bg);
            color: var(--text-white);
            line-height: 1.6;
            overflow-x: hidden;
        }

        
        /* ===== MAIN CONTAINER ===== */
        main {
            margin-top: 100px;
            padding: 0;
        }

        /* ===== HERO SECTION ===== */
        .contact-hero {
            padding: 120px 80px 80px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }


        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
        }

        .hero-badge {
            display: inline-block;
            background: rgba(97, 97, 97, 0.38);
            border-radius: 25px;
            padding: 8px 16px;
            font-size: 12px;
            font-weight: 500;
            margin-bottom: 20px;
            color: var(--primary-gold);
        }

        .hero-title {
            font-size: 84px;
            line-height: 1.1;
            font-weight: 400;
            margin-bottom: 24px;
            letter-spacing: -1px;
        }

        .hero-title .highlight {
            color: var(--primary-gold);
            font-weight: 700;
        }

        .hero-subtitle {
            font-size: 20px;
            color: var(--text-light);
            line-height: 1.6;
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            font-weight: 300;
        }

        /* ===== CONTACT GRID ===== */
        .contact-section {
            padding: 100px 80px;
            max-width: 1920px;
            margin: 0 auto;
        }

        .contact-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: start;
        }

        /* Contact Methods */
        .contact-methods {
            display: flex;
            flex-direction: column;
            gap: 32px;
        }

        .method-card {
            background: linear-gradient(135deg, rgba(243, 206, 52, 0.05) 0%, rgba(243, 206, 52, 0.02) 100%);
            border: 1px solid var(--border-gold);
            border-radius: 16px;
            padding: 32px;
            transition: all 0.4s ease;
            position: relative;
        }

        .method-card:hover {
            background: linear-gradient(135deg, rgba(243, 206, 52, 0.12) 0%, rgba(243, 206, 52, 0.05) 100%);
            border-color: rgba(243, 206, 52, 0.6);
            transform: translateY(-4px);
        }

        .method-icon {
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, var(--primary-gold), var(--gold-light));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
            font-size: 28px;
        }

        .method-card h3 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .method-card p {
            color: var(--text-muted);
            font-size: 15px;
            line-height: 1.6;
            margin-bottom: 16px;
        }

        .method-card a {
            color: var(--primary-gold);
            text-decoration: none;
            font-weight: 500;
            font-size: 14px;
            transition: opacity 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .method-card a:hover {
            opacity: 0.8;
        }

        /* Contact Form */
        .contact-form {
            background: linear-gradient(135deg, rgba(32, 32, 32, 0.8) 0%, rgba(26, 26, 26, 0.8) 100%);
            border: 2px solid var(--border-gold);
            border-radius: 20px;
            padding: 48px;
            backdrop-filter: blur(10px);
        }

        .form-group {
            margin-bottom: 24px;
        }

        .form-group.form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-bottom: 24px;
        }

        .form-group.form-row .form-group {
            margin-bottom: 0;
        }

        .form-group label {
            display: block;
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 10px;
            color: var(--text-light);
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            background: var(--dark-input);
            border: 2px solid rgba(243, 206, 52, 0.2);
            border-radius: 12px;
            padding: 14px 16px;
            color: var(--text-white);
            font-size: 15px;
            font-family: 'Outfit', sans-serif;
            transition: all 0.3s ease;
            outline: none;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: rgba(243, 206, 52, 0.6);
            background: rgba(26, 26, 26, 0.8);
            box-shadow: 0 0 20px rgba(243, 206, 52, 0.1);
        }

        .form-group textarea {
            min-height: 140px;
            resize: vertical;
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(245, 245, 245, 0.4);
        }

        /* Checkbox Group */
        .checkbox-group {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            margin-bottom: 24px;
        }

        .checkbox-item {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .checkbox-item input[type="checkbox"] {
            width: 20px;
            height: 20px;
            cursor: pointer;
            accent-color: var(--primary-gold);
        }

        .checkbox-item label {
            margin: 0;
            font-size: 14px;
            cursor: pointer;
        }

        /* Submit Button */
        .form-submit {
            width: 100%;
            background: linear-gradient(180deg, var(--primary-gold), var(--gold-light));
            border: none;
            border-radius: 12px;
            padding: 16px 32px;
            color: #151515;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Outfit', sans-serif;
            margin-top: 12px;
        }

        .form-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(243, 206, 52, 0.2);
        }

        .form-submit:active {
            transform: translateY(0);
        }

        /* Disclaimer */
        .form-disclaimer {
            font-size: 12px;
            color: var(--text-muted);
            text-align: center;
            margin-top: 16px;
            line-height: 1.6;
        }

        .form-disclaimer a {
            color: var(--primary-gold);
            text-decoration: none;
        }

        /* ===== MAP SECTION ===== */
        .map-section {
            padding: 100px 80px;
            background: linear-gradient(180deg, rgba(243, 206, 52, 0.02) 0%, transparent 100%);
        }

        .map-container {
            max-width: 1920px;
            margin: 0 auto;
            border-radius: 20px;
            overflow: hidden;
            border: 2px solid var(--border-gold);
            background: rgba(32, 32, 32, 0.3);
            line-height: 0;
        }

        .map-container iframe {
            display: block;
            width: 100%;
            height: 500px;
            border: none;
        }

        /* ===== FAQ SECTION ===== */
        .faq-section {
            padding: 100px 80px;
            max-width: 1920px;
            margin: 0 auto;
        }

        .faq-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .faq-title h2 {
            font-size: 54px;
            margin-bottom: 16px;
            font-weight: 400;
        }

        .faq-title h2 .highlight {
            color: var(--primary-gold);
        }

        .faq-title p {
            font-size: 18px;
            color: var(--text-muted);
        }

        .faq-list {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-item {
            background: rgba(32, 32, 32, 0.4);
            border: 1px solid var(--border-gold);
            border-radius: 12px;
            margin-bottom: 12px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item.active {
            background: rgba(243, 206, 52, 0.08);
            border-color: rgba(243, 206, 52, 0.5);
        }

        .faq-question {
            padding: 24px 32px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            color: var(--primary-gold);
        }

        .faq-question h3 {
            font-size: 18px;
            font-weight: 500;
        }

        .faq-toggle {
            width: 40px;
            height: 40px;
            border: 1.5px solid var(--primary-gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }

        .faq-item.active .faq-toggle {
            background: var(--primary-gold);
            color: #151515;
        }

    

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .faq-item.active .faq-answer {
            max-height: 300px;
        }

        .faq-answer p {
            padding: 0 32px 24px;
            color: var(--text-light);
            line-height: 1.7;
            font-size: 15px;
        }

        

        /* ===== ANIMATIONS ===== */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .contact-hero {
            animation: fadeInUp 0.8s ease 0.2s backwards;
        }

        .method-card {
            animation: fadeInUp 0.8s ease backwards;
        }

        .method-card:nth-child(1) { animation-delay: 0.3s; }
        .method-card:nth-child(2) { animation-delay: 0.4s; }
        .method-card:nth-child(3) { animation-delay: 0.5s; }

        .contact-form {
            animation: fadeInUp 0.8s ease 0.4s backwards;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .contact-hero {
                padding: 100px 40px 60px;
            }

            .hero-title {
                font-size: 54px;
            }

            .contact-section {
                padding: 80px 40px;
            }

            .contact-wrapper {
                grid-template-columns: 1fr;
                gap: 60px;
            }

            .contact-form {
                padding: 36px;
            }

            .map-section {
                padding: 80px 40px;
            }

            .map-container iframe {
                height: 420px;
            }

            .faq-section {
                padding: 80px 40px;
            }

        }

        @media (max-width: 768px) {
            header {
                padding: 16px 24px;
            }

            .map-section {
                padding: 60px 24px;
            }

            .map-container iframe {
                height: 340px;
            }

            .hero-title {
                font-size: 40px;
            }

            .hero-subtitle {
                font-size: 16px;
            }

            .contact-section {
                padding: 60px 24px;
            }

            .contact-form {
                padding: 28px;
            }

            .form-group.form-row {
                grid-template-columns: 1fr;
            }

            .method-card {
                padding: 24px;
            }

            .faq-title h2 {
                font-size: 36px;
            }

            .faq-question {
                padding: 18px 20px;
            }

            .faq-question h3 {
                font-size: 16px;
            }

            .faq-answer p {
                padding: 0 20px 18px;
            }

        }

        @media (max-width: 480px) {
            .contact-hero {
                padding: 80px 20px 40px;
            }

            .hero-title {
                font-size: 32px;
            }

            .contact-section {
                padding: 40px 20px;
            }

            .contact-wrapper {
                gap: 40px;
            }

            .contact-form {
                padding: 24px;
            }

        }
 