:root {
    --brand-gold: #efb506;
    --brand-gold-dark: #d49b00;
    --brand-dark: #111111;
    --brand-text: #222222;
    --brand-muted: #5d5d5d;
    --brand-light: #f8f9fb;
    --brand-border: #e9e9e9;
    --white: #ffffff;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--brand-text);
    background: var(--white);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-tag {
    display: inline-block;
    color: var(--brand-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 12px;
}

/* Hero */
#contact-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 20px 80px;
    background-image: url('/resources/Contact Us/Contact Us.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.contact-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.42));
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
    text-align: center;
    color: var(--white);
}

.contact-hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 18px;
    font-weight: 700;
}

.contact-hero-subtext {
    max-width: 720px;
    margin: 0 auto;
    font-size: 1.08rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.88);
}

/* Main Section */
#contact-main {
    padding: 90px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 32px;
    align-items: start;
}

/* Left Panel */
.contact-details-panel {
    background: linear-gradient(135deg, #111111, #1c1c1c);
    color: var(--white);
    border-radius: 24px;
    padding: 38px 32px;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.15);
}

.contact-details-panel h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    line-height: 1.2;
    margin-bottom: 16px;
}

.contact-details-intro {
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.8;
    margin-bottom: 28px;
}

.contact-detail-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-detail-card:last-of-type {
    margin-bottom: 20px;
}

.contact-detail-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 14px;
    background: rgba(239, 181, 6, 0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.contact-detail-card h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
    color: var(--white);
}

.contact-detail-card p {
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.7;
    margin: 0;
}

.contact-detail-card a {
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
}

.contact-detail-card a:hover {
    color: var(--brand-gold);
}

.contact-note-box {
    margin-top: 26px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 20px;
}

.contact-note-box h3 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.contact-note-box p {
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.7;
    margin: 0;
}

/* Form Panel */
.contact-form-panel {
    background: var(--white);
    border: 1px solid var(--brand-border);
    border-radius: 24px;
    padding: 36px 32px;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.06);
}

.form-header {
    margin-bottom: 24px;
}

.form-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    line-height: 1.2;
    color: var(--brand-dark);
    margin-bottom: 12px;
}

.form-header p {
    color: var(--brand-muted);
    line-height: 1.8;
    margin: 0;
}

.contact-form {
    width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--brand-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #d9d9d9;
    border-radius: 14px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    background: #fcfcfc;
    color: var(--brand-text);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--brand-gold);
    box-shadow: 0 0 0 4px rgba(239, 181, 6, 0.12);
    background: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-submit-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 16px 24px;
    border: none;
    border-radius: 999px;
    background: var(--brand-gold);
    color: var(--brand-dark);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 10px 20px rgba(239, 181, 6, 0.2);
}

.form-submit-button:hover {
    background: var(--brand-gold-dark);
    transform: translateY(-2px);
}

/* Bottom CTA */
#contact-bottom-cta {
    padding: 0 0 90px;
    background: var(--white);
}

.contact-bottom-box {
    background: linear-gradient(135deg, #101010, #1d1d1d);
    color: var(--white);
    border-radius: 28px;
    padding: 42px 36px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.15);
}

.contact-bottom-box h2 {
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    line-height: 1.25;
    margin-bottom: 12px;
}

.contact-bottom-box p {
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.8;
    max-width: 700px;
}

.primary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 999px;
    background: var(--brand-gold);
    color: var(--brand-dark);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 10px 20px rgba(239, 181, 6, 0.2);
}

.primary-button:hover {
    background: var(--brand-gold-dark);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-bottom-box {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    #contact-hero {
        min-height: 65vh;
        padding: 120px 20px 60px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-details-panel,
    .contact-form-panel {
        padding: 28px 22px;
    }
}

@media (max-width: 640px) {
    .contact-bottom-box {
        padding: 30px 24px;
    }
}
