/* Hero Section */
.contact-hero {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(9, 179, 34, 0.1) 0%, transparent 70%);
    z-index: 1;
}

.contact-hero .container {
    position: relative;
    z-index: 2;
}

.contact-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.contact-hero h1 span {
    color: #09b322;
    position: relative;
}

.contact-hero h1 span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #09b322;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.contact-hero:hover h1 span::after {
    transform: scaleX(1);
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
}

.stat-item .counter {
    font-size: 2.5rem;
    font-weight: bold;
    color: #09b322;
    display: block;
    margin-bottom: 0.5rem;
}

.hero-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.hero-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.hero-image:hover img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: #09b322;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(9, 179, 34, 0.3);
}

.experience-badge span {
    font-size: 2rem;
    font-weight: bold;
    display: block;
}

/* Contact Info Section */
.contact-info-section {
    padding: 80px 0;
    background: white;
}

.info-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.info-icon {
    width: 80px;
    height: 80px;
    background: #09b322;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.info-card:hover .info-icon {
    transform: rotateY(360deg);
}

.info-card h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.info-card p {
    color: #666;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.form-wrapper {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-wrapper h2 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.form-wrapper p {
    color: #666;
    margin-bottom: 2rem;
}

.form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-control {
    width: 100%;
    padding: 1rem 1.5rem;
    padding-left: 3rem;
    border: 2px solid #eee;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #09b322;
    box-shadow: 0 0 0 3px rgba(9, 179, 34, 0.1);
    outline: none;
}

.form-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    transition: all 0.3s ease;
}

.form-control:focus + .form-icon {
    color: #09b322;
}

textarea.form-control {
    padding-left: 1.5rem;
    resize: none;
}

.btn-submit {
    width: 100%;
    padding: 1rem 2rem;
    background: #09b322;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #07a01d;
    transform: translateY(-2px);
}

.btn-submit.success {
    background: #28a745;
}

/* Map Section */
.map-wrapper {
    height: 100%;
}

.map-wrapper h2 {
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.map-container {
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: white;
}

.section-header {
    margin-bottom: 3rem;
}

.section-header h2 {
    color: #333;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: #666;
    font-size: 1.1rem;
}

.faq-item {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question h3 {
    color: #333;
    font-size: 1.2rem;
    margin: 0;
}

.faq-question i {
    color: #09b322;
    transition: transform 0.3s ease;
}

.faq-question.active {
    background: #f8f9fa;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer p {
    color: #666;
    margin: 1.5rem 0;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 991px) {
    .contact-hero {
        padding: 80px 0;
    }

    .contact-hero h1 {
        font-size: 2.5rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .form-wrapper {
        margin-bottom: 2rem;
    }

    .map-wrapper {
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 2rem;
    }

    .stat-item {
        padding: 1rem;
    }

    .stat-item .counter {
        font-size: 2rem;
    }

    .experience-badge {
        padding: 0.5rem 1rem;
    }

    .experience-badge span {
        font-size: 1.5rem;
    }

    .form-wrapper {
        padding: 2rem;
    }

    .form-wrapper h2 {
        font-size: 1.8rem;
    }

    .map-container {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .contact-hero {
        padding: 60px 0;
    }

    .contact-hero h1 {
        font-size: 1.8rem;
    }

    .hero-stats {
        margin-top: 2rem;
    }

    .stat-item {
        margin-bottom: 1rem;
    }

    .form-wrapper {
        padding: 1.5rem;
    }

    .form-wrapper h2 {
        font-size: 1.5rem;
    }

    .map-container {
        height: 300px;
    }

    .section-header h2 {
        font-size: 2rem;
    }
} 