/* 
    Voyago Premium Stylesheet 
    - FAQ Page Redesign
*/

/* Core Variables */
:root {
    --bg-color: #F8F5F0; /* Creamy beige background */
    --surface-color: #ffffff;
    --accent-color: #5C1625; /* Dark Red */
    --accent-pale: #D4AF37; /* Gold */
    --text-primary: #2A2A2A;
    --text-secondary: #5A5A5A;
    --font-primary: 'Outfit', sans-serif;
    --font-heading: 'Playfair Display', serif;
}

/* Global Reset overrides for FAQ */
body {
    background-color: var(--bg-color);
    font-family: var(--font-primary);
    color: var(--text-primary);
}

.text-center { text-align: center; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â• HERO SECTION â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.faq-hero {
    position: relative;
    padding-top: 12rem;
    padding-bottom: 8rem;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.hero-bg-blur {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(77,21,32,.88) 0%,
        rgba(110,31,43,.65) 55%,
        rgba(26,16,16,.50) 100%
    );
}

.hero-container {
    position: relative;
    z-index: 2;
}

.hero-kicker {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-pale);
    margin-bottom: 1rem;
}

.faq-hero h1 {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

/* Floating Search Bar */
.search-container {
    position: relative;
    max-width: 600px;
    margin: 2rem auto 0;
    background: #fff;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    z-index: 3;
}

.search-icon {
    color: var(--accent-pale);
    font-size: 1.2rem;
    margin-left: 1rem;
}

.search-container input {
    width: 100%;
    border: none;
    padding: 1rem;
    font-size: 1rem;
    font-family: var(--font-primary);
    color: var(--text-primary);
    background: transparent;
    outline: none;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â• QUICK LINKS â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.faq-quick-links {
    position: relative;
    margin-top: -3rem; /* Overlap hero */
    z-index: 5;
    padding-bottom: 4rem;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
}

.quick-link-card {
    background: linear-gradient(135deg, #1f050b 0%, var(--accent-color) 100%);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    text-decoration: none;
    color: #fff;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(212, 175, 55, 0.15);
    position: relative;
    overflow: hidden;
}

.quick-link-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.quick-link-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(92, 22, 37, 0.4);
    border-color: rgba(212, 175, 55, 0.5);
}

.quick-link-card:hover::before {
    opacity: 1;
}

.quick-link-card .cat-icon {
    font-size: 2.8rem;
    color: var(--accent-pale);
    margin-bottom: 1.2rem;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.quick-link-card:hover .cat-icon {
    transform: scale(1.1);
}

.quick-link-card span {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
    letter-spacing: 1px;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â• MAIN LAYOUT & SIDEBAR â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.faq-main {
    padding: 4rem 0 6rem;
}

.faq-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 4rem;
}

.sidebar-sticky {
    position: sticky;
    top: 120px;
}

/* Sidebar Nav */
.faq-nav {
    margin-bottom: 2rem;
}
.faq-nav ul {
    list-style: none;
}
.faq-nav li {
    margin-bottom: 0.5rem;
}
.faq-nav a {
    display: block;
    padding: 1rem 1.5rem;
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    border-radius: 8px;
    background: rgba(255,255,255, 0.5);
    transition: all 0.3s ease;
}
.faq-nav a:hover,
.faq-nav a.active {
    background: var(--surface-color);
    color: var(--accent-color);
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

/* Sidebar Cards */
.sidebar-support-card,
.sidebar-award-card {
    background: var(--surface-color);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid rgba(92,22,37,0.05);
    text-align: center;
}

.sidebar-support-card h4 {
    font-family: var(--font-heading);
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}
.sidebar-support-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}
.support-contact {
    list-style: none;
    margin-bottom: 1.5rem;
    text-align: left;
}
.support-contact li {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-color);
}
.support-btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--accent-color);
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: background 0.3s ease;
    width: 100%;
}
.support-btn:hover {
    background: #4A121E;
}

.sidebar-award-card .award-icon {
    font-size: 2rem;
    color: var(--accent-pale);
    margin-bottom: 1rem;
}
.sidebar-award-card p {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
}

.sidebar-image-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 200px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.sidebar-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.sidebar-image-card:hover img {
    transform: scale(1.08);
}
.sidebar-image-card .img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0));
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    transition: background 0.3s ease;
}
.img-overlay span {
    color: #fff;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â• CONTENT AREA â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.faq-group {
    margin-bottom: 4rem;
}

.group-title {
    font-family: var(--font-heading);
    color: var(--accent-color);
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    position: relative;
    padding-top: 2rem;
}
.group-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-pale);
}
.group-desc {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

/* Accordion */
.accordion-item {
    background: var(--surface-color);
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    border: 1px solid rgba(0,0,0,0.05);
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.accordion-header:hover {
    padding-left: 2.5rem;
    color: var(--accent-color);
}

.accordion-icon {
    font-size: 1.2rem;
    color: var(--text-secondary);
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55), color 0.3s ease;
}

.accordion-header.active .accordion-icon {
    transform: rotate(45deg) scale(1.2);
    color: var(--accent-pale);
}

.accordion-header.active {
    color: var(--accent-color);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.accordion-content p {
    padding: 0 2rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â• FEATURES SECTION â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.faq-features {
    padding: 6rem 0;
    background: #fff;
}

.features-kicker {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--accent-pale);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.features-title {
    text-align: center;
    margin-bottom: 4rem;
}

.features-title .title-primary {
    display: block;
    font-family: var(--font-heading);
    font-size: 3.2rem;
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 0.8rem;
    line-height: 1.1;
}

.features-title .title-secondary {
    display: block;
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.feature-card {
    text-align: center;
    background: var(--bg-color);
    padding: 3rem 2rem;
    border-radius: 12px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--surface-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--accent-pale);
    font-size: 1.5rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.feature-card h3 {
    font-family: var(--font-heading);
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â• CTA BANNER â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.cta-banner {
    padding: 8rem 5%;
    position: relative;
    background: linear-gradient(135deg, #1f050b 0%, var(--accent-color) 100%);
    overflow: hidden;
    z-index: 1;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 60%;
    height: 150%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 60%);
    transform: rotate(30deg);
    z-index: -1;
}

.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -5%;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 60%);
    z-index: -1;
}

.cta-banner-inner {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 5rem 6rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    position: relative;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.cta-content h2 {
    font-family: var(--font-heading);
    color: #fff;
    font-size: 3.5rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
    line-height: 1.1;
}

.cta-content p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    line-height: 1.8;
}

.cta-action {
    position: relative;
    z-index: 2;
}

.gold-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, var(--accent-pale) 0%, #b89326 100%);
    color: #2a0a11;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 2px;
    white-space: nowrap;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.gold-btn:hover {
    background: linear-gradient(135deg, #EED17B 0%, var(--accent-pale) 100%);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â• SCROLL ANIMATIONS â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.fade-up.in-view {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â• RESPONSIVE â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@media (max-width: 1024px) {
    .faq-layout {
        grid-template-columns: 280px 1fr;
        gap: 2rem;
    }
    
    .quick-links-grid, .features-grid {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .faq-layout {
        grid-template-columns: 1fr;
    }
    
    .sidebar-sticky {
        position: static;
        margin-bottom: 3rem;
    }
    
    .quick-links-grid, .features-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-quick-links {
        padding: 0 5%;
    }
    
    .cta-banner-inner {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 3rem 2rem;
    }
    
    .faq-hero h1 {
        font-size: 3rem;
    }
    
    .accordion-header {
        padding: 1rem 1.2rem;
        font-size: 1rem;
    }
    
    .accordion-header:hover {
        padding-left: 1.5rem;
    }
    
    .accordion-content p {
        padding: 0 1.2rem 1rem;
    }
    
    .nav-links:not(.open), .nav-actions { display: none !important; }
    .hamburger { display: flex !important; }
    
    .nav-links.open {
        display: flex !important;
        flex-direction: column;
        position: fixed;
        top: 72px;
        left: 0;
        width: 100%;
        background: #F5EFE6;
        padding: 32px 32px 40px 32px !important;
        border-bottom: 1px solid #EDE5D8;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        gap: 8px;
        align-items: flex-start;
        z-index: 999;
        box-sizing: border-box !important;
    }
    .nav-links.open a {
        color: #1A1010;
        font-size: 15px;
        padding: 10px 16px;
        width: max-content;
        border-radius: 8px;
        box-sizing: border-box;
    }
    .nav-links.open a:hover,
    .nav-links.open a:active,
    .nav-links.open a.active {
        background: #EADCDA !important;
        color: #6E1F2B !important;
    }
    .nav-links.open a.active { font-weight: 600 !important; }
    
    .mobile-only {
        display: block !important;
        width: 100%;
        box-sizing: border-box;
    }
    .mobile-only:first-of-type {
        margin-top: 16px;
    }
    
    .nav-links.open .nav-btn-signin {
        text-align: center;
        border: 1px solid #6E1F2B;
        color: #6E1F2B !important;
        background: transparent !important;
        padding: 14px 16px;
        width: 100%;
        display: block;
        box-sizing: border-box;
        transition: all var(--transition, 0.3s);
    }
    .nav-links.open .nav-btn-signin:hover,
    .nav-links.open .nav-btn-signin:active {
        background: #EADCDA !important;
    }
    .nav-links.open .nav-btn-book {
        text-align: center;
        background: #6E1F2B !important;
        color: #FFFFFF !important;
        border: none;
        padding: 14px 16px;
        width: 100%;
        display: block;
        box-sizing: border-box;
        transition: all var(--transition, 0.3s);
    }
    .nav-links.open .nav-btn-book:hover,
    .nav-links.open .nav-btn-book:active {
        background: #5A1923 !important;
        transform: scale(0.98);
    }
}


/* --- EXACT HOME PAGE NAVBAR AND FOOTER OVERRIDES --- */
.navbar, .footer { font-family: 'Inter', system-ui, sans-serif !important; }
.navbar * { font-family: inherit; }
.footer * { font-family: inherit; }
.nav-links a { font-size: 14px !important; }
.footer-brand p { font-size: 13.5px !important; }
.footer-col h5 { font-size: 11px !important; font-family: 'Inter', system-ui, sans-serif !important; }
.footer-col ul a { font-size: 13.5px !important; }
.contact-list li a, .contact-list li span { font-size: 13.5px !important; }
.footer-hours strong { font-size: 11px !important; font-family: 'Inter', system-ui, sans-serif !important; }
.footer-hours span { font-size: 13px !important; }
.footer-bottom p { font-size: 12.5px !important; }
.footer-legal a { font-size: 12.5px !important; }

/* ─── NEW LOGO STYLING ─── */
.logo-brand {
  display: flex;
  align-items: center;
  height: 100%;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-img {
  height: 64px;
  width: 64px;
  display: block;
  object-fit: cover;
  border-radius: 50%;
  background: var(--white);
  padding: 6px;
  box-shadow:
      0 2px 4px rgba(0,0,0,.15),
      0 6px 12px rgba(0,0,0,.18),
      0 14px 28px rgba(0,0,0,.16),
      0 0 0 3px rgba(217,164,65,.25);
  transition: transform var(--transition), box-shadow var(--transition);
}
.logo-img:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow:
      0 4px 8px rgba(0,0,0,.18),
      0 10px 20px rgba(0,0,0,.22),
      0 22px 40px rgba(0,0,0,.22),
      0 0 0 3px rgba(217,164,65,.45);
}

/* ─── NAVBAR ─── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background var(--transition), box-shadow var(--transition);
  padding-bottom: 42px;
            padding-top: 42px;
}
.navbar.scrolled {
  background: rgba(245,239,230,.97);
  backdrop-filter: blur(14px);
  box-shadow: 0 2px 24px rgba(26,16,16,.1);
}
.nav-inner {
  display: flex; align-items: center;
  gap: 32px;
  max-width: 1280px; width: 100%;
  margin: 0 auto; padding: 0 24px;
}

.nav-links {
  display: flex; align-items: center;
  gap: 4px; flex: 1;
  justify-content: center;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,.88);
  font-size: 14px; font-weight: 500;
  padding: 8px 14px; border-radius: 50px;
  transition: all var(--transition);
  display: block;
}
.navbar.scrolled .nav-links a { color: var(--text); }
.nav-links a:hover, .nav-links a:active, .nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,.14);
}
.navbar.scrolled .nav-links a:hover,
.navbar.scrolled .nav-links a:active,
.navbar.scrolled .nav-links a.active {
  color: var(--maroon);
  background: rgba(110,31,43,.08);
}
.nav-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.nav-actions .btn-primary { font-size: 13px; padding: 10px 22px; }
.hamburger {
  display: none; flex-direction: column;
  gap: 5px; background: none; border: none;
  cursor: pointer; padding: 6px; margin-left: auto;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: all var(--transition);
}
.navbar.scrolled .hamburger span { background: var(--dark); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.mobile-only { display: none; }

/* ─── FOOTER ─── */
.footer { background: var(--dark); padding-top: 80px; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

/* Footer logo image height */
.logo-img-footer {
  height: 72px;
  width: 72px;
  display: block;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 24px;
  background: var(--white);
  padding: 8px;
  box-shadow:
      0 3px 6px rgba(0,0,0,.3),
      0 8px 16px rgba(0,0,0,.28),
      0 18px 36px rgba(0,0,0,.24),
      0 0 0 3px rgba(217,164,65,.3);
  transition: transform var(--transition), box-shadow var(--transition);
}
.logo-img-footer:hover {
  transform: translateY(-3px) scale(1.05);
}
.footer-brand p { font-size: 13.5px; color: rgba(255,255,255,.5); line-height: 1.75; max-width: 300px; margin-bottom: 28px; }

.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5);
  transition: all var(--transition);
}
.social-links a:hover { background: var(--maroon); border-color: var(--maroon); color: var(--white); }

.footer-col h5 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { font-size: 13.5px; color: rgba(255,255,255,.5); transition: color var(--transition); }
.footer-col ul a:hover { color: var(--white); }

.contact-list li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.contact-list li svg { flex-shrink: 0; color: var(--rust); margin-top: 2px; }
.contact-list li a, .contact-list li span { font-size: 13.5px; color: rgba(255,255,255,.55); transition: color var(--transition); }
.contact-list li a:hover { color: var(--white); }

.footer-hours { margin-top: 24px; display: flex; flex-direction: column; gap: 4px; }
.footer-hours strong { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.footer-hours span { font-size: 13px; color: rgba(255,255,255,.45); }

.footer-bottom { padding: 22px 0; }
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 12.5px; color: rgba(255,255,255,.3); }
.footer-legal { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-legal a { font-size: 12.5px; color: rgba(255,255,255,.35); transition: color var(--transition); }
.footer-legal a:hover { color: rgba(255,255,255,.7); }

/* ─── RESPONSIVE / MEDIA QUERIES ─── */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-actions .btn-ghost { display: none; }
  .hamburger { display: flex; }
  .mobile-only { display: block; width: 100%; margin-top: 8px; }
  
  .nav-btn-signin {
    display: block; text-align: center;
    border: 1px solid var(--maroon); color: var(--maroon) !important;
    border-radius: 50px; padding: 10px 0;
  }
  .nav-btn-book {
    display: block; text-align: center;
    background: var(--maroon) !important; color: var(--white) !important;
    border-radius: 50px; padding: 10px 0;
  }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: rgba(245,239,230,.98);
    backdrop-filter: blur(20px);
    padding: 24px;
    border-bottom: 1px solid var(--ivory-deep);
    box-shadow: var(--shadow-md);
    gap: 4px; align-items: flex-start; z-index: 999;
  }
  .nav-links.open a {
    color: var(--dark); font-size: 15px;
    padding: 12px 16px; width: 100%; border-radius: var(--radius-sm);
  }
  .nav-links.open a:hover, .nav-links.open a.active {
    background: rgba(110,31,43,.08); color: var(--maroon);
  }
}

@media (max-width: 700px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }
}

@media (max-width: 500px) {
  .nav-actions { display: none; }
}

@media (max-width: 480px) {
  :root { --nav-h: 64px; }
  .logo-img { height: 46px; width: 46px; } /* Slightly smaller logo on extra-small mobile screens */
}

/* Ensure Navbar and Footer use Inter font exactly like the Home page to match sizes */
.navbar, .footer { font-family: var(--font-body) !important; line-height: 1.7 !important; -webkit-font-smoothing: antialiased !important; -moz-osx-font-smoothing: grayscale !important; font-weight: 400 !important; } 

/* Fix missing global resets for navbar and footer */
.navbar a, .footer a { text-decoration: none !important; }
.navbar ul, .footer ul { list-style: none !important; padding: 0 !important; margin: 0 !important; }
.navbar *, .footer * { box-sizing: border-box !important; }

/* Fix missing global padding/margin resets and container width for footer */
.footer h1, .footer h2, .footer h3, .footer h4, .footer h5, .footer h6, .footer p { margin-top: 0 !important; }

.footer .container { max-width: 1280px !important; padding: 0 24px !important; width: 100% !important; }

/* Fix missing responsive media queries for the footer */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr !important; gap: 40px !important; }
}
@media (max-width: 700px) {
  .footer-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
  .footer-bottom-inner { flex-direction: column !important; text-align: center !important; }
  .footer-legal { justify-content: center !important; }
}

/* Unify global container to perfectly match home.css */
.container {
    width: 100% !important;
    max-width: 1280px !important;
    margin: 0 auto !important;
    padding: 0 24px !important;
}

/* Variables required by the Navbar and Footer */
:root {
  --maroon:       #6E1F2B;
  --maroon-dark:  #4d1520;
  --maroon-mid:   #8a2535;
  --gold:         #D9A441;
  --gold-muted:   #c4903a;
  --rust:         #A35334;
  --charcoal:     #3A3A3A;
  --charcoal-mid: #555555;
  --ivory:        #F5EFE6;
  --ivory-deep:   #EDE5D8;
  --dark:         #1A1010;
  --text:         #2A1A1A;
  --text-muted:   #7a6a64;
  --white:        #FFFFFF;
  --nav-h:        72px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --transition:   0.3s ease;
}

/* Restore logo styling that was broken by the aggressive navbar reset */
.navbar .logo, .footer .logo {
    color: var(--white) !important;
    font-family: var(--font-display) !important;
}
.navbar.scrolled .logo {
    color: var(--maroon-dark) !important;
}

/* Reset bottom margin for copyright text */
.footer-bottom p { margin-bottom: 0 !important; }

/* Unify footer link opacities */
.footer-legal a { color: rgba(255, 255, 255, 0.5) !important; }
.footer-legal a:hover { color: var(--white) !important; }


/* Responsive Hero Fix */
@media (max-width: 768px) {
    .faq-hero {
        min-height: 40vh;
        padding: 8rem 1.5rem 4rem;
        height: auto;
    }
    .faq-hero h1 {
        font-size: 2.8rem;
    }
    .search-container {
        width: 90%;
        margin-top: 2rem;
    }
    .search-container input {
        font-size: 1rem;
        padding: 1rem 1rem 1rem 3rem;
    }
}


/* Circular logo */
.logo-img, .logo-img-footer { border-radius: 50% !important; object-fit: cover !important; aspect-ratio: 1/1 !important; }

/* SECTION ANIMATIONS */
.premium-reveal {
    opacity: 0;
    transform: translateY(40px);
    filter: blur(10px);
    transition: all 1.2s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform, filter;
}

.premium-reveal.in-view {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.premium-item {
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.premium-reveal.in-view .premium-item {
    opacity: 1;
    transform: translateY(0);
}

.premium-reveal.in-view .premium-item:nth-child(1) { transition-delay: 0.1s; }
.premium-reveal.in-view .premium-item:nth-child(2) { transition-delay: 0.2s; }
.premium-reveal.in-view .premium-item:nth-child(3) { transition-delay: 0.3s; }
.premium-reveal.in-view .premium-item:nth-child(4) { transition-delay: 0.4s; }
.premium-reveal.in-view .premium-item:nth-child(5) { transition-delay: 0.5s; }
