:root {
    --primary-navy: #0A1128;
    --primary-gold: #C5A059;
    --bg-light: #FAF9F6;
    --bg-white: #FFFFFF;
    --text-dark: #1A1A1A;
    --text-gray: #555555;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Montserrat', sans-serif;
    --transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--font-sans); background-color: var(--bg-light); color: var(--text-dark); line-height: 1.8; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 5%; }
.section-padding { padding: 100px 0; }

/* ==========================================================================
    1. PAGE HERO SECTION
    ========================================================================== */
.page-hero {
    height: 50vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Premium corporate building facade */
    background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=2070&auto=format&fit=crop') center/cover no-repeat fixed;
    text-align: center;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 17, 40, 0.9) 0%, rgba(10, 17, 40, 0.7) 100%);
    z-index: 1;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1.2s ease;
}

.page-hero-subtitle {
    font-size: 1rem;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 5px;
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

.page-hero-title {
    font-family: var(--font-serif);
    font-size: 4rem;
    color: var(--bg-white);
    letter-spacing: 3px;
}

/* ==========================================================================
    2. CONTACT SPLIT LAYOUT
    ========================================================================== */
.contact-layout {
    display: flex;
    background-color: var(--bg-white);
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
    margin-top: -80px; /* Pulls the box up slightly into the hero section */
    position: relative;
    z-index: 10;
}

/* LEFT: Contact Information (Navy) */
.contact-sidebar {
    flex: 1;
    background-color: var(--primary-navy);
    color: var(--bg-white);
    padding: 80px 60px;
    background-image: url('https://www.transparenttextures.com/patterns/stardust.png');
}

.sidebar-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--bg-white);
}

.sidebar-desc {
    color: #A0AABF;
    margin-bottom: 50px;
    font-size: 1.05rem;
    line-height: 1.6;
}

.office-block {
    margin-bottom: 40px;
}

.office-block h4 {
    color: var(--primary-gold);
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.office-block h4 svg {
    width: 18px;
    height: 18px;
}

.office-block p {
    color: #E2E8F0;
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.office-block a {
    color: var(--bg-white);
    text-decoration: none;
    transition: var(--transition);
}

.office-block a:hover {
    color: var(--primary-gold);
}

/* RIGHT: The Form (White) */
.contact-form-area {
    flex: 1.5;
    padding: 80px 60px;
    background-color: var(--bg-white);
}

.form-title {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    color: var(--primary-navy);
    margin-bottom: 15px;
}

.form-subtitle {
    color: var(--text-gray);
    margin-bottom: 40px;
    font-size: 1rem;
}

.premium-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.form-group {
    position: relative;
}

.form-group.full-width {
    grid-column: span 2;
}

.premium-form input,
.premium-form select,
.premium-form textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #ddd;
    padding: 15px 0;
    color: var(--text-dark);
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: var(--transition);
}

.premium-form select {
    color: var(--text-gray);
    cursor: pointer;
    appearance: none; /* Removes default dropdown arrow */
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="%23C5A059" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="6 9 12 15 18 9"></polyline></svg>') no-repeat right center;
}

.premium-form input:focus,
.premium-form select:focus,
.premium-form textarea:focus {
    outline: none;
    border-bottom-color: var(--primary-gold);
}

.premium-form textarea {
    resize: vertical;
    min-height: 120px;
}

/* Floating Labels Effect (Optional but premium) */
.premium-form input::placeholder,
.premium-form textarea::placeholder {
    color: #999;
}

.submit-btn {
    background-color: var(--primary-navy);
    color: var(--bg-white);
    border: 1px solid var(--primary-navy);
    padding: 18px 40px;
    font-family: var(--font-sans);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 10px;
    width: 100%;
}

.submit-btn:hover {
    background-color: var(--primary-gold);
    border-color: var(--primary-gold);
    color: var(--primary-navy);
}

/* Animations */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* ==========================================================================
    RESPONSIVE DESIGN
    ========================================================================== */
@media (max-width: 1024px) {
    .contact-layout {
        flex-direction: column;
        margin-top: 0;
        box-shadow: none;
    }
    .contact-sidebar, .contact-form-area {
        padding: 60px 40px;
    }
}

@media (max-width: 768px) {
    .page-hero-title { font-size: 3rem; }
    .premium-form { grid-template-columns: 1fr; }
    .form-group.full-width { grid-column: span 1; }
}

@media (max-width: 576px) {
    .page-hero-title { font-size: 2.5rem; }
    .contact-sidebar, .contact-form-area { padding: 40px 20px; }
    .sidebar-title, .form-title { font-size: 2rem; }
}
