/* ==========================================================================
   1. CONTACT HERO INTRO
   ========================================================================== */
.contact-main-wrapper {
    background-color: var(--bg-main);
    padding-top: 40px;
}

.contact-hero-section {
    padding: 60px 0 30px 0;
}

.contact-intro {
    text-align: center;
    max-width: 740px;
    margin: 0 auto;
}

.contact-intro h1 {
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 24px;
    letter-spacing: -1px;
}
.contact-intro h1 span { color: var(--color-accent); }

.contact-intro p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.75;
}

/* ==========================================================================
   2. THE PREMIUM SPLIT CONTACT LAYOUT
   ========================================================================== */
.contact-grid-section {
    padding: 60px 0 100px 0;
    background-color: var(--bg-main);
}

.contact-split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Panels Common Style */
.contact-info-panel,
.contact-form-panel {
    background-color: var(--bg-card);
    padding: 50px 45px;
    border-radius: var(--radius-premium);
    border: 1px solid rgba(108, 95, 85, 0.03);
    box-shadow: 0 15px 40px rgba(108, 95, 85, 0.02);
    text-align: left;
}

.contact-split-layout h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

.panel-intro-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 35px;
}

/* Cozy Info Boxes */
.cozy-info-box {
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(108, 95, 85, 0.06);
}
.cozy-info-box:last-of-type {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.cozy-info-box h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 6px;
}

.cozy-info-box p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Google Map Embed Frame */
.contact-map-wrapper {
    margin-top: 40px;
    width: 100%;
}

.friendly-map-frame {
    width: 100%;
    height: 240px;
    border-radius: var(--radius-premium);
    overflow: hidden;
    border: 1px solid rgba(108, 95, 85, 0.08);
}

.friendly-map-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ==========================================================================
   3. FRIENDLY MODERN FORM STYLING
   ========================================================================== */
.friendly-modern-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-row-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-primary);
}

.friendly-modern-form input,
.friendly-modern-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(108, 95, 85, 0.15);
    border-radius: 12px;
    font-family: var(--font-friendly);
    font-size: 0.95rem;
    color: var(--color-primary);
    background-color: var(--bg-main);
    transition: all 0.25s ease;
}

.friendly-modern-form textarea {
    resize: vertical;
    min-height: 130px;
}

/* Smooth Focus Interactions */
.friendly-modern-form input:focus,
.friendly-modern-form textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    background-color: var(--bg-card);
    box-shadow: 0 0 0 4px rgba(212, 163, 115, 0.1);
}

.form-submit-btn {
    width: 100%;
    cursor: pointer;
    margin-top: 10px;
}

/* ==========================================================================
   4. BOTTOM NOTE COZY BANNER
   ========================================================================== */
.contact-bottom-note-section {
    background-color: var(--bg-main);
    padding-bottom: 120px;
}

.contact-note-island {
    background-color: #f3ede4;
    padding: 70px 40px;
    border-radius: var(--radius-premium);
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-note-island h2 {
    font-size: 2.2rem;
    color: var(--color-primary);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}
.contact-note-island h2 span { color: var(--color-accent); }

.contact-note-island p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

/* ==========================================================================
   5. RESPONSIVE DESIGN BREAKPOINTS
   ========================================================================== */
@media screen and (max-width: 1024px) {
    .contact-split-layout {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 16px;
    }
    .contact-info-panel, .contact-form-panel { padding: 40px 24px; }
    
    .contact-hero-section { padding: 60px 24px 10px 24px; }
    .contact-intro h1 { font-size: 2.5rem; }
    
    .contact-note-island h2 { font-size: 1.8rem; }
    .contact-grid-section { padding-bottom: 60px; }
}