
.contact-banner {
    position: relative;
    min-height: 400px;
    height: 50vh;
    max-height: 500px;
    overflow: hidden;
       
    z-index: 2;
    text-align: center;
    color: var(--white);

    background: linear-gradient(135deg, var(--dark-green) 0%, var(--primary-green) 100%);
}

.contact-banner .banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.contact-banner .container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 60px 20px;
}

.banner-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    animation: fadeInUp 0.6s ease-out;
}

.contact-section {
    padding: 80px 0;
}

.contact-section.bg-light {
    background-color: var(--bg-light);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info-card {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.contact-info-card h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-black);
    margin-bottom: 10px;
}

.contact-info-card .subtitle {
    font-size: 16px;
    color: var(--text-light-gray);
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.info-icon:hover {
    transform: scale(1.1);
}

.info-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--white);
}

.info-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-black);
    margin-bottom: 8px;
}

.info-content p,
.info-content a {
    font-size: 15px;
    color: var(--text-light-gray);
    line-height: 1.7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-content a:hover {
    color: var(--primary-green);
}

.contact-form-card {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.contact-form-card h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-black);
    margin-bottom: 10px;
}

.contact-form-card .subtitle {
    font-size: 16px;
    color: var(--text-light-gray);
    margin-bottom: 40px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-gray);
    margin-bottom: 10px;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    font-size: 15px;
    color: var(--text-gray);
    border: 2px solid var(--border-gray);
    border-radius: 10px;
    transition: all 0.3s ease;
    background-color: var(--bg-light);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-green);
    background-color: var(--white);
    box-shadow: 0 0 0 4px rgba(42, 105, 67, 0.1);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 16px 30px;
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(42, 105, 67, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

.map-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.map-container {
    width: 100%;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
}

.map-placeholder svg {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    fill: var(--primary-green);
}

.map-placeholder p {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
}

.map-placeholder span {
    font-size: 14px;
    color: var(--text-light-gray);
}

.working-hours {
    margin-top: 40px;
}

.working-hours h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-black);
    margin-bottom: 25px;
}

.hours-list {
    display: grid;
    gap: 15px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px dashed var(--border-gray);
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-day {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-gray);
}

.hours-time {
    font-size: 15px;
    color: var(--text-light-gray);
}

.social-contact {
    margin-top: 40px;
}

.social-contact h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-black);
    margin-bottom: 25px;
}

.social-list {
    display: flex;
    gap: 15px;
}

.social-item {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.social-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(42, 105, 67, 0.3);
}

.social-item svg {
    width: 28px;
    height: 28px;
    fill: var(--white);
}

.faq-section {
    padding: 80px 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.faq-question {
    padding: 25px 30px;
    background: var(--white);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-black);
    margin: 0;
}

.faq-toggle {
    width: 30px;
    height: 30px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-toggle svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 30px 25px;
}

.faq-answer-content p {
    font-size: 15px;
    color: var(--text-light-gray);
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 992px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }
    
    .contact-info-card,
    .contact-form-card {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 50px 0;
    }
    
    .contact-info-card,
    .contact-form-card {
        padding: 30px;
    }
    
    .contact-info-card h2,
    .contact-form-card h2 {
        font-size: 26px;
    }
    
    .info-item {
        flex-direction: column;
        text-align: center;
    }
    
    .info-icon {
        margin: 0 auto;
    }
    
    .map-container {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .contact-info-card,
    .contact-form-card {
        padding: 25px;
    }
    
    .map-container {
        height: 300px;
    }
}

