        /* --- CORE VARIABLES --- */
        :root {
            --primary-gold: #eebb54;
            --primary-gold-hover: #d4a036;
            --bg-dark: #2d2d2d;
            --bg-darker: #1f1f1f;
            --bg-footer: #141b2d;
            --text-white: #ffffff;
            --text-grey: #b3b3b3;
            --transition-speed: 0.3s;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }

        body {
            font-family: 'Open Sans', sans-serif;
            background-color: #f4f4f4;
            color: #333;
            overflow-x: hidden;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

        h1, h2, h3, h4, h5 { font-family: 'Montserrat', sans-serif; }
        a { text-decoration: none; color: inherit; transition: var(--transition-speed); }
        ul { list-style: none; }

        /* --- ANIMATIONS --- */
        @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
        @keyframes slideUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
        
        .animate-fade { animation: fadeIn 1s ease-out forwards; opacity: 0; }
        .animate-up { animation: slideUp 0.8s ease-out forwards; opacity: 0; }
        .delay-1 { animation-delay: 0.2s; }
        .delay-2 { animation-delay: 0.4s; }

        /* --- HEADER --- */
        header {
            background-color: var(--bg-dark);
            padding: 1.5rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0,0,0,0.4);
        }

        .logo-container h2 { color: var(--primary-gold); font-size: 1.8rem; font-weight: 700; line-height: 1; }
        .logo-container span { color: var(--text-white); font-size: 0.8rem; letter-spacing: 1px; display: block; margin-top: 5px; }

        nav ul { display: flex; gap: 2rem; }
        nav a { color: var(--text-white); font-weight: 500; font-size: 0.95rem; position: relative; }
        nav a::after { content: ''; position: absolute; width: 0; height: 2px; bottom: -5px; left: 0; background-color: var(--primary-gold); transition: var(--transition-speed); }
        nav a:hover, nav a.active { color: var(--primary-gold); }
        nav a:hover::after, nav a.active::after { width: 100%; }

        /* --- CONTACT CONTAINER --- */
        .contact-wrapper {
            flex: 1;
            background-color: var(--bg-dark);
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 6rem 5%;
            /* Background pattern for texture */
            background-image: radial-gradient(#383838 1px, transparent 1px);
            background-size: 30px 30px;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr; /* Info takes less space than form */
            gap: 0; /* Connected look */
            max-width: 1100px;
            width: 100%;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 30px 60px rgba(0,0,0,0.5);
        }

        /* --- LEFT SIDE: INFO --- */
        .info-panel {
            background-color: var(--bg-darker);
            padding: 3.5rem;
            color: white;
            position: relative;
            z-index: 2;
        }

        .info-panel h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--primary-gold);
        }

        .info-panel p.subtitle {
            color: var(--text-grey);
            margin-bottom: 3rem;
            line-height: 1.6;
        }

        .contact-detail {
            display: flex;
            align-items: center;
            margin-bottom: 2rem;
            padding: 1rem;
            border-radius: 8px;
            transition: 0.3s;
            background: rgba(255,255,255,0.03);
            border: 1px solid transparent;
        }

        .contact-detail:hover {
            background: rgba(238, 187, 84, 0.1); /* Subtle gold bg */
            border-color: rgba(238, 187, 84, 0.3);
            transform: translateX(10px);
        }

        .icon-box {
            width: 50px;
            height: 50px;
            background-color: var(--primary-gold);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.2rem;
            color: var(--bg-darker);
            margin-right: 1.5rem;
            flex-shrink: 0;
        }

        .detail-text h4 { font-size: 0.9rem; color: var(--text-grey); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 5px; }
        .detail-text p { font-size: 1rem; font-weight: 600; color: white; }
        .detail-text a:hover { color: var(--primary-gold); text-decoration: underline; }

        /* --- RIGHT SIDE: FORM --- */
        .form-panel {
            background-color: white;
            padding: 3.5rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .form-panel h3 {
            font-size: 2rem;
            color: var(--bg-dark);
            margin-bottom: 2rem;
        }

        .input-group {
            position: relative;
            margin-bottom: 2rem;
        }

        .input-group input, 
        .input-group textarea {
            width: 100%;
            padding: 1rem 0;
            font-size: 1rem;
            color: #333;
            border: none;
            border-bottom: 2px solid #ddd;
            outline: none;
            background: transparent;
            font-family: 'Open Sans', sans-serif;
            transition: 0.3s;
        }

        .input-group label {
            position: absolute;
            top: 1rem;
            left: 0;
            font-size: 1rem;
            color: #999;
            pointer-events: none;
            transition: 0.3s ease all;
        }

        /* Float Label Animation */
        .input-group input:focus ~ label,
        .input-group input:valid ~ label,
        .input-group textarea:focus ~ label,
        .input-group textarea:valid ~ label {
            top: -10px;
            font-size: 0.8rem;
            color: var(--primary-gold);
            font-weight: 700;
        }

        .input-group input:focus,
        .input-group textarea:focus {
            border-bottom-color: var(--primary-gold);
        }

        /* Gold bar animation */
        .bar { position: relative; display: block; width: 100%; }
        .bar:before, .bar:after {
            content: ''; height: 2px; width: 0; bottom: 0; position: absolute;
            background: var(--primary-gold); transition: 0.3s ease all;
        }
        .bar:before { left: 50%; }
        .bar:after { right: 50%; }
        input:focus ~ .bar:before, input:focus ~ .bar:after,
        textarea:focus ~ .bar:before, textarea:focus ~ .bar:after { width: 50%; }

        .btn-submit {
            background-color: var(--bg-darker);
            color: white;
            border: none;
            padding: 1.2rem;
            font-size: 1rem;
            font-weight: 700;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: 0.3s;
            margin-top: 1rem;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
        }

        .btn-submit:hover {
            background-color: var(--primary-gold);
            color: var(--bg-darker);
        }
        
        /* Map Preview (Decorative) */
        .map-preview {
            margin-top: 2rem;
            height: 150px;
            background-color: #222;
            border-radius: 8px;
            display: flex;
            justify-content: center;
            align-items: center;
            border: 1px solid #444;
            color: #666;
            font-size: 0.9rem;
        }

        /* --- FOOTER (Consistent) --- */
        footer {
            background-color: var(--bg-footer);
            color: white;
            padding: 3rem 5%;
            border-top: 3px solid var(--primary-gold);
            z-index: 10;
        }
        .footer-content { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 2rem; }
        .footer-left h4 { font-size: 1.2rem; color: var(--primary-gold); margin-bottom: 1rem; }
        .footer-info p { font-size: 0.9rem; color: #ccc; margin-bottom: 0.5rem; }
        .social-icons { display: flex; gap: 1.5rem; }
        .social-icons i { font-size: 1.5rem; color: white; cursor: pointer; transition: 0.3s; }
        .social-icons i:hover { color: var(--primary-gold); }

        /* Responsive */
        @media (max-width: 900px) {
            .contact-grid { grid-template-columns: 1fr; }
            .info-panel { padding: 2rem; }
            .form-panel { padding: 2rem; }
            header { flex-direction: column; gap: 1rem; }
            .contact-wrapper { padding: 3rem 5%; }
        }