/* ============================================================
   VISIT.CSS — Info cards, transport, map, FAQ, tips
   ============================================================ */

/* ======================== INFO GRID ======================== */
.info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.info-card {
    background: var(--cream);
    border-radius: var(--radius);
    padding: 28px 22px;
    text-align: center;
    transition: all var(--transition);
    border: 1px solid transparent;
}

.info-card:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.info-icon {
    font-size: 2.2rem;
    display: block;
    margin-bottom: 12px;
}

.info-card h3 {
    font-size: 1rem;
    color: var(--maroon);
    margin-bottom: 8px;
}

.info-card p {
    font-size: 0.88rem;
    color: #555;
    margin-bottom: 4px;
}

/* ======================== TIPS BOX ======================== */
.tips-box {
    background: linear-gradient(135deg, #fff5e0, #fffbf2);
    border: 2px solid var(--gold);
    border-radius: var(--radius);
    padding: 32px;
    margin-bottom: 48px;
}

.tips-box h3 {
    font-size: 1.3rem;
    color: var(--maroon);
    margin-bottom: 16px;
}

.tips-box li {
    padding: 6px 0 6px 24px;
    position: relative;
    font-size: 0.92rem;
    color: #444;
}

.tips-box li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--saffron);
    font-weight: 700;
}

/* ======================== FAQ ======================== */
.faq-section {
    margin-bottom: 60px;
}

.faq-section h3 {
    font-size: 1.4rem;
    color: var(--maroon);
    text-align: center;
    margin-bottom: 28px;
}

.faq-item {
    border: 1px solid #e0e0e0;
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color var(--transition);
}

.faq-item:hover {
    border-color: var(--gold);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 22px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--dark);
    text-align: left;
    background: #fafafa;
    gap: 16px;
    transition: all var(--transition);
}

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

.faq-toggle {
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--saffron);
    flex-shrink: 0;
    transition: transform var(--transition);
}

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

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

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

.faq-answer p {
    padding: 0 22px 18px;
    font-size: 0.92rem;
    color: #555;
    line-height: 1.7;
}

/* ======================== TRANSPORT ======================== */
.transport-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 48px;
}

.transport-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 28px;
    box-shadow: var(--shadow-card);
    border-top: 4px solid var(--saffron);
    transition: all var(--transition);
}

.transport-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.transport-icon {
    font-size: 2.2rem;
    display: block;
    margin-bottom: 14px;
}

.transport-card h3 {
    font-size: 1.2rem;
    color: var(--maroon);
    margin-bottom: 12px;
}

.transport-card p {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 12px;
}

.transport-card ul {
    margin-bottom: 12px;
}

.transport-card li {
    padding: 4px 0 4px 18px;
    font-size: 0.88rem;
    color: #444;
    position: relative;
}

.transport-card li::before {
    content: '\2192';
    position: absolute;
    left: 0;
    color: var(--saffron);
    font-weight: 600;
}

/* ======================== DISTANCE TABLE ======================== */
.distance-table-wrapper {
    margin-bottom: 48px;
}

.distance-table-wrapper h3 {
    font-size: 1.3rem;
    color: var(--maroon);
    text-align: center;
    margin-bottom: 20px;
}

.distance-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.distance-table th {
    background: var(--maroon);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 14px 20px;
    text-align: left;
    font-size: 0.92rem;
}

.distance-table td {
    padding: 12px 20px;
    font-size: 0.9rem;
    color: #444;
    border-bottom: 1px solid #eee;
}

.distance-table tbody tr:hover {
    background: var(--cream);
}

.distance-table tbody tr:last-child td {
    border-bottom: none;
}

/* ======================== MAP ======================== */
.map-container {
    margin-bottom: 48px;
}

.map-container h3 {
    font-size: 1.3rem;
    color: var(--maroon);
    text-align: center;
    margin-bottom: 20px;
}

.map-container iframe {
    box-shadow: var(--shadow);
    border-radius: var(--radius);
}

/* ======================== CONTACT ======================== */
.contact-section {
    text-align: center;
    padding: 40px;
    background: var(--cream);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.contact-section h3 {
    font-size: 1.4rem;
    color: var(--maroon);
    margin-bottom: 16px;
}

.contact-section p {
    font-size: 0.95rem;
    color: #444;
    margin-bottom: 8px;
}

.contact-section a {
    color: var(--saffron);
    font-weight: 600;
}

.contact-section a:hover {
    color: var(--maroon);
}
