.contact-cards-grid {
    display: grid;
    /* min(100%, 300px) so a card never forces a track wider than the screen
       (prevents horizontal scroll on <300px phones). */
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.contact-card {
    padding: 35px 30px;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-turquoise);
}

.contact-card-icon {
    width: 64px;
    height: 64px;
    background: var(--color-turquoise-light);
    color: var(--color-turquoise-dark);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    border: 1px solid rgba(20, 184, 166, 0.2);
    box-shadow: 0 4px 12px rgba(45, 212, 191, 0.15);
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.contact-card:hover .contact-card-icon {
    transform: scale(1.1) translateY(-3px);
    background: var(--color-turquoise);
    color: var(--color-white);
    box-shadow: 0 10px 20px -5px rgba(20, 184, 166, 0.4);
    border-color: var(--color-turquoise);
}

.contact-card h3 {
    font-size: 1.35rem;
    color: var(--color-text);
    margin: 0;
    font-weight: 600;
}

.contact-card p, .contact-card a {
    font-size: 1.05rem;
    color: var(--color-text-light);
    margin: 0;
    line-height: 1.6;
    text-decoration: none;
}

.contact-card a:hover {
    color: var(--color-turquoise-dark);
    text-decoration: underline;
}

.booking-note {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 6px;
    font-size: 0.85rem;
    color: var(--color-turquoise-dark);
    font-weight: 600;
    background: var(--color-turquoise-light);
    padding: 6px 14px;
    border-radius: 100px;
    letter-spacing: 0.3px;
    border: 1px solid rgba(20, 184, 166, 0.2);
}

/* =========================================
   UNIFIED CONTACT SECTIONS
   ========================================= */
.contact-section {
    margin-bottom: 80px;
}

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

.section-header h2 {
    font-size: 2.3rem;
    color: var(--color-text);
    margin-bottom: 12px;
    font-weight: 700;
}

.section-header p {
    font-size: 1.15rem;
    color: var(--color-text-light);
}

/* =========================================
   OPERATING HOURS SECTION
   ========================================= */
.hours-container {
    max-width: 850px;
    margin: 0 auto;
    padding: 35px 40px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-sm);
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
    gap: 16px 50px;
    width: 100%;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 12px;
    border-bottom: 1px dashed #cbd5e1;
    font-size: 1.08rem;
}

.hours-day {
    font-weight: 600;
    color: var(--color-text);
}

.hours-time {
    color: var(--color-turquoise-dark);
    font-weight: 500;
}

/* =========================================
   FAQ SECTION IN CONTACT
   ========================================= */
.faq-container {
    max-width: 850px;
    margin: 0 auto;
}

.faq-item {
    background: var(--color-white);
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all 0.2s ease;
}

.faq-item:hover {
    border-color: var(--color-turquoise);
    box-shadow: var(--shadow-md);
}

.faq-item summary {
    padding: 22px 25px;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--color-text);
    cursor: pointer;
    position: relative;
    list-style: none;
    outline: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--color-turquoise);
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    content: '−';
    transform: translateY(-50%);
}

.faq-content {
    padding: 0 25px 25px;
    color: var(--color-text-light);
    border-top: 1px solid #f1f5f9;
    margin-top: 5px;
    padding-top: 18px;
    font-size: 1.05rem;
    line-height: 1.7;
    animation: fadeIn 0.3s ease-in-out;
}

/* =========================================
   HOW TO FIND US (MAPS)
   ========================================= */
.map-container {
    width: 100%;
    height: 480px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 6px solid var(--color-white);
    background: #e2e8f0;
}

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