/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .slide-visual {
    display: none;
  }
  .slide {
    padding: var(--nav-h) 2rem 0;
  }
  .slide-heading {
    font-size: 42px;
  }
  .navbar {
    padding: 0 1.5rem;
  }
  .nav-links {
    display: none;
  }
}

@media (max-width: 540px) {
  .slide {
    padding: var(--nav-h) 1.5rem 0;
  }
  .slide-heading {
    font-size: 34px;
  }
  .slide-sub {
    font-size: 14px;
  }
  .slide-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .arrow-prev {
    left: 1rem;
  }
  .arrow-next {
    right: 1rem;
  }
  .arrow-btn {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

/* =============================================
   CONTACT PAGE — Responsive Breakpoints
   ============================================= */

/* ── Large tablets / small desktops ── */
@media (max-width: 1200px) {
  .contact-body-inner {
    grid-template-columns: 1fr 340px;
    gap: 40px;
  }
}

/* ── Tablets (portrait) ── */
@media (max-width: 1024px) {
  .contact-hero-content {
    padding: 130px 28px 70px;
  }

  .contact-body-section {
    padding: 70px 5%;
  }

  /* Collapse to single column: form on top, info cards below */
  .contact-body-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Info cards go side-by-side on tablet */
  .contact-info-panel {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .contact-info-card {
    flex: 1 1 280px;
  }
}

/* ── Landscape phones / large phones ── */
@media (max-width: 768px) {
  .contact-hero-content {
    padding: 120px 20px 60px;
  }

  .contact-hero-content h1 {
    font-size: 2.6rem;
  }

  .contact-body-section {
    padding: 60px 5%;
  }

  .contact-form-panel {
    padding: 36px 28px;
  }

  /* Name / Email row collapses to stacked */
  .contact-form-row {
    grid-template-columns: 1fr;
  }

  /* Info cards stack vertically again on small tablet */
  .contact-info-panel {
    flex-direction: column;
  }

  .contact-info-card {
    flex: unset;
    width: 100%;
  }
}

/* ── Small phones ── */
@media (max-width: 480px) {
  .contact-hero-content {
    padding: 110px 16px 50px;
  }

  .contact-hero-content h1 {
    font-size: 2rem;
  }

  .contact-hero-kicker {
    font-size: 0.7rem;
    padding: 5px 14px;
  }

  .contact-form-panel {
    padding: 24px 16px;
    border-radius: 14px;
  }

  .contact-submit-btn {
    width: 100%;
    justify-content: center;
  }

  .contact-info-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    font-size: 1rem;
  }

  .contact-info-body h3 {
    font-size: 0.95rem;
  }

  .contact-info-body p {
    font-size: 0.85rem;
  }
}

/* =============================================
   NAVBAR — Mobile Hamburger Menu
   Affects ALL pages that share the same navbar
   ============================================= */

@media (max-width: 900px) {
  /* Show the hamburger button */
  .hamburger {
    display: flex !important;
  }

  /* Hide the horizontal link list */
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 0;

    /* Full-width dropdown below navbar */
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(13, 27, 62, 0.1);
    padding: 12px 0 20px;
    z-index: 999;
    border-top: 1px solid rgba(13, 27, 62, 0.06);
  }

  /* Show when JS adds the .open class */
  .nav-links.open {
    display: flex;
  }

  /* Stack each nav item full-width */
  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 12px 24px;
    font-size: 1rem;
    border-radius: 0;
    border-bottom: 1px solid rgba(13, 27, 62, 0.04);
  }

  .nav-links a::after {
    display: none; /* hide underline animation on mobile */
  }

  /* Contact button stays pill-shaped but full-width */
  .nav-links .contact-btn {
    margin: 12px 24px 0;
    width: calc(100% - 48px);
    text-align: center;
    border-radius: 30px;
  }

  /* Make navbar relative so dropdown positions correctly */
  #navbar {
    position: relative;
  }

  /* Ensure nav-inner stays on one row */
  .nav-inner {
    flex-wrap: nowrap;
  }
}

/* =============================================
   FOOTER — Responsive
   Only changes below 768px; laptop view unchanged
   ============================================= */

/* ── Tablet (≤ 768px): 2-column footer grid ── */
@media (max-width: 768px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  /* Brand block takes full width on its own row */
  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-brand p {
    max-width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
  }
}

/* ── Small phones (≤ 480px): single-column footer ── */
@media (max-width: 480px) {
  footer {
    padding: 50px 16px 24px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-brand {
    grid-column: unset;
  }

  .footer-col h4 {
    font-size: 0.9rem;
    margin-bottom: 14px;
  }

  .footer-col ul {
    gap: 10px;
  }

  .footer-social {
    gap: 10px;
  }

  .social-btn {
    width: 36px;
    height: 36px;
    font-size: 0.85rem;
  }
}

/* =============================================
   FLIGHTS PAGE — Mobile Responsive
   Applies to screens ≤ 1200px
   ============================================= */

/* ── Large screens (≤ 1200px) ── */
@media (max-width: 1200px) {
  .flight-cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .offers-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ── Tablets Landscape (≤ 992px) ── */
@media (max-width: 992px) {
  .flight-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .flight-about-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .flight-about-image {
    height: 400px;
  }

  .offers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── Medium phones & tablets portrait (≤ 768px) ── */
@media (max-width: 768px) {
  /* ── HERO SECTION — centred layout matching hotels hero ── */
  /* Let height be driven by content, not a fixed vh */
  .hero-flight {
    min-height: unset;
    align-items: flex-start;
    background-attachment: scroll; /* fixes iOS parallax glitch */
  }

  /* 90px top padding clears fixed navbar; content is already centred */
  .hero-flight .hero-content {
    padding: 90px 16px 44px;
    max-width: 100%;
  }

  /* Kicker badge: slightly smaller on mobile */
  .hero-flight-kicker {
    font-size: 0.7rem;
    padding: 5px 12px;
    margin-bottom: 16px;
  }

  .hero-flight h1 {
    font-size: clamp(1.8rem, 6.5vw, 2.5rem);
    margin-bottom: 14px;
    line-height: 1.2;
  }

  /* subtitle: keep auto side margins so it stays centred */
  .hero-flight p {
    font-size: 0.95rem;
    max-width: 100%;
    margin: 0 auto 26px;
  }

  .hero-flight .hero-btn {
    padding: 14px 34px;
    font-size: 0.95rem;
  }

  /* ── FLIGHT CARDS GRID ── */
  .flight-container {
    padding: 40px 16px;
  }

  .flight-section-header {
    margin-bottom: 30px;
  }

  .flight-section-header h2 {
    font-size: 1.8rem;
  }

  .flight-section-header p {
    font-size: 0.95rem;
  }

  .flight-cards-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .flight-card-image {
    height: 170px;
  }

  .flight-card-content {
    padding: 14px;
  }

  .from-city,
  .to-city {
    font-size: 0.9rem;
  }

  .flight-airline {
    font-size: 0.88rem;
    margin-bottom: 8px;
  }

  .flight-view-btn {
    font-size: 0.82rem;
    padding: 10px 8px;
  }

  /* ── ABOUT / WHY CHOOSE SECTION ── */
  .flight-about-section {
    padding: 40px 16px;
  }

  .flight-about-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .flight-about-content h2 {
    font-size: 1.7rem;
    margin-bottom: 12px;
  }

  .flight-about-intro {
    font-size: 0.97rem;
    margin-bottom: 24px;
  }

  .flight-about-features {
    gap: 20px;
  }

  .flight-feature-item {
    flex-direction: row;
    align-items: flex-start;
    gap: 14px;
    text-align: left;
  }

  .feature-icon {
    width: 52px;
    height: 52px;
    font-size: 1.8rem;
    flex-shrink: 0;
    margin: 0;
  }

  .flight-feature-item h3 {
    font-size: 1rem;
    margin-bottom: 4px;
  }

  .flight-feature-item p {
    font-size: 0.875rem;
  }

  /* Hide the big side image on mobile — saves space */
  .flight-about-image {
    display: none;
  }

  /* ── CAROUSEL SECTION ── */
  .flight-carousel-section {
    padding: 36px 0;
  }

  .flight-carousel-header {
    margin-bottom: 24px;
    padding: 0 16px;
  }

  .flight-carousel-header h2 {
    font-size: 1.6rem;
  }

  .flight-carousel-header p {
    font-size: 0.9rem;
  }

  .flight-carousel-card {
    min-width: 260px;
    max-width: 260px;
  }

  .flight-carousel-image {
    height: 150px;
  }

  .flight-carousel-content {
    padding: 16px;
    gap: 8px;
  }

  .flight-carousel-title {
    font-size: 1.05rem;
  }

  .flight-carousel-route {
    font-size: 0.85rem;
  }

  .flight-carousel-btn {
    padding: 10px 16px;
    font-size: 0.82rem;
  }

  /* ── LATEST OFFERS FLIP CARDS ── */
  .latest-offers-section {
    padding: 40px 16px;
  }

  .offers-header {
    margin-bottom: 28px;
  }

  .offers-header h2 {
    font-size: 1.8rem;
  }

  .offers-header p {
    font-size: 0.9rem;
  }

  .offers-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .offer-card {
    height: auto;
    min-height: 280px;
    perspective: none;
    cursor: pointer;
  }

  /* Disable 3D flip and use flat swap */
  .offer-front {
    position: relative;
    transform: none !important;
    backface-visibility: visible;
    border-radius: 16px;
    padding: 20px 16px;
    height: auto;
  }

  .offer-back {
    display: none; /* hidden until JS toggles .flipped */
  }

  /* When parent has .flipped class (added by JS), swap visibility */
  .offer-card.flipped .offer-front {
    display: none;
  }

  .offer-card.flipped .offer-back {
    display: flex;
    position: relative;
    transform: none !important;
    backface-visibility: visible;
    border-radius: 16px;
    padding: 20px 16px;
    height: auto;
    flex-direction: column;
    justify-content: center;
  }

  .offer-destination h3 {
    font-size: 1.3rem;
  }

  .offer-discount {
    font-size: 0.88rem;
  }

  .offer-details-list li {
    font-size: 0.85rem;
    padding: 8px 0;
  }

  .offer-book-btn {
    padding: 11px;
    font-size: 0.9rem;
  }
}

/* ── Small phones (≤ 480px) ── */
@media (max-width: 480px) {
  /* ── HERO ── */
  .hero-flight .hero-content {
    padding: 80px 12px 36px; /* 80px clears navbar on small phones */
  }

  .hero-flight-kicker {
    font-size: 0.67rem;
    padding: 4px 10px;
    margin-bottom: 12px;
  }

  .hero-flight h1 {
    font-size: clamp(1.5rem, 6vw, 1.9rem);
    margin-bottom: 10px;
  }

  .hero-flight p {
    font-size: 0.88rem;
    margin: 0 auto 20px;
  }

  .hero-flight .hero-btn {
    padding: 12px 26px;
    font-size: 0.9rem;
  }

  /* ── FLIGHT CARDS — single column on tiny screens ── */
  .flight-container {
    padding: 32px 12px;
  }

  .flight-cards-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .flight-section-header h2 {
    font-size: 1.55rem;
  }

  .flight-card-image {
    height: 190px;
  }

  /* ── ABOUT SECTION ── */
  .flight-about-section {
    padding: 32px 12px;
  }

  .flight-about-content h2 {
    font-size: 1.5rem;
  }

  .flight-feature-item {
    gap: 12px;
  }

  .feature-icon {
    width: 46px;
    height: 46px;
    font-size: 1.5rem;
  }

  /* ── CAROUSEL ── */
  .flight-carousel-card {
    min-width: 240px;
    max-width: 240px;
  }

  .flight-carousel-image {
    height: 135px;
  }

  .flight-carousel-content {
    padding: 14px 12px;
    gap: 6px;
  }

  /* ── OFFER CARDS — single column ── */
  .offers-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .offer-card {
    min-height: 220px;
  }

  .offer-destination h3 {
    font-size: 1.2rem;
  }

  .offer-discount {
    font-size: 0.85rem;
  }

  .latest-offers-section {
    padding: 32px 12px;
  }

  .offers-header h2 {
    font-size: 1.5rem;
  }
}

/* =============================================
   ALL BRAND PAGES — Tablet & Mobile Responsive
   Applies to: Airline, Hotel, Tour, Ferry, and Other brand pages
   ONLY affects screens ≤ 1024px — laptop/desktop untouched
   ============================================= */

/* ── Large tablet (≤ 1024px) ── */
@media (max-width: 1024px) {
  /* Brand hero padding tightened */
  .brand-hero {
    padding: 120px 20px 70px;
    min-height: 60vh;
  }

  /* Coupon grid: slightly narrower */
  .coupons-grid {
    max-width: 95%;
  }

  /* Brand split layout: narrower gap */
  .brand-split-layout {
    gap: 36px;
  }

  /* Brand info section */
  .brand-info-section {
    padding: 50px 5%;
  }

  /* Coupons section */
  .coupons-section {
    padding: 60px 5%;
  }
}

/* ── Tablets portrait / large phones (≤ 768px) ── */
@media (max-width: 768px) {
  /* ── BRAND HERO ── */
  .brand-hero {
    min-height: 55vh;
    padding: 110px 20px 60px;
    text-align: center;
    background-attachment: scroll; /* fixed bg causes issues on mobile */
  }

  .brand-logo-placeholder {
    font-size: 1.8rem;
    padding: 8px 28px;
    letter-spacing: 2px;
  }

  .brand-hero-content h1 {
    font-size: clamp(1.7rem, 6vw, 2.4rem);
    margin-bottom: 16px;
    line-height: 1.2;
  }

  .brand-hero-content p {
    font-size: 0.97rem;
    margin-bottom: 28px;
    max-width: 100%;
  }

  /* Stat pills: wrap and tighten */
  .brand-stats {
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .brand-stat {
    padding: 8px 16px;
    font-size: 0.85rem;
    gap: 6px;
  }

  /* ── BRAND INFO SPLIT LAYOUT ── */
  .brand-info-section {
    padding: 40px 16px;
  }

  .brand-split-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  /* Image block: constrain height on mobile */
  .brand-split-img {
    max-width: 100%;
  }

  .brand-full-img {
    max-height: 260px;
    width: 100%;
    object-fit: cover;
    border-radius: 12px;
  }

  .brand-img-caption {
    font-size: 0.78rem;
    margin-top: 8px;
  }

  /* Text block */
  .brand-split-info h2 {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }

  .brand-split-info > p {
    font-size: 0.95rem;
  }

  .brand-quick-facts li {
    font-size: 0.88rem;
    padding: 10px 0;
    gap: 8px;
    flex-wrap: wrap;
  }

  .brand-quick-facts strong {
    min-width: 70px;
    font-size: 0.78rem;
  }

  .info-features {
    padding: 20px 16px;
  }

  .info-features li {
    font-size: 0.88rem;
    margin-bottom: 12px;
    padding-bottom: 12px;
  }

  /* ── COUPONS SECTION ── */
  .coupons-section {
    padding: 40px 16px;
  }

  .coupons-header {
    margin-bottom: 32px;
  }

  .coupons-header h2 {
    font-size: clamp(1.5rem, 5vw, 2rem);
    margin-bottom: 10px;
  }

  .coupons-header p {
    font-size: 0.95rem;
  }

  .coupons-grid {
    max-width: 100%;
    gap: 12px;
  }

  /* Coupon card: stack vertically */
  .coupon-card {
    flex-direction: column;
  }

  .coupon-left {
    min-width: unset;
    min-height: 100px;
    padding: 16px 24px;
    border-right: none;
    border-bottom: 2px dashed rgba(255, 255, 255, 0.3);
    flex-direction: row;
    justify-content: center;
    gap: 16px;
    align-items: center;
  }

  .coupon-discount {
    font-size: 2rem;
    line-height: 1.1;
  }

  .coupon-discount span {
    font-size: 1rem;
  }

  .coupon-center {
    padding: 16px 20px;
  }

  .coupon-center h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
  }

  .coupon-center p {
    font-size: 0.88rem;
    margin-bottom: 10px;
  }

  .coupon-meta {
    flex-wrap: wrap;
    gap: 8px;
    font-size: 0.8rem;
  }

  .coupon-right {
    min-width: unset;
    width: 100%;
    border-left: none;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding: 16px 20px;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
  }

  .coupon-code {
    flex: 1;
    min-width: 140px;
    font-size: 1rem;
    padding: 8px 14px;
    text-align: center;
  }

  .coupon-btn {
    flex: 1;
    min-width: 120px;
    padding: 10px 16px;
    font-size: 0.9rem;
  }
}

/* ── Small phones (≤ 480px) ── */
@media (max-width: 480px) {
  /* ── BRAND HERO ── */
  .brand-hero {
    min-height: 50vh;
    padding: 95px 14px 50px;
  }

  .brand-logo-placeholder {
    font-size: 1.4rem;
    padding: 6px 20px;
    letter-spacing: 1px;
  }

  .brand-hero-content h1 {
    font-size: clamp(1.4rem, 6.5vw, 1.9rem);
    margin-bottom: 12px;
  }

  .brand-hero-content p {
    font-size: 0.88rem;
    margin-bottom: 20px;
    line-height: 1.55;
  }

  .brand-stats {
    gap: 8px;
  }

  .brand-stat {
    padding: 6px 12px;
    font-size: 0.8rem;
    border-radius: 20px;
  }

  /* ── BRAND INFO ── */
  .brand-info-section {
    padding: 28px 12px;
  }

  .brand-full-img {
    max-height: 200px;
  }

  .brand-split-info h2 {
    font-size: 1.35rem;
  }

  .brand-split-info > p {
    font-size: 0.88rem;
    line-height: 1.65;
  }

  .brand-quick-facts {
    margin-top: 0;
  }

  .brand-quick-facts li {
    font-size: 0.83rem;
    padding: 8px 0;
  }

  .brand-quick-facts strong {
    min-width: 60px;
    font-size: 0.72rem;
  }

  .info-features {
    padding: 14px 12px;
    border-radius: 10px;
  }

  /* ── COUPONS ── */
  .coupons-section {
    padding: 28px 12px;
  }

  .coupons-header h2 {
    font-size: 1.35rem;
  }

  .coupons-header p {
    font-size: 0.88rem;
  }

  .coupons-grid {
    gap: 10px;
  }

  .coupon-card {
    border-radius: 12px;
  }

  .coupon-left {
    min-height: 80px;
    padding: 12px 16px;
  }

  .coupon-discount {
    font-size: 1.7rem;
  }

  .coupon-discount span {
    font-size: 0.85rem;
  }

  .coupon-center {
    padding: 14px 14px;
  }

  .coupon-center h3 {
    font-size: 1rem;
    margin-bottom: 6px;
  }

  .coupon-center p {
    font-size: 0.83rem;
    line-height: 1.5;
  }

  .coupon-meta {
    font-size: 0.75rem;
    gap: 6px;
  }

  /* Right section: stack vertically on tiny screens */
  .coupon-right {
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    gap: 10px;
  }

  .coupon-code {
    width: 100%;
    text-align: center;
    font-size: 0.95rem;
    padding: 10px 12px;
  }

  .coupon-btn {
    width: 100%;
    padding: 11px;
    font-size: 0.88rem;
    border-radius: 25px;
  }
}

/* ============================================================
   HOTELS PAGE (Hotels-all.html) — Tablet & Mobile Responsive
   Breakpoints:
     ≤ 1024px  — tablet landscape   (2-col card grid)
     ≤ 768px   — portrait tablet / large phone
     ≤ 480px   — small phone
   Laptop / desktop is NEVER touched — only max-width rules.
   ============================================================ */

/* ── Tablet landscape (≤ 1024px) ── */
@media (max-width: 1024px) {
  /* Hotel cards: 2 columns instead of 4 */
  .hotels-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  /* Hero: reduce padding */
  .hotels-hero-content {
    padding: 130px 28px 70px;
  }

  /* Search bar: allow wrapping */
  .hotels-search-bar {
    flex-wrap: wrap;
    gap: 10px;
  }

  /* Why section: narrower gap */
  .hotels-why-inner {
    gap: 40px;
  }
}

/* ── Portrait tablet / large phone (≤ 768px) ── */
@media (max-width: 768px) {
  /* ── HOTELS HERO ── */
  /* Remove fixed parallax (breaks on iOS), let height be driven by content */
  .hotels-hero {
    background-attachment: scroll;
    min-height: unset;
    align-items: flex-start;
  }

  /* 80px top padding clears the fixed navbar (~70px); reduce side & bottom padding */
  .hotels-hero-content {
    padding: 90px 16px 40px;
    text-align: center;
    /* width: 100%; */
    max-width: 100%;
    box-sizing: border-box;
  }

  /* Kicker pill */
  .hotels-hero-kicker {
    font-size: 0.7rem;
    padding: 5px 12px;
    margin-bottom: 16px;
  }

  /* Headline: prevent the <br> from forcing a wide word on tiny screens */
  .hotels-hero-content h1 {
    font-size: clamp(1.7rem, 6vw, 2.4rem);
    line-height: 1.2;
    margin-bottom: 12px;
  }

  /* Subtitle */
  .hotels-hero-content > p {
    font-size: 0.92rem;
    line-height: 1.6;
    max-width: 100%;
    margin: 0 0 22px;
  }

  /* ── SEARCH BAR — full width, stack vertically ── */
  .hotels-search-bar {
    flex-direction: column;
    width: 100%; /* override desktop max-width: 820px */
    max-width: 100%;
    margin: 0 0 22px; /* override desktop margin: 0 auto 42px */
    border-radius: 12px;
    padding: 10px;
    gap: 6px;
  }

  /* Each field stretches full width */
  .hotels-search-field {
    min-width: 100%;
    flex: unset;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
  }

  /* Compact guest field same as others on mobile */
  .hotels-search-field.compact {
    flex: unset;
    min-width: 100%;
  }

  .hotels-search-field input {
    font-size: 0.88rem;
  }

  /* Search button: full-width orange pill */
  .hotels-search-btn {
    width: 100%;
    border-radius: 8px;
    padding: 12px;
    font-size: 0.92rem;
    margin-top: 4px;
  }

  /* ── HERO STATS STRIP ── */
  /* Override desktop max-width: 660px and padding: 18px 32px */
  .hotels-hero-stats {
    max-width: 100%;
    width: 100%;
    padding: 14px 10px;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: space-around;
    border-radius: 10px;
  }

  /* Hide the thin vertical dividers between stats */
  .hotels-stat-divider {
    display: none;
  }

  /* Each stat: compact sizing */
  .hotels-stat {
    padding: 6px 10px;
    min-width: 70px;
  }

  .hotels-stat strong {
    font-size: 1.25rem;
  }

  .hotels-stat span {
    font-size: 0.7rem;
  }

  /* ── HOTEL CARDS GRID ── */
  .hotels-section {
    padding: 40px 16px;
  }

  .hotels-section-header {
    margin-bottom: 28px;
    text-align: center;
  }

  .hotels-section-header h2 {
    font-size: 1.7rem;
  }

  .hotels-section-header p {
    font-size: 0.9rem;
  }

  /* 1 column on mobile */
  .hotels-cards-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .hotel-card-img {
    height: 200px;
  }

  .hotel-card-body {
    padding: 16px;
  }

  .hotel-card-body h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
  }

  .hotel-desc {
    font-size: 0.85rem;
    margin-bottom: 12px;
  }

  .hotel-meta {
    font-size: 0.78rem;
    margin-bottom: 10px;
  }

  .price-amount {
    font-size: 1.5rem;
  }

  .hotel-view-btn {
    font-size: 0.88rem;
    padding: 10px;
  }

  /* ── WHY COMPARE SECTION ── */
  .hotels-why-section {
    padding: 40px 16px;
  }

  .hotels-why-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  /* Image above text on mobile for visual punch */
  .hotels-why-img {
    height: 260px;
    order: -1;
    border-radius: 14px;
    overflow: hidden;
  }

  .hotels-why-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .hotels-why-kicker {
    font-size: 0.72rem;
  }

  .hotels-why-text h2 {
    font-size: 1.7rem;
    margin-bottom: 10px;
  }

  .hotels-why-text > p {
    font-size: 0.92rem;
    margin-bottom: 20px;
  }

  .hotels-why-features {
    gap: 16px;
  }

  .hotels-why-item {
    gap: 12px;
  }

  .hotels-why-item h4 {
    font-size: 0.97rem;
    margin-bottom: 4px;
  }

  .hotels-why-item p {
    font-size: 0.85rem;
  }

  /* ── BRANDS STRIP ── */
  .hotels-brands-section {
    padding: 30px 16px;
  }

  .hotels-brands-label {
    font-size: 0.78rem;
    margin-bottom: 16px;
  }

  .hotels-brands-strip {
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hotels-brands-strip span {
    padding: 8px 18px;
    font-size: 0.85rem;
    border-radius: 20px;
  }
}

/* ── Small phones (≤ 480px) ── */
@media (max-width: 480px) {
  /* ── HERO ── */
  /* Drop top padding further — navbar is ~70px, 80px gives a small gap */
  .hotels-hero-content {
    padding: 80px 12px 32px;
  }

  .hotels-hero-content h1 {
    font-size: clamp(1.45rem, 6.5vw, 1.9rem);
    margin-bottom: 10px;
  }

  .hotels-hero-content > p {
    font-size: 0.86rem;
    margin: 0 0 18px;
  }

  /* ── SEARCH BAR ── */
  .hotels-search-bar {
    padding: 8px;
    gap: 5px;
    margin: 0 0 16px;
  }

  .hotels-search-field {
    padding: 9px 10px;
  }

  .hotels-search-btn {
    padding: 11px;
    font-size: 0.86rem;
  }

  /* ── STATS STRIP ── */
  /* Ensure it doesn't overflow the screen on very narrow viewports */
  .hotels-hero-stats {
    max-width: 100%;
    width: 100%;
    padding: 10px 6px;
  }

  .hotels-stat {
    min-width: 60px;
    padding: 4px 6px;
  }

  .hotels-stat strong {
    font-size: 1.1rem;
  }

  .hotels-stat span {
    font-size: 0.66rem;
  }

  /* ── HOTEL CARDS ── */
  .hotels-section {
    padding: 28px 12px;
  }

  .hotel-card-img {
    height: 180px;
  }

  .hotel-card-body {
    padding: 14px;
  }

  .hotels-section-header h2 {
    font-size: 1.5rem;
  }

  /* ── WHY SECTION ── */
  .hotels-why-section {
    padding: 28px 12px;
  }

  .hotels-why-img {
    height: 210px;
  }

  .hotels-why-text h2 {
    font-size: 1.45rem;
  }

  /* ── BRANDS STRIP ── */
  .hotels-brands-strip span {
    font-size: 0.8rem;
    padding: 7px 14px;
  }
}

/* ============================================================
   TOURS PAGE (Tour-Packages-all.html) — Tablet & Mobile Responsive
   ============================================================ */

/* ── Tablet landscape (≤ 1024px) ── */
@media (max-width: 1024px) {
  .tours-hero-content {
    padding: 130px 28px 70px;
  }
  .tours-search-bar {
    flex-wrap: wrap;
    gap: 10px;
  }
  .tours-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .tours-why-container {
    gap: 40px;
  }
}

/* ── Portrait tablet / large phone (≤ 768px) ── */
@media (max-width: 768px) {
  .tours-hero {
    background-attachment: scroll; /* Fixes iOS parallax jitter */
    min-height: unset;
  }
  .tours-hero-content {
    padding: 90px 16px 40px;
    text-align: center;
  }
  .tours-hero-content h1 {
    font-size: clamp(1.7rem, 6vw, 2.4rem);
    margin-bottom: 12px;
  }
  .tours-hero-content > p {
    font-size: 0.92rem;
    margin: 0 0 22px;
    max-width: 100%;
  }
  .tours-search-bar {
    flex-direction: column;
    border-radius: 12px;
    padding: 10px;
    gap: 6px;
    width: 100%;
    margin: 0 0 22px;
  }
  .tours-search-field {
    min-width: 100%;
    border-radius: 8px;
    padding: 10px 12px;
  }
  .tours-search-btn {
    width: 100%;
    border-radius: 8px;
    margin-top: 4px;
    padding: 12px;
  }
  .tours-hero-stats {
    width: 100%;
    max-width: 100%;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 14px 10px;
  }
  .tours-stat-divider {
    display: none;
  }
  .tours-stat {
    min-width: 70px;
    padding: 6px 10px;
  }
  .tours-stat strong {
    font-size: 1.25rem;
  }
  .tours-cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .tour-card-image {
    height: 190px;
  }
  .tour-card-content {
    padding: 16px;
  }
  .tour-card-content h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
  }
  .tour-desc {
    font-size: 0.88rem;
    margin-bottom: 12px;
  }
  .tour-details {
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 12px;
  }
  .tour-price-section {
    padding-top: 10px;
  }
  .price-value {
    font-size: 1.4rem;
  }
  .tour-view-btn {
    padding: 12px;
    font-size: 0.9rem;
    margin-top: 12px;
  }
  .tours-why-section {
    padding: 40px 16px;
  }
  .tours-why-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .tours-why-image {
    height: 260px;
    order: -1;
  }
  .tours-brands-section {
    padding: 30px 16px;
  }
  .tours-brands-strip {
    gap: 10px;
    justify-content: center;
  }
  .tours-brands-strip span {
    padding: 8px 18px;
    font-size: 0.85rem;
  }
}

/* ── Small phones (≤ 480px) ── */
@media (max-width: 480px) {
  .tours-hero-content {
    padding: 80px 12px 32px;
  }
  .tours-hero-content h1 {
    font-size: 1.55rem;
  }
  .tours-stat {
    min-width: 45%;
  }
  .tours-why-image {
    height: 210px;
  }
  .tour-card-image {
    height: 170px;
  }
  .tour-card-content h3 {
    font-size: 1.1rem;
  }
  .price-value {
    font-size: 1.3rem;
  }
  .tours-brands-strip span {
    font-size: 0.8rem;
    padding: 7px 14px;
  }
}

/* ============================================================
   HOTEL, FERRY & TOUR BRAND PAGES — Tablet & Mobile Responsive
   Hotels: -Agoda.html, -Expedia.html, -Hyatt.html, -Marriott-Internation.html, -Oyo.html, -Radisson.html, -Sotc.html, -Vrbo.html
   Ferries: -balearia.html, -dfds.html, -minoan-line.html, -p&o.html, -semaya-one.html, -stena-line.html, -tallink-silijia.html, -trasmed.html
   Tours: -Booking.html, -Contiki.html, -G-Adventures.html, -Intrepid.html, -MakemyTrip.html, -Tourradar.html, -Trafalgar.html, -Tui.html
   
   These pages share the EXACT SAME brand-hero / brand-info / coupons-section HTML structure as flight brand pages.
   Therefore, the responsive CSS written under "FLIGHT BRAND PAGES" (Lines 657+) automatically controls these pages too.
   No extra CSS is needed, simply link responsive.css in the head of these pages!
   ============================================================ */

/* ── Tablet landscape (≤ 1024px) ── */
@media (max-width: 1024px) {
  /* Slightly reduce hero padding on tablets */
  .brand-hero {
    padding: 118px 24px 68px;
    min-height: 58vh;
  }

  /* Coupon grid: let it breathe */
  .coupons-section {
    padding: 58px 5%;
  }

  .coupons-grid {
    max-width: 95%;
  }

  /* Narrower gap in split layout */
  .brand-split-layout {
    gap: 34px;
  }

  .brand-info-section {
    padding: 48px 5%;
  }
}

/* ── Portrait tablet / large phone (≤ 768px) ── */
@media (max-width: 768px) {
  /* ── BRAND HERO ── */
  .brand-hero {
    min-height: 54vh;
    padding: 108px 18px 58px;
    text-align: center;
    background-attachment: scroll; /* fixes iOS parallax */
  }

  /* Hotel brand logo badge */
  .brand-logo-placeholder {
    font-size: 1.75rem;
    padding: 8px 26px;
    letter-spacing: 2px;
  }

  .brand-hero-content h1 {
    font-size: clamp(1.65rem, 5.5vw, 2.3rem);
    line-height: 1.2;
    margin-bottom: 14px;
  }

  .brand-hero-content p {
    font-size: 0.96rem;
    line-height: 1.6;
    margin-bottom: 26px;
    max-width: 100%;
  }

  /* Stat pills: wrap gracefully */
  .brand-stats {
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .brand-stat {
    padding: 8px 14px;
    font-size: 0.83rem;
    gap: 6px;
  }

  /* ── BRAND INFO SPLIT LAYOUT ── */
  .brand-info-section {
    padding: 38px 16px;
  }

  /* Collapse two columns to one */
  .brand-split-layout {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .brand-split-img {
    max-width: 100%;
  }

  /* Cap image height so it doesn't dominate mobile screen */
  .brand-full-img {
    max-height: 250px;
    width: 100%;
    object-fit: cover;
    border-radius: 12px;
  }

  .brand-img-caption {
    font-size: 0.77rem;
    margin-top: 7px;
    text-align: center;
  }

  .brand-split-info {
    gap: 12px;
  }

  .brand-split-info h2 {
    font-size: clamp(1.45rem, 4.5vw, 1.9rem);
  }

  .brand-split-info > p {
    font-size: 0.93rem;
    line-height: 1.7;
  }

  /* Quick facts table */
  .brand-quick-facts li {
    font-size: 0.87rem;
    padding: 9px 0;
    gap: 8px;
    flex-wrap: wrap;
  }

  .brand-quick-facts strong {
    min-width: 68px;
    font-size: 0.77rem;
  }

  .info-features {
    padding: 18px 14px;
  }

  .info-features li {
    font-size: 0.87rem;
    margin-bottom: 11px;
    padding-bottom: 11px;
  }

  /* ── COUPONS SECTION ── */
  .coupons-section {
    padding: 38px 16px;
  }

  .coupons-header {
    margin-bottom: 30px;
  }

  .coupons-header h2 {
    font-size: clamp(1.45rem, 4.5vw, 1.95rem);
    margin-bottom: 8px;
  }

  .coupons-header p {
    font-size: 0.93rem;
  }

  .coupons-grid {
    max-width: 100%;
    gap: 12px;
  }

  /* Stack coupon card: discount | info | code+button */
  .coupon-card {
    flex-direction: column;
  }

  .coupon-left {
    min-width: unset;
    min-height: 96px;
    padding: 14px 20px;
    border-right: none;
    border-bottom: 2px dashed rgba(255, 255, 255, 0.28);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 14px;
  }

  .coupon-discount {
    font-size: 1.9rem;
    line-height: 1.1;
  }

  .coupon-discount span {
    font-size: 0.95rem;
  }

  .coupon-center {
    padding: 14px 18px;
  }

  .coupon-center h3 {
    font-size: 1.1rem;
    margin-bottom: 6px;
  }

  .coupon-center p {
    font-size: 0.87rem;
    line-height: 1.55;
    margin-bottom: 10px;
  }

  .coupon-meta {
    gap: 8px;
    flex-wrap: wrap;
    font-size: 0.78rem;
  }

  /* Code + button side-by-side in a row */
  .coupon-right {
    min-width: unset;
    width: 100%;
    border-left: none;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding: 14px 18px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
  }

  .coupon-code {
    flex: 1;
    min-width: 130px;
    font-size: 0.97rem;
    padding: 8px 12px;
    text-align: center;
  }

  .coupon-btn {
    flex: 1;
    min-width: 110px;
    padding: 10px 14px;
    font-size: 0.88rem;
  }
}

/* ── Small phones (≤ 480px) ── */
@media (max-width: 480px) {
  /* ── BRAND HERO ── */
  .brand-hero {
    min-height: 50vh;
    padding: 92px 12px 46px;
  }

  .brand-logo-placeholder {
    font-size: 1.35rem;
    padding: 6px 18px;
    letter-spacing: 1px;
  }

  .brand-hero-content h1 {
    font-size: clamp(1.35rem, 6vw, 1.8rem);
    margin-bottom: 10px;
  }

  .brand-hero-content p {
    font-size: 0.86rem;
    margin-bottom: 18px;
  }

  .brand-stats {
    gap: 7px;
  }

  .brand-stat {
    padding: 5px 10px;
    font-size: 0.78rem;
  }

  /* ── BRAND INFO ── */
  .brand-info-section {
    padding: 24px 12px;
  }

  .brand-full-img {
    max-height: 195px;
  }

  .brand-split-info h2 {
    font-size: 1.3rem;
  }

  .brand-split-info > p {
    font-size: 0.86rem;
  }

  .brand-quick-facts li {
    font-size: 0.81rem;
    padding: 7px 0;
  }

  .brand-quick-facts strong {
    min-width: 56px;
    font-size: 0.7rem;
  }

  .info-features {
    padding: 12px 10px;
    border-radius: 10px;
  }

  /* ── COUPONS ── */
  .coupons-section {
    padding: 26px 12px;
  }

  .coupons-header h2 {
    font-size: 1.3rem;
  }

  .coupons-header p {
    font-size: 0.86rem;
  }

  .coupons-grid {
    gap: 10px;
  }

  .coupon-card {
    border-radius: 12px;
  }

  .coupon-left {
    min-height: 76px;
    padding: 10px 14px;
  }

  .coupon-discount {
    font-size: 1.6rem;
  }

  .coupon-discount span {
    font-size: 0.82rem;
  }

  .coupon-center {
    padding: 12px 14px;
  }

  .coupon-center h3 {
    font-size: 0.97rem;
  }

  .coupon-center p {
    font-size: 0.82rem;
  }

  .coupon-meta {
    font-size: 0.73rem;
    gap: 5px;
  }

  /* On tiny screens: stack code and button vertically */
  .coupon-right {
    flex-direction: column;
    align-items: stretch;
    padding: 12px 14px;
    gap: 9px;
  }

  .coupon-code {
    width: 100%;
    font-size: 0.93rem;
    padding: 9px 10px;
  }

  .coupon-btn {
    width: 100%;
    padding: 10px;
    font-size: 0.86rem;
    border-radius: 22px;
  }
}

/* ============================================================
   FERRIES PAGE (ferries-all.html) — Tablet & Mobile Responsive
   Breakpoints:
     ≤ 1024px  — tablet landscape
     ≤ 768px   — portrait tablet / large phone
     ≤ 480px   — small phone
   ============================================================ */

/* ── Tablet landscape (≤ 1024px) ── */
@media (max-width: 1024px) {
  /* 4 cards -> 2 columns */
  .ferry-cards-grid,
  .ferry-deals-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .ferry-about-container {
    gap: 30px;
  }

  .ferries-hero-content {
    padding: 130px 28px 70px;
  }

  .ferries-search-bar {
    flex-wrap: wrap;
    gap: 10px;
  }
}

/* ── Portrait tablet / large phone (≤ 768px) ── */
@media (max-width: 768px) {
  /* ── HERO ── */
  .ferries-hero {
    background-attachment: scroll; /* fix iOS parallax */
    min-height: unset;
    align-items: flex-start;
  }

  .ferries-hero-content {
    padding: 90px 16px 40px;
    text-align: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .ferries-hero-kicker {
    font-size: 0.7rem;
    padding: 5px 12px;
    margin-bottom: 16px;
  }

  .ferries-hero-content h1 {
    font-size: clamp(1.7rem, 6vw, 2.4rem);
    line-height: 1.2;
    margin-bottom: 12px;
  }

  .ferries-hero-content > p {
    font-size: 0.92rem;
    line-height: 1.6;
    max-width: 100%;
    margin: 0 0 22px;
  }

  /* ── SEARCH BAR ── */
  .ferries-search-bar {
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    margin: 0 0 22px;
    border-radius: 12px;
    padding: 10px;
    gap: 6px;
  }

  .ferries-search-field,
  .ferries-search-field.compact {
    min-width: 100%;
    flex: unset;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
  }

  .ferries-search-field input {
    font-size: 0.88rem;
  }

  .ferries-search-btn {
    width: 100%;
    border-radius: 8px;
    padding: 12px;
    font-size: 0.92rem;
    margin-top: 4px;
  }

  /* ── HERO STATS ── */
  .ferries-hero-stats {
    max-width: 100%;
    width: 100%;
    padding: 14px 10px;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: space-around;
    border-radius: 10px;
  }

  .ferries-stat-divider {
    display: none;
  }

  .ferries-stat {
    padding: 6px 10px;
    min-width: 70px;
  }

  .ferries-stat strong {
    font-size: 1.25rem;
  }

  .ferries-stat span {
    font-size: 0.7rem;
  }

  /* ── FERRY CARDS ── */
  .ferry-container {
    padding: 40px 16px;
  }

  .ferry-cards-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .ferry-section-header h2 {
    font-size: 1.8rem;
  }

  .ferry-card-image {
    height: 180px;
  }

  /* ── ABOUT SECTION ── */
  .ferry-about-section {
    padding: 40px 16px;
  }

  .ferry-about-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .ferry-about-image {
    height: 260px;
    order: -1; /* Image on top on mobile */
  }

  .ferry-about-content h2 {
    font-size: 1.7rem;
  }

  .ferry-feature-item {
    gap: 14px;
  }

  .ferry-feature-item .feature-icon {
    width: 50px;
    height: 50px;
    font-size: 1.8rem;
  }

  /* ── DEALS SECTION ── */
  .ferry-deals-section {
    padding: 40px 16px;
  }

  .ferry-deals-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .ferry-deal-card {
    height: 420px; /* Slightly shorter on mobile */
  }

  .ferry-deals-header h2 {
    font-size: 1.8rem;
  }
}

/* ── Small phones (≤ 480px) ── */
@media (max-width: 480px) {
  /* ── HERO ── */
  .ferries-hero-content {
    padding: 80px 12px 32px;
  }

  .ferries-hero-content h1 {
    font-size: clamp(1.45rem, 6.5vw, 1.9rem);
    margin-bottom: 10px;
  }

  .ferries-hero-content > p {
    font-size: 0.86rem;
    margin: 0 0 18px;
  }

  .ferries-search-bar {
    padding: 8px;
    gap: 5px;
    margin: 0 0 16px;
  }

  .ferries-search-field {
    padding: 9px 10px;
  }

  .ferries-search-btn {
    padding: 11px;
    font-size: 0.86rem;
  }

  .ferries-hero-stats {
    padding: 10px 6px;
  }

  .ferries-stat {
    min-width: 60px;
    padding: 4px 6px;
  }

  .ferries-stat strong {
    font-size: 1.1rem;
  }

  .ferries-stat span {
    font-size: 0.66rem;
  }

  /* ── CARDS & SECTIONS ── */
  .ferry-container,
  .ferry-about-section,
  .ferry-deals-section {
    padding: 28px 12px;
  }

  .ferry-section-header h2,
  .ferry-about-content h2,
  .ferry-deals-header h2 {
    font-size: 1.5rem;
  }

  .ferry-card-image {
    height: 160px;
  }

  .ferry-about-image {
    height: 210px;
  }
}

/* =============================================
   DESTINATIONS PAGE — Mobile & Tablet Responsive
   Covers: hero section, cards grid, about section,
           deals section (flat-swap on touch)
   ============================================= */

/* ── Large screens (≤ 1200px) ── */
@media (max-width: 1200px) {
  .destination-cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .deals-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ── Tablets Landscape (≤ 992px) ── */
@media (max-width: 992px) {
  .destination-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .destination-about-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .destination-about-image {
    height: 400px;
    order: -1;
  }

  .deals-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── Tablets Portrait (≤ 768px) ── */
@media (max-width: 768px) {
  .dest-hero-content {
    padding: 120px 16px 60px;
  }

  .dest-hero-stats {
    gap: 10px;
    padding: 16px 20px;
  }

  .dest-stat {
    padding: 0 16px;
  }

  .dest-stat-divider {
    display: none;
  }

  .dest-hero-search {
    flex-direction: column;
    border-radius: 16px;
    padding: 16px;
  }

  .dest-search-btn {
    width: 100%;
    text-align: center;
  }

  .destination-section-header h2,
  .destination-about-content h2,
  .deals-header h2 {
    font-size: 2rem;
  }

  .destination-cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .destination-description {
    min-height: auto;
  }

  .destination-about-features {
    gap: 20px;
  }

  .destination-feature-item {
    flex-direction: column;
    text-align: center;
  }

  .destination-feature-item .feature-icon {
    margin: 0 auto;
  }

  .deals-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Disable 3D flip on touch screens for deals */
  .deal-card {
    height: auto;
    min-height: 340px;
    perspective: none;
    cursor: pointer;
  }

  .deal-front {
    position: relative;
    transform: none !important;
    backface-visibility: visible;
    border-radius: 16px;
    padding: 24px;
    height: auto;
  }

  .deal-back {
    display: none; /* Hidden until .flipped toggled via JS */
  }

  /* When parent has .flipped class, swap visibility */
  .deal-card.flipped .deal-front {
    display: none;
  }

  .deal-card.flipped .deal-back {
    display: flex;
    position: relative;
    transform: none !important;
    backface-visibility: visible;
    border-radius: 16px;
    padding: 24px;
    height: auto;
    flex-direction: column;
    justify-content: center;
  }
}

/* ── Mobile Portrait (≤ 480px) ── */
@media (max-width: 480px) {
  .destination-container,
  .destination-about-section,
  .destination-deals-section,
  .tours-container {
    padding: 50px 16px;
  }

  .destination-section-header h2,
  .destination-about-content h2,
  .deals-header h2 {
    font-size: 1.75rem;
  }

  .destination-card-image {
    height: 200px;
  }

  .destination-name {
    font-size: 1.3rem;
  }

  .destination-feature-item .feature-icon {
    width: 60px;
    height: 60px;
    font-size: 2rem;
  }

  .deal-destination h3 {
    font-size: 1.4rem;
  }

  .deal-new-price {
    font-size: 2rem;
  }
}

