/* === sub-page-hero === */
    .sub-hero-strip {
        height: 180px; 
        background-size: cover;
        background-position: center;
        position: relative;
        margin-top: 5px; 
        border-bottom: 5px solid #1a73e8;
    }
    .sub-hero-overlay {
        position: absolute; top: 0; left: 0; width: 100%; height: 100%;
        background: rgba(0,0,0,0.6);
        display: flex; align-items: center; justify-content: center;
    }
    .sub-hero-content { text-align: center; color: white; max-width: 900px; padding: 0 20px; }
    
    .sub-hero-title { 
        font-size: 2.5rem; font-weight: 900; letter-spacing: 2px; margin: 0; 
        text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
        text-transform: uppercase;
    }

    .sub-hero-divider { 
        width: 200px; height: 4px; background: #1a73e8; 
        margin: 10px auto; border-radius: 2px; 
    }

    .sub-hero-subtitle { 
        font-size: 1.1rem; opacity: 0.9; font-weight: 400;
        text-shadow: 1px 1px 5px rgba(0,0,0,0.8);
        max-width: 750px; margin: 0 auto;
    }

    @media (max-width: 768px) {
        .sub-hero-strip { height: 160px; margin-top: 60px; }
        .sub-hero-title { font-size: 1.8rem; }
        .sub-hero-subtitle { font-size: 0.9rem; }
    }

/* === why_strip === */
.why-strip {
    background: var(--primary);
    padding: 0;
}
.why-strip-inner {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
}
.why-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px 20px;
    border-right: 1px solid rgba(255,255,255,0.1);
    gap: 8px;
}
.why-item:last-child { border-right: none; }
.why-icon {
    width: 42px; height: 42px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2px;
}
.why-icon i { color: var(--accent); font-size: 1rem; }
.why-label { font-size: 0.78rem; font-weight: 800; color: #ffffff; text-transform: uppercase; letter-spacing: 0.5px; margin: 0; }
.why-sub   { font-size: 0.72rem; color: rgba(255,255,255,0.6); margin: 0; }

@media (max-width: 700px) {
    .why-strip-inner { flex-wrap: wrap; }
    .why-item { flex: 1 1 50%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
    .why-item:nth-child(odd)  { border-right: 1px solid rgba(255,255,255,0.1); }
    .why-item:last-child { border-bottom: none; }
}

/* === room-cards === */
/* --- ROOM SECTION WRAPPER --- */
.room-section {
    background: #f8fafc;
    padding: clamp(40px, 6vw, 80px) 20px;
}
.room-section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto clamp(30px, 4vw, 50px);
}
.room-section-eyebrow {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 10px;
}
.room-section-title {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 900;
    color: var(--primary);
    margin: 0 0 12px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}
.room-section-sub {
    font-size: 0.95rem;
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

/* --- GRID --- */
.room-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- CARD --- */
.room-card {
    background: white;
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid #e8edf2;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.room-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}

/* Image */
.room-image-container {
    height: 230px;
    overflow: hidden;
    position: relative;
    background: #e2e8f0;
}
.room-image-container img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}
.room-card:hover .room-image-container img { transform: scale(1.04); }

/* Amenity overlay */
.amenity-overlay {
    position: absolute; inset: 0;
    background: rgba(15,23,42,0.92);
    color: white;
    padding: 24px;
    transform: translateY(101%);
    transition: 0.35s cubic-bezier(0.4,0,0.2,1);
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.room-card:hover .amenity-overlay { transform: translateY(0); }
.overlay-list { list-style: none; padding: 0; margin: 0; }
.overlay-list li { margin-bottom: 10px; font-size: 0.88rem; display: flex; align-items: center; gap: 10px; }
.overlay-list i { color: var(--accent); width: 16px; text-align: center; }

/* Card body */
.room-content { padding: 22px 22px 16px; flex-grow: 1; }
.room-name { font-size: 1.25rem; font-weight: 800; color: #1e293b; margin: 0 0 7px; letter-spacing: -0.3px; }
.room-tagline { color: #64748b; font-size: 0.88rem; line-height: 1.55; margin: 0; }
.room-meta {
    display: flex;
    gap: 16px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid #f1f5f9;
    font-size: 0.72rem;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.room-meta i { color: var(--accent); margin-right: 4px; }

/* CTA */
.btn-room-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--primary);
    color: #fff !important;
    text-decoration: none;
    padding: 16px 20px;
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: background 0.2s;
    margin: 0 22px 22px;
    border-radius: 8px;
}
.btn-room-action:hover { background: var(--accent); }
.btn-room-action i { font-size: 0.85rem; }

@media (max-width: 480px) {
    .room-grid { gap: 16px; }
    .room-image-container { height: 200px; }
    .room-content { padding: 18px 18px 12px; }
    .btn-room-action { margin: 0 18px 18px; padding: 14px; }
}

/* === room-details === */
    .details-page-bg { 
        background: #f1f5f9; 
        padding: 60px 20px;
        min-height: 80vh;
    }
    .details-card {
        max-width: 1200px;
        margin: 0 auto;
        background: #ffffff;
        border-radius: 24px;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
        overflow: hidden;
        border: 1px solid #e2e8f0;
    }
    .back-nav {
        display: flex;
        align-items: center;
        gap: 8px;
        text-decoration: none;
        color: #64748b;
        font-weight: 700;
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 30px;
        transition: 0.2s;
        width: fit-content;
    }
    .back-nav:hover { color: var(--accent); transform: translateX(-5px); }
    
    .spec-pill {
        display: flex;
        align-items: center;
        gap: 12px;
        background: #f8fafc;
        padding: 15px 20px;
        border-radius: 12px;
        border: 1px solid #e2e8f0;
    }
    
    @media (max-width: 992px) {
        .details-grid { grid-template-columns: 1fr !important; }
        .details-card { border-radius: 12px; }
        .main-pane { border-right: none !important; border-bottom: 1px solid #f1f5f9; }
    }

/* === events === */
    /* Styles now inline in events.php (v10.0) */

/* === attractions === */
    /* Styles now inline in attractions.php (v8.0) */

/* === amenities === */
    .group-header { display: flex; align-items: center; gap: 20px; margin-bottom: 30px; }
    .group-header h2 { font-size: 1.5rem; color: var(--primary); text-transform: uppercase; letter-spacing: 1px; margin: 0; }
    .header-line { height: 2px; flex-grow: 1; background: #e2e8f0; border-radius: 2px; opacity: 0.5; }

    .amenity-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 20px; }

    .amenity-card { 
        background: #fff; border-radius: 16px; overflow: hidden; 
        box-shadow: 0 4px 15px rgba(0,0,0,0.05); border: 1px solid #f1f5f9; 
        transition: all 0.3s ease; position: relative;
    }
    
    .amenity-card.interactive { cursor: pointer; }
    
    .card-visual { height: 180px; position: relative; overflow: hidden; background: var(--primary); }
    .card-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }

    /* Interactive Overlay */
    .card-overlay { 
        position: absolute; top: 0; left: 0; width: 100%; height: 100%;
        background: rgba(15, 23, 42, 0.9); 
        color: #fff; display: flex; align-items: center; padding: 20px;
        transform: translateY(101%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 2;
    }
    .overlay-inner p { margin: 0; font-size: 0.9rem; line-height: 1.5; opacity: 0.9; }
    .overlay-tag { margin-top: 15px; font-size: 0.7rem; font-weight: 800; text-transform: uppercase; color: var(--accent); border-top: 1px solid rgba(255,255,255,0.1); padding-top: 10px; }

    .card-face { padding: 15px 20px; display: flex; align-items: center; gap: 12px; background: #fff; z-index: 3; position: relative; }
    .card-face i.fas, .card-face i.fab { color: var(--accent); font-size: 1.1rem; min-width: 20px; text-align: center; }
    .card-face h3 { margin: 0; font-size: 1rem; color: var(--primary); font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

    /* Hover/Active States for Interactive Cards Only */
    .amenity-card.interactive:hover { transform: translateY(-5px); box-shadow: 0 12px 25px rgba(0,0,0,0.1); }
    .amenity-card.interactive:hover .card-visual img { transform: scale(1.1); filter: blur(2px); }
    .amenity-card.interactive:hover .card-overlay,
    .amenity-card.interactive.active .card-overlay { transform: translateY(0); }

    @media (max-width: 768px) {
        .amenity-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
        .card-face h3 { font-size: 0.9rem; }
    }
    @media (max-width: 480px) {
        .amenity-grid { grid-template-columns: 1fr; }
    }

/* === dining === */
    /* Styles now inline in dining.php (v6.0) */

/* === gallery === */
    .gallery-wrap { max-width: 1200px; margin: 40px auto; padding: 0 20px; text-align: center; }
    
    /* Filter Buttons */
    .gallery-filters { margin-bottom: 40px; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
    .filter-btn { 
        padding: 8px 20px; border: 1px solid #ddd; background: white; border-radius: 5px; 
        cursor: pointer; font-weight: 600; font-size: 0.85rem; transition: 0.3s;
    }
    .filter-btn.active, .filter-btn:hover { background: var(--primary); color: white; border-color: var(--primary); }

    /* Uniform Grid */
    .gallery-grid { 
        display: grid; 
        grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr)); 
        gap: 16px; 
    }
    .gallery-card { 
        aspect-ratio: 3 / 2; /* Forces uniform size */
        overflow: hidden; border-radius: 10px; position: relative; 
        cursor: pointer; background: #eee; box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }
    .gallery-card img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
    .gallery-card:hover img { transform: scale(1.1); }

    /* The Modal (Lightbox) */
    #lightbox {
        display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
        background: rgba(0,0,0,0.9); z-index: 9999; justify-content: center; align-items: center;
        cursor: zoom-out;
    }
    #lightbox img { max-width: 90%; max-height: 85%; border-radius: 5px; box-shadow: 0 0 30px rgba(0,0,0,0.5); }

    @media (max-width: 600px) { .gallery-grid { grid-template-columns: 1fr; } }

/* === about_us === */
    .about-container {
        max-width: 1100px;
        margin: 60px auto;
        padding: 0 20px;
    }
    
    .about-content {
        background: white;
        padding: 50px;
        border-radius: 16px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        line-height: 1.8;
        font-size: 1.05rem;
        color: #334155;
    }
    
    .about-content h2 {
        color: var(--primary, #1a3c5a);
        margin-top: 40px;
        margin-bottom: 20px;
        font-size: 1.8rem;
        font-weight: 800;
    }
    
    .about-content h3 {
        color: var(--accent, #b99a6c);
        margin-top: 30px;
        margin-bottom: 15px;
        font-size: 1.4rem;
        font-weight: 700;
    }
    
    .about-content p {
        margin-bottom: 20px;
    }
    
    .about-content ul, .about-content ol {
        margin: 20px 0;
        padding-left: 30px;
    }
    
    .about-content li {
        margin-bottom: 10px;
    }
    
    .about-content img {
        max-width: 100%;
        height: auto;
        border-radius: 12px;
        margin: 30px 0;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }
    
    /* Review/Testimonial Styling (if included in content) */
    .about-content .review {
        background: #f8fafc;
        padding: 25px;
        border-left: 4px solid var(--accent, #b99a6c);
        border-radius: 8px;
        margin: 30px 0;
    }
    
    .about-content .review h4 {
        margin: 0 0 10px 0;
        color: var(--primary, #1a3c5a);
        font-size: 1.1rem;
    }
    
    .about-content .rating {
        color: #f1c40f;
        font-size: 1.2rem;
        margin: 5px 0;
    }
    
    @media (max-width: 768px) {
        .about-container { margin: 30px auto; }
        .about-content {
            padding: 24px 18px;
        }
        
        .about-content h2 {
            font-size: 1.5rem;
            margin-top: 28px;
        }
        
        .about-content h3 {
            font-size: 1.2rem;
        }
    }

/* === reviews === */
    .reviews-container {
        max-width: 1200px;
        margin: 60px auto;
        padding: 0 20px;
    }
    
    .reviews-intro {
        text-align: center;
        max-width: 800px;
        margin: 0 auto 50px;
    }
    
    .reviews-intro h2 {
        color: var(--primary, #1a3c5a);
        font-size: 2rem;
        font-weight: 800;
        margin-bottom: 15px;
    }
    
    .reviews-intro p {
        color: #64748b;
        font-size: 1.1rem;
        line-height: 1.6;
    }
    
    .reviews-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(min(350px, 100%), 1fr));
        gap: 30px;
        margin-top: 40px;
    }
    
    .review-card {
        background: white;
        padding: 35px;
        border-radius: 16px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        transition: transform 0.3s, box-shadow 0.3s;
        position: relative;
    }
    
    .review-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    }
    
    .review-card::before {
        content: '"';
        position: absolute;
        top: 15px;
        left: 20px;
        font-size: 4rem;
        color: var(--accent, #b99a6c);
        opacity: 0.2;
        font-family: Georgia, serif;
        line-height: 1;
    }
    
    .review-rating {
        color: #f1c40f;
        font-size: 1.3rem;
        margin-bottom: 15px;
        letter-spacing: 2px;
    }
    
    .review-text {
        color: #475569;
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 20px;
        font-style: italic;
    }
    
    .review-author {
        border-top: 2px solid #f1f5f9;
        padding-top: 20px;
        margin-top: 20px;
    }
    
    .review-author h4 {
        color: var(--primary, #1a3c5a);
        font-size: 1.1rem;
        font-weight: 700;
        margin: 0 0 5px 0;
    }
    
    .review-author p {
        color: #94a3b8;
        font-size: 0.9rem;
        margin: 0;
    }
    
    .review-source {
        display: inline-block;
        background: var(--accent, #b99a6c);
        color: white;
        padding: 4px 12px;
        border-radius: 20px;
        font-size: 0.75rem;
        font-weight: 700;
        text-transform: uppercase;
        margin-top: 10px;
        letter-spacing: 0.5px;
    }
    
    .reviews-content {
        margin-top: 50px;
        background: white;
        padding: 40px;
        border-radius: 16px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    }
    
    .reviews-content h3 {
        color: var(--primary, #1a3c5a);
        font-size: 1.5rem;
        font-weight: 800;
        margin-bottom: 20px;
    }
    
    .reviews-content p {
        color: #475569;
        line-height: 1.8;
        font-size: 1.05rem;
    }
    
    @media (max-width: 768px) {
        .reviews-grid {
            grid-template-columns: 1fr;
        }
        
        .review-card {
            padding: 25px;
        }
        
        .reviews-intro h2 {
            font-size: 1.6rem;
        }
    }

/* === faq === */
    /* FAQ SEARCH */
    .faq-search-wrap { margin-bottom: 25px; }
    .faq-search { width: 100%; padding: 14px 18px 14px 46px; border: 2px solid #e2e8f0; border-radius: 10px; font-size: 1rem; outline: none; transition: 0.2s; background: white; }
    .faq-search:focus { border-color: var(--accent); }
    .faq-search-icon { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); color: #94a3b8; }

    /* FAQ LAYOUT */
    .faq-layout { display: grid; grid-template-columns: 220px 1fr; gap: 30px; max-width: 1100px; margin: 0 auto; padding: 40px 20px 80px; }
    @media (max-width: 768px) { .faq-layout { grid-template-columns: 1fr; } .faq-sidebar { display: none; } }

    /* SIDEBAR */
    .faq-sidebar { position: sticky; top: calc(var(--header-h) + 80px); height: fit-content; }
    .faq-sidebar nav { background: white; border-radius: 12px; border: 1px solid #e8edf2; overflow: hidden; }
    .faq-sidebar-title { padding: 14px 18px; font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; color: #94a3b8; border-bottom: 1px solid #f1f5f9; }
    .faq-cat-link { display: block; padding: 12px 18px; font-size: 0.88rem; font-weight: 600; color: #475569; text-decoration: none; border-left: 3px solid transparent; transition: 0.2s; border-bottom: 1px solid #f8fafc; }
    .faq-cat-link:hover { color: var(--primary); background: #f8fafc; }
    .faq-cat-link.active { color: var(--accent); border-left-color: var(--accent); background: #fefaf5; }

    /* MAIN CONTENT */
    .faq-main { }
    .faq-category-section { margin-bottom: 50px; scroll-margin-top: calc(var(--header-h) + 30px); }
    .category-title {
        color: var(--primary); font-size: 1.1rem; font-weight: 800;
        text-transform: uppercase; letter-spacing: 1px;
        margin-bottom: 20px; padding-bottom: 12px;
        border-bottom: 2px solid #f1f5f9;
        display: flex; align-items: center; gap: 10px;
    }
    .category-title i { color: var(--accent); font-size: 0.9rem; }
    .cat-count { font-size: 0.7rem; background: #f1f5f9; color: #94a3b8; padding: 2px 8px; border-radius: 10px; font-weight: 700; margin-left: auto; }

    /* CARDS instead of accordion */
    .faq-card { background: white; border-radius: 12px; border: 1px solid #e8edf2; margin-bottom: 12px; overflow: hidden; transition: box-shadow 0.2s; }
    .faq-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
    .faq-question { width: 100%; padding: 18px 20px; background: none; border: none; text-align: left; font-size: 0.98rem; font-weight: 700; color: var(--primary); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 15px; }
    .faq-question:hover { color: var(--accent); }
    .faq-question i { transition: 0.3s; color: #cbd5e1; flex-shrink: 0; }
    .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0,1,0,1); }
    .faq-answer-inner { padding: 0 20px 20px; color: #475569; line-height: 1.8; font-size: 0.95rem; border-top: 1px solid #f1f5f9; }
    .faq-card.active .faq-answer { max-height: 2000px; transition: max-height 0.5s ease-in; }
    .faq-card.active .faq-question { color: var(--accent); }
    .faq-card.active .faq-question i { transform: rotate(180deg); color: var(--accent); }

    /* HERO */
    .faq-hero { 
        height: 180px; 
        display: flex; 
        align-items: center; 
        justify-content: center; 
        position: relative;
        background-color: var(--primary);
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover !important;
    }
    .faq-hero::before {
        content: ""; position: absolute; top:0; left:0; width:100%; height:100%;
        background: rgba(0,0,0,0.5); z-index: 1;
    }
    .faq-hero h1 { 
        position: relative; z-index: 2; color: #fff; font-size: 2.5rem;
        text-transform: uppercase; letter-spacing: 4px; font-weight: 900; 
        text-shadow: 2px 2px 15px rgba(0,0,0,0.8); text-align: center; margin:0;
    }

    /* FAQ CONTAINER & OVERLAP */
    .faq-container { max-width: 950px; margin: -30px auto 80px; padding: 0 20px; position: relative; z-index: 10; }
    .faq-wrapper { 
        background: #fff; padding: 50px; border-radius: 12px; 
        box-shadow: 0 20px 40px rgba(0,0,0,0.1); min-height: 60vh;
    }
    @media (max-width: 600px) {
        .faq-wrapper { padding: 24px 16px; }
        .faq-hero h1 { font-size: 1.6rem; letter-spacing: 2px; }
        .faq-container { margin-top: -20px; padding: 0 12px; }
    }
    
    .faq-category-section { margin-bottom: 45px; }
    .category-title { 
        color: var(--accent); 
        font-size: 1.3rem; 
        text-transform: uppercase; 
        letter-spacing: 1px; 
        margin-bottom: 25px; 
        border-bottom: 2px solid #f1f1f1;
        padding-bottom: 12px;
        font-weight: 800;
    }

    /* ACCORDION STYLING */
    .faq-item { border-bottom: 1px solid #f1f1f1; transition: 0.3s; }
    .faq-item:last-child { border-bottom: none; }
    
    .faq-question { 
        width: 100%; padding: 22px 10px; background: none; border: none; 
        text-align: left; font-size: 1.15rem; font-weight: 600; color: var(--primary); 
        cursor: pointer; display: flex; justify-content: space-between; align-items: center;
    }
    .faq-question:hover { color: var(--accent); }
    .faq-question i { transition: 0.4s; color: #cbd5e1; font-size: 0.9rem; }
    
    .faq-answer { 
        max-height: 0; overflow: hidden; transition: all 0.4s cubic-bezier(0, 1, 0, 1); 
        color: #475569; line-height: 1.8; 
    }
    .faq-answer-inner { padding: 0 10px 30px 10px; font-size: 1.08rem; }

    /* Active State */
    .faq-item.active { background-color: #fafafa; }
    .faq-item.active .faq-answer { max-height: 1000px; transition: all 0.4s cubic-bezier(1, 0, 1, 0); }
    .faq-item.active .faq-question { color: var(--accent); }
    .faq-item.active .faq-question i { transform: rotate(180deg); color: var(--accent); }

    .faq-footer { 
        text-align: center; margin-top: 50px; padding: 40px; 
        background: #fff8f0; border-radius: 15px; border: 1px solid #fee6d3;
    }
    .faq-footer h3 { color: var(--primary); margin-bottom: 10px; font-weight: 800; }
    .faq-footer p { color: #64748b; margin-bottom: 20px; }

/* === footer === */
    .site-footer { background: var(--primary); color: white; padding: 60px 20px 40px; margin-top: 0; font-family: 'Segoe UI', sans-serif; }
    .footer-container { max-width: 1100px; margin: 0 auto; display: grid; gap: 40px; }
    
    /* Responsive Grid */
    @media (min-width: 992px) { .footer-container { grid-template-columns: repeat(4, 1fr); } }
    @media (max-width: 991px) { .footer-container { grid-template-columns: 1fr 1fr; } }
    @media (max-width: 599px) { 
        .footer-container { grid-template-columns: 1fr; } 
        .footer-column { text-align: center !important; } /* Force Center on Mobile */
        .footer-links a { justify-content: center; } /* Centers the icons/text in links */
    }

    .footer-column { text-align: left; }
    .footer-h5 { color: var(--accent); text-transform: uppercase; margin-bottom: 20px; font-size: 1.1rem; letter-spacing: 1px; font-weight: bold;}
    .footer-h6 { color: #fff; text-transform: uppercase; margin-bottom: 20px; font-size: 0.85rem; letter-spacing: 2px; font-weight: bold;}
    
    .footer-links { list-style:none; padding:0; font-size:0.9rem; }
    .footer-links li { margin-bottom:4px; }
    .footer-links a { color: rgba(255,255,255,0.6); text-decoration: none; transition: 0.3s; display: inline-flex; align-items: center; padding: 8px 0; min-height: 44px; }
    .footer-links a:hover { color: var(--accent); padding-left: 5px; }

    /* HIGH VISIBILITY POLICY LINKS */
    .policy-link { 
        color: var(--accent) !important; 
        font-weight: 800 !important; 
        text-transform: uppercase; 
        font-size: 0.8rem; 
        letter-spacing: 0.5px;
        opacity: 1 !important;
    }
    .policy-link i { margin-right: 10px; font-size: 1rem; width: 20px; text-align: center; }
    .policy-link:hover { color: var(--accent) !important; filter: brightness(1.15); transform: scale(1.05); }

    .social-icons { display: flex; gap: 15px; margin-bottom: 15px; }
    @media (max-width: 599px) { .social-icons { justify-content: center; } }
    .social-icons a { color: rgba(255,255,255,0.6); font-size: 1.4rem; transition: 0.3s; }
    .social-icons a:hover { color: var(--accent); transform: translateY(-3px); }

    .copyright-bar { text-align: center; padding-top: 40px; margin-top: 40px; border-top: 1px solid rgba(255,255,255,0.05); font-size: 0.8rem; color: rgba(255,255,255,0.3); }
    .footer-timestamp { display: block; margin-top: 8px; font-size: 0.7rem; color: rgba(255,255,255,0.2); text-transform: uppercase; letter-spacing: 1px; }

