/* Contact Hero Section */
.contact-hero {
    position: relative;
    padding: 6rem 2rem 5rem calc(50px + 2rem);
    background: linear-gradient(135deg, 
        rgba(74, 123, 140, 0.95), 
        rgba(245, 167, 167, 0.85)),
        url('https://images.unsplash.com/photo-1516967124798-10656f7dca28?auto=format&fit=crop&q=80') center/cover;
    text-align: center;
    color: white;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    opacity: 0.3;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.contact-hero .intro-text {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-text {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* Contact Info Section */
.contact-info {
    padding: 6rem 2rem;
    background-color: white;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.info-card {
    text-align: center;
    padding: 2rem;
    background: var(--background-light);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.info-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.info-card p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.5;
}

.info-card a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-card a:hover {
    color: var(--primary-pink);
}

/* Contact Form Section */
.contact-form-section {
    padding: 6rem 2rem;
    background-color: var(--background-light);
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.form-wrapper h2 {
    text-align: center;
    color: var(--primary-blue);
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.contact-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

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

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    margin-bottom: 0.5rem;
    color: #666;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-pink);
}

.submit-button {
    grid-column: 1 / -1;
    padding: 1rem 2rem;
    background-color: var(--primary-pink);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background-color: var(--primary-blue);
    transform: translateY(-2px);
}

/* Map Section */
.map-section {
    padding: 6rem 2rem;
    background-color: white;
}

.map-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-form-section {
        padding: 2rem 1rem;
       
    }
    .contact-hero h1 {
        font-size: 2.8rem;
    }

    .contact-hero .intro-text {
        font-size: 1.4rem;
    }

    .hero-text {
        font-size: 1rem;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .info-card {
        max-width: 400px;
        margin: 0 auto;
    }

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

    .form-wrapper {
        padding: 2rem;
    }

    .form-wrapper h2 {
        font-size: 1.5rem;
    }
    .form-group{margin-bottom: 0;}
}

/* Form Message Styles */
.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
}

.success-message {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.error-message {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.info-message {
    background-color: #cce5ff;
    color: #004085;
    border: 1px solid #b8daff;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
}

/* reCAPTCHA container */
.g-recaptcha {
    margin: 1rem 0;
    display: flex;
    justify-content: center;
} 