/* =========================================
   CONTACT PAGE - PREMIUM DESIGN
   ========================================= */

/* Contact Hero Section */
.contact-hero {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, #5AAC4E 0%, #3d8a35 50%, #234821 100%);
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(109, 197, 104, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(76, 211, 227, 0.3) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 60px;
    font-weight: 900;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 30px;
}

.breadcrumb-trail {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 16px;
    color: white;
}

.breadcrumb-trail a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumb-trail a:hover {
    color: #4cd3e3;
}

.breadcrumb-trail i {
    font-size: 12px;
}

/* Contact Info Cards */
.contact-info-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.info-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(90, 172, 78, 0.2);
    border-color: #5AAC4E;
}

.info-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #5AAC4E, #6dc568);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 15px 40px rgba(90, 172, 78, 0.3);
    transition: all 0.3s ease;
}

.info-card:hover .info-icon {
    transform: scale(1.1) rotate(10deg);
}

.info-icon i {
    font-size: 40px;
    color: white;
}

.info-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #0D210B;
    margin-bottom: 15px;
}

.info-card p {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin: 0;
}

.info-card a {
    color: #5AAC4E;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.info-card a:hover {
    color: #234821;
}

/* Map & Form Section */
.map-form-section {
    padding: 100px 0;
    background: white;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 48px;
    font-weight: 900;
    color: #0D210B;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.section-title p {
    font-size: 18px;
    color: #666;
}

.map-form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

/* Map Container */
.map-container {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 3px solid #e0e0e0;
    transition: all 0.3s ease;
}

.map-container:hover {
    box-shadow: 0 25px 70px rgba(90, 172, 78, 0.2);
    border-color: #5AAC4E;
}

.map-header {
    background: linear-gradient(135deg, #5AAC4E, #234821);
    padding: 25px 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.map-header i {
    font-size: 32px;
    color: white;
}

.map-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin: 0;
}

.map-embed {
    position: relative;
    width: 100%;
    height: 450px;
}

.map-embed iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-footer {
    padding: 25px 30px;
    background: #f8f9fa;
    text-align: center;
}

.btn-directions {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 40px;
    background: linear-gradient(135deg, #5AAC4E, #234821);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(90, 172, 78, 0.4);
}

.btn-directions:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(90, 172, 78, 0.6);
    color: white;
}

.btn-directions i {
    font-size: 20px;
}

/* Contact Form Container */
.contact-form-container {
    background: white;
    border-radius: 25px;
    padding: 50px 45px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 3px solid #e0e0e0;
    transition: all 0.3s ease;
}

.contact-form-container:hover {
    box-shadow: 0 25px 70px rgba(90, 172, 78, 0.2);
    border-color: #5AAC4E;
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header i {
    font-size: 50px;
    color: #5AAC4E;
    margin-bottom: 20px;
}

.form-header h3 {
    font-size: 28px;
    font-weight: 700;
    color: #0D210B;
    margin-bottom: 10px;
}

.form-header p {
    font-size: 16px;
    color: #666;
}

/* Contact Form */
.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form .form-group.full-width {
    grid-column: 1 / -1;
}

.contact-form label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    color: #0D210B;
    margin-bottom: 10px;
}

.contact-form label i {
    color: #5AAC4E;
    font-size: 16px;
}

.required {
    color: #e74c3c;
    font-weight: 700;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    color: #0D210B;
    background: #fafafa;
    transition: all 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #999;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #5AAC4E;
    background: white;
    box-shadow: 0 0 0 4px rgba(90, 172, 78, 0.1);
    transform: translateY(-2px);
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
    line-height: 1.6;
}

.form-actions {
    text-align: center;
    margin-top: 15px;
}

.btn-submit-contact {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 60px;
    background: linear-gradient(135deg, #5AAC4E, #234821);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 40px rgba(90, 172, 78, 0.5);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.btn-submit-contact:hover {
    background: linear-gradient(135deg, #234821, #5AAC4E);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(90, 172, 78, 0.7);
}

.btn-submit-contact i {
    font-size: 20px;
}

/* FAQ Section */
.contact-faq-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa, #e8f5e7);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.faq-item {
    background: white;
    padding: 40px 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 5px solid #5AAC4E;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(90, 172, 78, 0.2);
}

.faq-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #5AAC4E, #6dc568);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.faq-icon i {
    font-size: 32px;
    color: white;
}

.faq-item h4 {
    font-size: 22px;
    font-weight: 700;
    color: #0D210B;
    margin-bottom: 15px;
}

.faq-item p {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .map-form-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 140px 0 80px;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section-title h2 {
        font-size: 36px;
    }

    .contact-form-container {
        padding: 35px 25px;
    }

    .map-embed {
        height: 350px;
    }

    .btn-submit-contact {
        width: 100%;
        padding: 16px 40px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .info-card {
        padding: 30px 20px;
    }

    .info-icon {
        width: 70px;
        height: 70px;
    }

    .info-icon i {
        font-size: 32px;
    }

    .contact-form-container {
        padding: 30px 20px;
    }

    .form-header h3 {
        font-size: 24px;
    }

    .map-embed {
        height: 300px;
    }

    .faq-item {
        padding: 30px 25px;
    }
}