/* Contact Section Layout */
.contact-section {
    padding: 60px 0;
    background: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 80px;
}

@media (min-width: 992px) {
    .contact-grid {
        grid-template-columns: 7fr 5fr;
    }
}

/* Info Blocks */
.contact-block-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-block-title i {
    color: var(--primary-color);
}

.info-items-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 12px;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.info-item:hover {
    background: #fff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    border-color: #eee;
}

.info-icon {
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
}

.info-text h6 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.info-text p, .info-text a {
    font-size: 14px;
    color: #666;
    text-decoration: none;
}

/* Contact Form */
.contact-form-block {
    padding-top: 20px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-row input, .form-row textarea {
    width: 100%;
    padding: 12px 18px;
    border: 1px solid #eee;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s;
    background: #fcfcfc;
}

.form-row input:focus, .form-row textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(201, 33, 39, 0.05);
}

.btn-send-message {
    padding: 14px 30px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s;
}

.btn-send-message:hover {
    background: var(--hover-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(201, 33, 39, 0.2);
}

/* Map Card */
.contact-right-col {
    position: sticky;
    top: 30px;
    height: fit-content;
}

.map-card {
    border-radius: 16px;
    overflow: hidden;
    height: 500px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
}

.map-card iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* FAQ Accordion Section */
.faq-accordion-section {
    padding-top: 40px;
    border-top: 1px solid #f0f0f0;
}

.faq-main-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 10px;
}

.faq-subtitle {
    text-align: center;
    color: #999;
    margin-bottom: 50px;
}

.accordion-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-question {
    padding: 20px 25px;
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    color: var(--text-dark);
    transition: all 0.3s;
}

.faq-question i {
    font-size: 12px;
    color: #ccc;
    transition: transform 0.3s;
}

.faq-item.active {
    border-color: var(--primary-color);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.faq-item.active .faq-question {
    color: var(--primary-color);
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
    color: var(--primary-color);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0, 1, 0, 1);
    background: #fdfdfd;
}

.faq-item.active .faq-answer {
    padding: 0 25px 25px;
    max-height: 1000px;
    transition: all 0.4s cubic-bezier(1, 0, 1, 0);
}

.faq-answer p {
    margin: 0;
    color: #666;
    line-height: 1.6;
    font-size: 15px;
}