/* Contact Page - Modern Design */

/* Contact Hero Section */
.contact-hero-section {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
}

.contact-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #1B4D3E;
    margin-bottom: 15px;
}

.contact-hero-subtitle {
    font-size: 1.2rem;
    color: #666;
    font-style: italic;
}

/* Contact Info Section */
.contact-info-section {
    padding: 80px 0;
    background: #fff;
}

.contact-info-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    border-color: #1B4D3E;
    box-shadow: 0 15px 40px rgba(27, 77, 62, 0.15);
}

.contact-info-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1B4D3E 0%, #4CAF50 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.contact-info-card:hover .contact-info-icon {
    transform: scale(1.1) rotate(360deg);
}

.contact-info-icon i {
    font-size: 36px;
    color: #fff;
}

.contact-info-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1B4D3E;
    margin-bottom: 10px;
}

.contact-info-card p {
    color: #666;
    font-size: 15px;
    margin-bottom: 15px;
}

.contact-link {
    display: block;
    color: #4CAF50;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: #1B4D3E;
    padding-left: 5px;
}

/* Contact Form & Map Section */
.contact-form-map-section {
    background: #f8f9fa;
}

.contact-form-wrapper {
    padding: 80px 60px;
    background: #fff;
    height: 100%;
}

.form-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1B4D3E;
    margin-bottom: 10px;
}

.form-subtitle {
    color: #666;
    font-size: 1.05rem;
    margin-bottom: 35px;
}

.custom-alert {
    border-radius: 10px;
    padding: 15px 20px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-left: 4px solid;
}

.custom-alert i {
    font-size: 20px;
}

.custom-alert.alert-success {
    background: #d1f2eb;
    border-left-color: #4CAF50;
    color: #1B4D3E;
}

.custom-alert.alert-danger {
    background: #f8d7da;
    border-left-color: #dc3545;
    color: #721c24;
}

/* Modern Form Styling */
.modern-contact-form .form-group-modern {
    position: relative;
    margin-bottom: 25px;
}

.modern-contact-form input,
.modern-contact-form textarea {
    width: 100%;
    padding: 15px 20px 15px 50px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.modern-contact-form input:focus,
.modern-contact-form textarea:focus {
    outline: none;
    border-color: #1B4D3E;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(27, 77, 62, 0.1);
}

.modern-contact-form .input-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #1B4D3E;
    font-size: 18px;
}

.modern-contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.modern-contact-form textarea+.input-icon {
    top: 20px;
    transform: none;
}

.submit-btn-modern {
    width: 100%;
    background: linear-gradient(135deg, #1B4D3E 0%, #4CAF50 100%);
    color: #fff;
    border: none;
    padding: 16px 40px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.submit-btn-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(27, 77, 62, 0.3);
}

.submit-btn-modern i {
    transition: transform 0.3s ease;
}

.submit-btn-modern:hover i {
    transform: translateX(5px);
}

/* Map Wrapper */
.map-wrapper-modern {
    position: relative;
    height: 100%;
    min-height: 600px;
}

.map-wrapper-modern iframe {
    width: 100%;
    height: 100%;
    display: block;
}

.map-overlay {
    position: absolute;
    top: 30px;
    left: 30px;
    z-index: 10;
}

.map-info-card {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    max-width: 300px;
}

.map-info-card h5 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1B4D3E;
    margin-bottom: 10px;
}

.map-info-card p {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.map-info-card p i {
    color: #4CAF50;
    margin-right: 8px;
}

.directions-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #1B4D3E;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.directions-btn:hover {
    background: #143d23;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(27, 77, 62, 0.3);
    color: #fff;
}

/* Why Contact Section */
.why-contact-section {
    padding: 80px 0;
    background: #fff;
}

.why-card {
    text-align: center;
    padding: 30px 20px;
    transition: all 0.3s ease;
}

.why-card i {
    font-size: 48px;
    color: #1B4D3E;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.why-card:hover i {
    color: #4CAF50;
    transform: scale(1.1);
}

.why-card h5 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1B4D3E;
    margin-bottom: 10px;
}

.why-card p {
    color: #666;
    font-size: 15px;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .contact-form-wrapper {
        padding: 60px 40px;
    }
}

@media (max-width: 992px) {
    .contact-hero-title {
        font-size: 2.5rem;
    }

    .contact-form-wrapper {
        padding: 50px 30px;
    }

    .map-wrapper-modern {
        min-height: 500px;
    }

    .map-overlay {
        position: static;
        padding: 20px;
        background: #fff;
    }
}

@media (max-width: 768px) {
    .contact-hero-section {
        padding: 80px 0 40px;
    }

    .contact-hero-title {
        font-size: 2rem;
    }

    .contact-info-section,
    .why-contact-section {
        padding: 60px 0;
    }

    .contact-form-wrapper {
        padding: 40px 20px;
    }

    .form-title {
        font-size: 2rem;
    }

    .map-wrapper-modern {
        min-height: 400px;
    }
}

@media (max-width: 576px) {
    .contact-hero-title {
        font-size: 1.8rem;
    }

    .modern-contact-form input,
    .modern-contact-form textarea {
        padding: 12px 15px 12px 45px;
    }

    .modern-contact-form .input-icon {
        left: 15px;
        font-size: 16px;
    }
}