:root {
      --brand: #27B1B2;
      --brand-hover: #147A91;
      --brand-light: #EAF8F8;
      --navy: #0A3D5A;
      --navy-dark: #061B2B;
      --gold: #D49020;
      --gold-light: #FFF8EA;
      --slate: #315466;
      --muted: #6B7F8B;
      --border: #DCE8ED;
      --border-light: #EAF0F3;
      --bg-page: #F6FAFB;
      --white: #ffffff;

      /* Saawariya Travels Brand Fonts */
      --font-heading: 'Alice', Georgia, serif;
      --font-secondary: 'Noto Serif Ethiopic Condensed', sans-serif;
      --shadow-sm: 0 4px 20px rgba(10, 61, 90, 0.05);
      --shadow-md: 0 12px 34px rgba(10, 61, 90, 0.09);
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      font-family: var(--font-secondary);
    }

    body {
      background-color: var(--bg-page);
      color: var(--slate);
      line-height: 1.7;
      padding-bottom: 90px; /* Added breathing space at the bottom */
      -webkit-font-smoothing: antialiased;
    }

    .st-container {
      max-width: 1240px;
      margin: 0 auto;
      padding: 0 20px;
    }

    /* TYPOGRAPHY OVERRIDES */
    h1, h2, h3, h4, .st-serif {
      font-family: var(--font-heading);
      font-weight: 400;
    }

    /* =========================================================
       1. HERO BANNER
       ========================================================= */
    .st-hero {
      position: relative;
      width: 100vw;
      left: 50%;
      right: 50%;
      margin-left: -50vw;
      margin-right: -50vw;
      min-height: 600px;
      display: flex;
      align-items: center;
      background: linear-gradient(180deg, rgba(6, 27, 43, 0.45) 0%, rgba(6, 27, 43, 0.90) 100%),
                  url("https://saawariyatravels.in/wp-content/uploads/2026/08/Gemini_Generated_Image_f1bx4ff1bx4ff1bx-1-1.png") center/cover no-repeat;
      padding: 90px 0 70px;
      color: var(--white);
    }

    .st-hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 18px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.16);
      border: 1px solid rgba(229, 195, 120, 0.45);
      backdrop-filter: blur(10px);
      color: var(--gold);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1.2px;
      text-transform: uppercase;
      margin-bottom: 20px;
    }

    .st-hero h1 {
      font-size: clamp(34px, 4.4vw, 54px);
      line-height: 1.18;
      max-width: 880px;
      margin-bottom: 16px;
      color: var(--white);
    }

    .st-hero-sub {
      font-size: 16px;
      max-width: 760px;
      color: rgba(255, 255, 255, 0.9);
      margin-bottom: 30px;
      line-height: 1.65;
    }

    .st-hero-actions {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .st-btn-pri {
      padding: 13px 28px;
      border-radius: 999px;
      background: var(--brand);
      color: var(--white);
      font-weight: 700;
      font-size: 13.5px;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: all 0.25s ease;
      box-shadow: 0 6px 20px rgba(39, 177, 178, 0.35);
    }

    .st-btn-pri:hover {
      background: var(--brand-hover);
      transform: translateY(-2px);
    }

    .st-btn-sec {
      padding: 13px 26px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.14);
      border: 1px solid rgba(255, 255, 255, 0.3);
      backdrop-filter: blur(8px);
      color: var(--white);
      font-weight: 700;
      font-size: 13.5px;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: all 0.25s ease;
    }

    .st-btn-sec:hover {
      background: rgba(255, 255, 255, 0.25);
      transform: translateY(-2px);
    }

    /* =========================================================
       2. CARDS, SECTIONS & FACTS STRIP
       ========================================================= */
    .st-detail-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 22px;
      padding: 38px;
      margin-bottom: 35px;
      box-shadow: var(--shadow-sm);
    }

    .st-sec-tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 5px 14px;
      border-radius: 999px;
      background: var(--brand-light);
      border: 1px solid rgba(39, 177, 178, 0.3);
      color: var(--navy);
      font-size: 10.5px;
      font-weight: 700;
      letter-spacing: 0.8px;
      text-transform: uppercase;
      margin-bottom: 12px;
    }

    .st-sec-tag i {
      color: var(--brand);
      font-size: 8px;
    }

    .st-sec-title {
      font-size: clamp(24px, 2.6vw, 34px);
      color: var(--navy);
      margin-bottom: 10px;
    }

    .st-sec-sub {
      font-size: 14.5px;
      color: var(--muted);
      margin-bottom: 26px;
    }

    /* Floating Quick Facts */
    .st-facts-strip {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 22px 28px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      margin: -40px auto 45px;
      position: relative;
      z-index: 10;
      box-shadow: var(--shadow-md);
    }

    .st-fact-col {
      display: flex;
      align-items: center;
      gap: 14px;
      border-right: 1px solid var(--border-light);
      padding-right: 14px;
    }

    .st-fact-col:last-child {
      border-right: none;
      padding-right: 0;
    }

    .st-fact-icon {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      background: var(--brand-light);
      color: var(--brand);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      flex-shrink: 0;
    }

    .st-fact-info small {
      display: block;
      font-size: 10.5px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.6px;
      color: var(--muted);
      margin-bottom: 2px;
    }

    .st-fact-info strong {
      font-size: 13.5px;
      color: var(--navy);
      font-weight: 700;
    }

    /* Grid Formats */
    .st-grid-3 {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .st-grid-4 {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
    }

    .st-grid-2 {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }

    /* Standard Feature & Information Box */
    .st-info-box {
      border: 1px solid var(--border);
      border-radius: 18px;
      padding: 22px;
      background: #FFFFFF;
      transition: all 0.25s ease;
      display: flex;
      flex-direction: column;
    }

    .st-info-box:hover {
      border-color: rgba(39, 177, 178, 0.45);
      transform: translateY(-3px);
      box-shadow: var(--shadow-sm);
    }

    .st-box-icon {
      width: 42px;
      height: 42px;
      border-radius: 12px;
      background: var(--brand-light);
      color: var(--brand);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 17px;
      margin-bottom: 14px;
    }

    .st-info-box h4 {
      font-size: 16.5px;
      color: var(--navy);
      font-weight: 700;
      margin-bottom: 4px;
    }

    .st-info-box span.st-loc {
      font-size: 11px;
      font-weight: 700;
      color: var(--gold);
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 8px;
      display: inline-block;
    }

    .st-info-box p {
      font-size: 12.5px;
      color: var(--slate);
      line-height: 1.65;
    }

    /* Discovery Notice Bar (More to explore) */
    .st-discover-note {
      margin-top: 24px;
      padding: 16px 20px;
      border-radius: 14px;
      background: var(--gold-light);
      border: 1px solid rgba(212, 144, 32, 0.22);
      font-size: 12.5px;
      color: var(--navy);
      line-height: 1.6;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .st-discover-note i {
      color: var(--gold);
      font-size: 18px;
      flex-shrink: 0;
    }

    /* Festival Cards */
    .st-fest-card {
      border: 1px solid var(--border);
      border-radius: 18px;
      overflow: hidden;
      background: var(--white);
      transition: all 0.25s ease;
    }

    .st-fest-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-sm);
      border-color: var(--brand);
    }

    .st-fest-media {
      height: 170px;
      position: relative;
    }

    .st-fest-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .st-fest-timing {
      position: absolute;
      top: 12px;
      right: 12px;
      background: rgba(6, 27, 43, 0.8);
      backdrop-filter: blur(6px);
      color: var(--white);
      font-size: 10.5px;
      font-weight: 700;
      padding: 4px 11px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.25);
    }

    .st-fest-body {
      padding: 18px 20px;
    }

    .st-fest-body h4 {
      font-family: var(--font-heading);
      font-size: 18px;
      color: var(--navy);
      margin-bottom: 6px;
    }

    .st-fest-body p {
      font-size: 12.5px;
      color: var(--slate);
      line-height: 1.6;
    }

    /* Itinerary / Tour Cards */
    .st-pkg-card {
      display: flex;
      flex-direction: column;
      background: var(--white);
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid var(--border);
      text-decoration: none !important;
      transition: all 0.25s ease;
      position: relative;
    }

    .st-pkg-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 24px rgba(10, 61, 90, 0.08);
    }

    .st-pkg-img-wrap {
      position: relative;
      width: 100%;
      height: 220px;
      overflow: hidden;
    }

    .st-pkg-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }
    
    .st-pkg-card:hover .st-pkg-img-wrap img {
      transform: scale(1.05);
    }

    .st-pkg-badge {
      position: absolute;
      top: 15px;
      right: 15px;
      background: #2cb5a0;
      color: #fff;
      font-size: 11px;
      font-weight: 700;
      padding: 5px 12px;
      border-radius: 20px;
      letter-spacing: 0.5px;
      z-index: 2;
    }

    .st-pkg-like {
      position: absolute;
      bottom: -18px;
      left: 20px;
      width: 36px;
      height: 36px;
      background: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #2cb5a0;
      font-size: 14px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      z-index: 2;
    }

    .st-pkg-content {
      padding: 30px 20px 20px 20px;
      flex: 1;
    }

    .st-pkg-title {
      font-family: var(--font-head);
      font-size: 20px;
      font-weight: 600;
      color: var(--navy);
      line-height: 1.35;
      margin: 0;
    }

    .st-pkg-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 20px 20px 20px;
      margin-top: auto;
    }

    .st-pkg-view {
      font-size: 14px;
      font-weight: 600;
      color: var(--deep);
      transition: color 0.2s ease;
    }

    .st-pkg-arrow {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: #2cb5a0;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 13px;
      transition: background 0.2s ease;
    }
    
    .st-pkg-card:hover .st-pkg-view {
      color: #2cb5a0;
    }
    .st-pkg-card:hover .st-pkg-arrow {
      background: var(--navy);
    }

    /* FAQ Accordion */
    .st-faq-item {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 14px;
      margin-bottom: 12px;
      overflow: hidden;
      transition: all 0.2s ease;
    }

    .st-faq-question {
      width: 100%;
      padding: 18px 22px;
      background: none;
      border: none;
      text-align: left;
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 14px;
      font-weight: 700;
      color: var(--navy);
      cursor: pointer;
    }

    .st-faq-icon {
      width: 28px;
      height: 28px;
      border-radius: 8px;
      background: var(--brand-light);
      color: var(--brand);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 13px;
      transition: transform 0.2s ease;
    }

    .st-faq-answer {
      display: none;
      padding: 0 22px 18px;
      font-size: 13px;
      color: var(--slate);
      line-height: 1.7;
    }

    .st-faq-item.active {
      border-color: rgba(39, 177, 178, 0.4);
    }

    .st-faq-item.active .st-faq-answer {
      display: block;
    }

    .st-faq-item.active .st-faq-icon {
      transform: rotate(180deg);
    }

    /* Final CTA Banner (Fixed Margins & Padding) */
    .st-final-cta {
      background: radial-gradient(circle at 15% 20%, rgba(39, 177, 178, 0.22), transparent 45%),
                  radial-gradient(circle at 85% 80%, rgba(212, 144, 32, 0.18), transparent 45%),
                  linear-gradient(135deg, #061B2B 0%, #0A3D5A 100%);
      border-radius: 50px;
      padding: 60px 40px;
      text-align: center;
      color: var(--white);
      margin-top: 20px;
      margin-bottom: 70px; /* Clear spacing from bottom */
      box-shadow: var(--shadow-md);
    }

    .st-final-cta h2 {
      font-size: clamp(28px, 3.4vw, 42px);
      margin-bottom: 12px;
      color: var(--white);
    }

    .st-final-cta p {
      max-width: 640px;
      margin: 0 auto 28px;
      font-size: 15px;
      color: #CBD5E1;
      line-height: 1.65;
    }

    /* =========================================================
       RESPONSIVE BREAKPOINTS
       ========================================================= */
    @media (max-width: 1024px) {
      .st-facts-strip {
        grid-template-columns: repeat(2, 1fr);
      }
      .st-fact-col:nth-child(2) {
        border-right: none;
      }
      .st-grid-3, .st-grid-4 {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 640px) {
      body {
        padding-bottom: 50px;
      }
      .st-hero {
        min-height: 480px;
        padding: 70px 0 50px;
      }
      .st-facts-strip {
        grid-template-columns: 1fr;
        padding: 16px;
        margin-top: -26px;
      }
      .st-fact-col {
        border-right: none;
        border-bottom: 1px solid var(--border-light);
        padding-bottom: 12px;
      }
      .st-fact-col:last-child {
        border-bottom: none;
        padding-bottom: 0;
      }
      .st-detail-card {
        padding: 24px 18px;
        border-radius: 18px;
      }
      .st-grid-3, .st-grid-4, .st-grid-2 {
        grid-template-columns: 1fr;
      }
      .st-final-cta {
        padding: 45px 20px;
      }
    }

/* FORCE FULL WIDTH ON SINGLE DESTINATION PAGE (Astra & standard themes) */
body.single-saaw_destination .container,
body.single-saaw_destination .site-content,
body.single-saaw_destination .site-main,
body.single-saaw_destination .wrap,
body.single-saaw_destination .wrapper,
body.single-saaw_destination .content-area,
body.single-saaw_destination #primary,
body.single-saaw_destination #content,
body.single-saaw_destination .ast-container,
body.single-saaw_destination .nv-content-wrap,
body.single-saaw_destination .oceanwp-content-wrap,
body.single-saaw_destination .fl-builder-content,
body.single-saaw_destination .entry-content {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* AGGRESSIVELY HIDE THEME TITLES & HEADERS ON THIS PAGE */
body.single-saaw_destination header.entry-header,
body.single-saaw_destination h1.entry-title,
body.single-saaw_destination h2.entry-title,
body.single-saaw_destination .entry-title,
body.single-saaw_destination .ast-single-post-order,
body.single-saaw_destination .page-header,
body.single-saaw_destination .page-title,
body.single-saaw_destination .post-title,
body.single-saaw_destination .nv-page-title-wrap,
body.single-saaw_destination .oceanwp-page-header,
body.single-saaw_destination header.page-header,
body.single-saaw_destination .site-header,
body.single-saaw_destination #masthead,
body.single-saaw_destination .ast-main-header-wrap,
body.single-saaw_destination .ast-header-wrap,
body.single-saaw_destination .ast-primary-header-bar {
    display: none !important;
}
