/* ========================================= */
/* CONTACT HERO SECTION                      */
/* ========================================= */
.contact-hero {
    position: relative;
    height: 80vh;
    min-height: 600px;
    display: flex;
    align-items: flex-end;
    padding-bottom: var(--space-xl);
    overflow: hidden;
}

.contact-hero .about-hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.contact-hero .about-hero-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    animation: slowZoom 30s infinite alternate var(--ease-out);
}

/* ========================================= */
/* MAP & GLASS OVERLAY SECTION               */
/* ========================================= */
.map-section {
    position: relative;
    height: 650px; 
    background: transparent; /* Transparent so page background shows */
    padding: 0 var(--space-md); /* Add padding so map doesn't touch screen edges */
    margin-top: -60px; /* Elegant overlap over the hero section */
    z-index: 5; /* Sit above the hero */
}

.map-container {
    position: relative;
    max-width: 1400px; /* Match site container width */
    margin: 0 auto;
    height: 100%;
    border-radius: 32px; /* Premium rounded corners */
    overflow: hidden; /* Clip map and overlay inside the rounded corners */
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2); /* Deep floating shadow */
}

/* Premium dark/earthy map filter */
.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(50%) sepia(20%) brightness(0.75) contrast(1.1); 
    transition: filter 0.8s ease;
}

.map-container:hover iframe {
    filter: grayscale(20%) sepia(10%) brightness(0.85) contrast(1.05); 
}

/* Enhanced Glassmorphism Info Card Overlay */
.map-overlay-card {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    width: 400px;
    /* Deep Glassmorphism Effect */
    background: rgba(255, 255, 255, 0.5); /* More transparent */
    backdrop-filter: blur(25px) saturate(180%); /* Heavy blur + saturation pop */
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.6); /* Frosted border */
    border-radius: 24px;
    padding: var(--space-lg);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    z-index: 10;
}

.map-overlay-card .heading-3 {
    margin-bottom: 0.25rem;
    color: var(--color-soil);
}

.map-overlay-card .text-muted-sm {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-bottom: 1.5rem;
    color: var(--color-charcoal);
}

.info-rows {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 0.95rem;
    color: var(--color-soil);
}

.info-item i {
    font-size: 1.4rem;
    color: var(--color-forest);
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.info-item a {
    color: var(--color-soil);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.info-item a:hover {
    color: var(--color-forest);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 44px; height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: rgba(44, 74, 47, 0.15); /* Subtle glass button */
    backdrop-filter: blur(10px);
    color: var(--color-forest);
    font-size: 1.2rem;
    transition: all var(--transition-fast);
}

.social-icon:hover {
    background: var(--color-forest);
    color: var(--color-white);
    transform: translateY(-2px);
}

/* ========================================= 
<!-- GLASSMORPHIC CONTACT FORM SECTION        -->
<!-- ========================================= */
.form-section {
    position: relative;
    background: var(--color-charcoal); /* Dark base */
    overflow: hidden;
}

/* Ambient Gradient Orbs behind the glass */
.form-section::before {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(107, 143, 113, 0.4) 0%, transparent 70%);
    top: -200px; left: -100px;
    z-index: 0;
}

.form-section::after {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(232, 184, 75, 0.2) 0%, transparent 70%);
    bottom: -150px; right: -100px;
    z-index: 0;
}

.form-wrapper {
    position: relative;
    max-width: 800px; 
    margin: 0 auto;
    z-index: 1; /* Sit above orbs */
}

.form-wrapper .heading-2 {
    color: var(--color-white);
}

.form-wrapper .overline {
    color: var(--color-sunlight);
}

.form-container {
    background: rgba(255, 255, 255, 0.08); /* Dark mode glass */
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: var(--space-lg);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* Form Inputs - Frosted Glass Dark Mode */
.premium-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-sand); /* Light label */
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.08); /* Subtle glass input */
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    font-family: var(--font-primary);
    font-size: 16px; /* Prevents iOS zoom */
    color: var(--color-white);
    transition: all var(--transition-fast);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    border-color: var(--color-sunlight);
    box-shadow: 0 0 0 4px rgba(232, 184, 75, 0.15);
    background: rgba(255, 255, 255, 0.12); /* Brighter on focus */
}

.form-group select {
    appearance: none;
    /* White dropdown arrow */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23FFFFFF' viewBox='0 0 256 256'%3E%3Cpath d='M213.66,101.66l-80,80a8,8,0,0,1-11.32,0l-80-80A8,8,0,0,1,53.66,90.34L128,164.69l74.34-74.35a8,8,0,0,1,11.32,11.32Z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

/* Apple-Style Segmented Toggle (Dark Mode) */
.delivery-toggle {
    display: flex;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 4px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.delivery-toggle input[type="radio"] {
    display: none; 
}

.toggle-label {
    flex: 1;
    text-align: center;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.toggle-label i {
    font-size: 1.2rem;
}

.delivery-toggle input[type="radio"]:checked + .toggle-label {
    background: rgba(255, 255, 255, 0.15);
    color: var(--color-white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.btn-full {
    width: 100%;
    margin-top: 0.5rem;
}