/* ===== FORMS PAGE STYLES ===== */

.form-section {
    padding: 60px 0;
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: var(--color-white);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-md);
    padding: 40px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

.form-message {
    display: none;
    padding: 15px 20px;
    border-radius: var(--radius-btn);
    margin-top: 20px;
    font-family: var(--font-title);
    font-size: 15px;
    font-weight: 600;
}

.form-message.success {
    background: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.form-message.error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* Contact page layout */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-info-card {
    background: var(--color-heading);
    color: var(--color-white);
    border-radius: var(--radius-card);
    padding: 40px;
}

.contact-info-card h2 {
    color: var(--color-white);
    margin-bottom: 20px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-info-item svg {
    width: 24px;
    height: 24px;
    fill: var(--color-primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-info-item h4 {
    color: var(--color-white);
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 4px;
}

.contact-info-item p,
.contact-info-item a {
    color: rgba(255,255,255,0.75);
    font-size: 15px;
}

.contact-info-item a:hover {
    color: var(--color-primary);
}

.contact-map {
    width: 100%;
    height: 300px;
    border-radius: var(--radius-card);
    overflow: hidden;
    margin-top: 30px;
}

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

/* Customize tour page */
.customize-hero-img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: var(--radius-card);
    margin-bottom: 30px;
}

.customize-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
}

.customize-intro h2 {
    margin-bottom: 15px;
}

.customize-intro p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
}

/* FAQ page styles */
.faq-section {
    padding: 60px 0;
}

.faq-category {
    margin-bottom: 40px;
}

.faq-category-title {
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--color-heading);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--color-primary);
}

.faq-item {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-btn);
    margin-bottom: 10px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    cursor: pointer;
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 16px;
    color: var(--color-heading);
    background: var(--color-white);
    transition: background var(--transition);
    gap: 15px;
}

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

.faq-question::after {
    content: '+';
    font-size: 22px;
    font-weight: 300;
    color: var(--color-primary);
    flex-shrink: 0;
    transition: transform var(--transition);
}

.faq-item.active .faq-question::after {
    content: '−';
}

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

.faq-answer-inner {
    padding: 0 20px 20px;
    color: var(--color-text-muted);
    font-size: 16px;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .form-wrapper {
        padding: 25px;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .contact-info-card {
        padding: 25px;
    }
}
