.faq-section {
    background: var(--bg);
    padding: 72px 0 80px;
    position: relative;
    overflow: hidden;
}

.faq-header {
    text-align: center;
    margin-bottom: 48px;
}

.faq-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 14px;
}


.location-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow .2s, transform .2s;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 600;
    color: var(--text);
}

.badge-category {
    display: inline-block;
    padding: 5px 16px;
    background: rgba(11, 139, 148, .1);
    color: var(--teal);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-header.text-center {
    margin-bottom: 32px;
}

.premium-tabs {
    border-bottom: 2px solid var(--border);
    flex-wrap: wrap;
    gap: 16px;

}

.card-img-container {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.card-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.hero-title h1 {
    /* font-family: 'Playfair Display', serif; */
    font-size: clamp(22px, 3.5vw, 38px);
    font-weight: 700;
    color: #fff;
    letter-spacing: .02em;
    text-align: center;
}

/* hover container pe lagao */
.card-img-container:hover img {
    transform: scale(1.05);
}

.premium-tabs .nav-link.active {
    color: var(--white);
    background: var(--teal);
    border-radius: 4px 4px 5px 5px;
    border-bottom-color: var(--teal);
}

.premium-tabs .nav-link {
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 500;
    color: var(--muted);
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    border-radius: 5px 5px 5px 5px;
    transition: all .2s;
    background: none;
}

.faq-eyebrow::before,
.faq-eyebrow::after {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--teal);
    opacity: .5;
}

.faq-header h2 {
    /* font-family: 'Playfair Display', serif; */
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 700;
    color: var(--text);
    line-height: 1.2;
    margin-bottom: 14px;
}

.faq-header h2 span {
    color: var(--gold);
    font-style: italic;
}

.faq-header p {
    font-size: 15px;
    color: var(--muted);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.75;
}

.faq-divider {
    width: 56px;
    height: 2px;
    background: linear-gradient(to right, var(--gold), var(--teal));
    margin: 18px auto 0;
    border-radius: 2px;
}

.faq-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.faq-tab-btn {
    padding: 9px 22px;
    border-radius: 30px;
    border: 1.5px solid var(--border);
    background: var(--white);
    color: var(--muted);
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all .22s ease;
}

.faq-tab-btn:hover {
    border-color: var(--teal);
    color: var(--teal);
}

.faq-tab-btn.active {
    background: var(--teal);
    border-color: var(--teal);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(11, 139, 148, .25);
}

.faq-wrap {
    max-width: 820px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: box-shadow .25s, border-color .25s;
}

.faq-item:hover {
    box-shadow: 0 6px 28px rgba(0, 0, 0, .07);
}

.faq-item.faq-open {
    border-color: rgba(11, 139, 148, .35);
    box-shadow: 0 8px 32px rgba(11, 139, 148, .1);
}

/* hidden-faq: used by view-more logic (display:none overrides) */
.faq-item.hidden-faq {
    display: none !important;
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-family: 'Jost', sans-serif;
    transition: background .18s;
}

.faq-question:hover {
    background: rgba(11, 139, 148, .03);
}

.faq-num {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: var(--bg);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    color: var(--muted);
    flex-shrink: 0;
    transition: all .22s;
}

.faq-item.faq-open .faq-num {
    background: var(--teal);
    border-color: var(--teal);
    color: var(--white);
}

.faq-item.open .faq-num {
    background: var(--teal);
    border-color: var(--teal);
    color: var(--white);
}

.faq-q-text {
    flex: 1;
    font-size: 15.5px;
    font-weight: 500;
    color: var(--text);
    line-height: 1.45;
}

.faq-item.open .faq-q-text {
    color: var(--teal);
}

.faq-item.faq-open .faq-q-text {
    color: var(--teal);
}

.faq-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--muted);
    font-size: 13px;
    transition: all .3s ease;
}

.faq-item.open .faq-icon {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .38s cubic-bezier(.4, 0, .2, 1);
}

.faq-answer-inner {
    padding: 0 24px 22px 74px;
    font-size: 14.5px;
    color: var(--muted);
    line-height: 1.78;
    font-weight: 300;
}

.faq-answer-inner strong {
    color: var(--text);
    font-weight: 500;
}

.faq-answer-inner a {
    color: var(--teal);
    text-decoration: none;
    font-weight: 500;
}

.faq-answer-inner a:hover {
    color: var(--teal-dk);
    text-decoration: underline;
}

.faq-answer-inner hr {
    border: none;
    border-top: 1px solid var(--border);
    margin: 12px 0;
}

.answer-tag {
    display: inline-block;
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    margin-right: 6px;
    margin-top: 8px;
}

.tag-teal {
    background: rgba(11, 139, 148, .1);
    color: var(--teal);
}

.tag-gold {
    background: rgba(181, 154, 93, .1);
    color: var(--gold-dk);
}

/* ── FAQ VIEW MORE ── */
.faq-view-more-wrap {
    text-align: center;
    margin-top: 20px;
}

.faq-view-btn {
    background-color: #0b3938;
    color: #fff;
    border: none;
    padding: 10px 22px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.faq-view-btn:hover {
    background-color: #092f2e;
}

@media screen and (max-width: 968px) {
    .faq-section {
        padding: 0px 0 48px;
    }
}

@media screen and (max-width: 767px) {
    #coconut-coast-section {
        padding: 30px 0;
    }

    .amenities-grid {
        display: block;
        margin-bottom: 30px;
    }

    .booking-widget {
        margin: 30px 11px;
    }

    .breadcrumb-bar {

        padding: 10px;
    }

    .bc-left {
        display: flex;
        align-items: center;
        gap: 17px;
        font-size: 13px;
        color: var(--muted);
        margin-bottom: 10px;
    }

    .prop-tab-btn {
        padding: 11px 22px;
        font-family: 'Jost', sans-serif;
        font-size: 13.5px;
        font-weight: 500;
        border: none;
        background: none;
        color: var(--muted);
        cursor: pointer;
        border-bottom: 2px solid transparent;
        margin-bottom: -2px;
        transition: all .2s;
        letter-spacing: .04em;
        border: 1.5px solid #098792;
        border-radius: 6px;
        margin: 5px;
        width: 44%;
    }



    .faq-section {
        background: var(--bg);
        padding: 0px 0 48px;
        position: relative;
        overflow: hidden;
    }
}

@media screen and (max-width: 567px) {
    .faq-section {
        padding: 0;
        padding-bottom: 30px;
    }
}

/* Inline Styles Replacement */
.text-center {
    text-align: center;
}

.video-desc {
    margin-top: 14px;
    font-size: 13px;
    color: var(--muted);
    text-align: center;
}

.video-desc i {
    color: var(--teal);
}

.calendar-info {
    font-size: 13.5px;
    color: var(--muted);
    margin-bottom: 18px;
}

.legend-dot-teal {
    background: var(--teal);
}

.legend-dot-range {
    background: rgba(11, 139, 148, .15);
}

.legend-dot-na {
    background: #e2e8f0;
}

.reviews-meta {
    font-size: 12px;
    color: rgba(255, 255, 255, .75);
}

.contact-owner-title {
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 10px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.contact-info-widget i {
    color: var(--teal);
}

.widget-note-mt {
    margin-top: 14px;
}

.widget-note-mt i {
    color: var(--gold);
}

.mb-0 {
    margin-bottom: 0 !important;
}

.h-125 {
    max-height: 125px;
}

.d-ib {
    display: inline-block;
}

.d-none {
    display: none !important;
}