/* Contact Page Styles */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --primary-green: #0F6A3C;
    --accent-yellow: #F4B400;
    --bg-cream: #FAFAF7;
    --text-dark: #1a1a1a;
    --text-gray: #666666;
    --white: #ffffff;
}

/* Hero Section */
.contact-hero {
    position: relative;
}

.contact-hero-content {
    color: white;
    max-width: 800px;
}

.contact-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.2;
    color: #fff;
}

.contact-hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 24px;
    opacity: 0.95;
}

.hero-divider {
    font-size: 32px;
    color: var(--accent-yellow);
    margin-top: 16px;
}

/* Section 1 - Contact Cards */
.contact-badge {
    display: inline-block;
    background-color: rgba(15, 106, 60, 0.1);
    color: var(--primary-green);
    padding: 8px 20px;
    border-radius: 24px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.contact-heading {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.3;
}

.contact-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.contact-card {
    background: var(--white);
    border-radius: 18px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.contact-card-icon {
    width: 64px;
    height: 64px;
    background-color: rgba(15, 106, 60, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.contact-card-icon i {
    font-size: 28px;
    color: var(--primary-green);
}

.contact-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.contact-card-value {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: var(--text-gray);
    margin-bottom: 16px;
    line-height: 1.5;
}

.contact-card-link {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-green);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card-link:hover {
    color: #0a4d2b;
}

/* Contact Form Section */
.contact-form-wrapper {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 48px;
    align-items: stretch;
}

.contact-form-left {
    background: linear-gradient(135deg, var(--primary-green) 0%, #0a4d2b 100%);
    border-radius: 18px;
    padding: 48px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.contact-form-left::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?auto=format&fit=crop&w=1920&q=80') center/cover;
    opacity: 0.15;
}

.contact-form-left > * {
    position: relative;
    z-index: 1;
}

.contact-form-badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 20px;
    border-radius: 24px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.contact-form-heading {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    line-height: 1.3;
}

.contact-form-description {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 32px;
}

.contact-form-checklist {
    margin-bottom: 32px;
}

.checklist-item {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
}

.checklist-item i {
    color: var(--accent-yellow);
    margin-right: 12px;
    font-size: 20px;
}

.contact-form-leaf-divider {
    font-size: 32px;
    color: var(--accent-yellow);
    margin-top: auto;
}

.contact-form-right {
    display: flex;
    align-items: center;
}

.contact-form-card {
    background: var(--white);
    border-radius: 18px;
    padding: 40px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.contact-form-fields {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.contact-form-label {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.contact-form-input {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    padding: 14px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background-color: #fafafa;
}

.contact-form-input:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(15, 106, 60, 0.1);
    background-color: white;
}

.contact-form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    margin-top: 8px;
}

.contact-form-submit {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: white;
    background-color: var(--accent-yellow);
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    width: 100%;
}

.contact-form-submit:hover {
    background-color: #e0a000;
    transform: translateY(-2px);
}

/* Location Section */
.location-wrapper {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 48px;
    align-items: stretch;
}

.location-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.location-badge {
    display: inline-block;
    background-color: rgba(15, 106, 60, 0.1);
    color: var(--primary-green);
    padding: 8px 20px;
    border-radius: 24px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    text-align: center;
}

.location-heading {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.3;
}

.location-description {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 32px;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.location-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.location-info-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(15, 106, 60, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.location-info-icon i {
    font-size: 20px;
    color: var(--primary-green);
}

.location-info-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.location-info-content p {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: var(--text-gray);
    line-height: 1.5;
    margin: 0;
}

.location-right {
    display: flex;
    align-items: stretch;
}

.location-map {
    width: 100%;
    min-height: 500px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-form-wrapper {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .contact-form-left {
        padding: 32px;
    }
    
    .location-wrapper {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .location-map {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .contact-cards-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .contact-form-card {
        padding: 24px;
    }

    .location-map {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .contact-form-left {
        padding: 24px;
    }

    .contact-form-card {
        padding: 20px;
    }

    .location-map {
        height: 250px;
    }
}
