/* ============================================================
   ROOT VARIABLES – DARK BLUE TOURING SYSTEM
   ============================================================ */

:root {

    /* =========================
       NEUTRALS
    ========================== */

    --white-pure: #ffffff;
    --white-cool: #f1f5f9;
    --grey-light: #cbd5e1;
    --grey-medium: #64748b;

    --black-true: #000000;
    --black-deep: #070a12;
    --black-soft: #0f172a;

    /* =========================
       PRIMARY BLUES
    ========================== */

    --blue-900: #0b132b;   /* deep midnight */
    --blue-800: #0f1c3f;   /* header / nav */
    --blue-700: #142850;   /* section blocks */
    --blue-600: #1e3a8a;   /* interactive blue */
    --blue-500: #2563eb;   /* hover / highlight */
    --blue-400: #3b82f6;   /* subtle accent */

    /* =========================
       GREEN SYSTEM
    ========================== */

    --green-700: #065f46;  /* dark eco */
    --green-600: #047857;  /* strong eco */
    --green-500: #10b981;  /* success */
    --green-400: #34d399;  /* light accent */

    /* =========================
       WARM ACCENTS
    ========================== */

    --orange-500: #f97316; /* primary CTA */
    --orange-600: #ea580c; /* hover CTA */

    --red-600: #dc2626;    /* urgency */
    --red-700: #b91c1c;    /* deeper urgency */

    /* =========================
       BACKGROUNDS
    ========================== */

    --bg-main: var(--blue-900);
    --bg-elevated: var(--blue-800);
    --bg-section: var(--blue-700);
    --bg-light: #f8fafc;

    /* =========================
       EFFECTS
    ========================== */

    --shadow-soft: 0 8px 30px rgba(0,0,0,0.45);
    --shadow-blue: 0 8px 30px rgba(37,99,235,0.25);

 


 --font-main: 'Sora', sans-serif;
--font-headline: 'League Spartan', sans-serif;
--font-section: 'Manrope', sans-serif;
--font-serif: 'Playfair Display', serif;



    --fs-sm: 0.875rem;
    --fs-md: 1rem;
    --fs-lg: 1.25rem;
    --fs-xl: 1.75rem;
    --fs-xxl: 2.6rem;

    --radius: 8px;
    --shadow-soft: 0 6px 20px rgba(0,0,0,0.35);

    --space-3: 12px;
    --space-4: 16px;
    --space-5: 24px;
    --space-6: 32px;
    --space-7: 48px;

    --max-width: 1440px;
}

h1, h2, h3, h4, h5, h6{
    margin: 20px 0px;
    color: var(--blue-700);
}

p{font-size:1.2em; margin-bottom: 15px; line-height: 1.5em}
.textcenter{text-align:center;}
.textleft{text-align:left; line-height: 1.5em;}
.section{font-size:1.2em;}
.bold{font-weight:bold;}
.white{color:#fff;}
.orange{color:var(--ember-orange);}
.red{color:var(--red-600) !important;}
.lightblue{color:var(--nav-accent);}

.kevlar {
    background-image: url('../img/deco/kevlar.webp');
    background-position: center;
    background-repeat: repeat;
    background-color: #E1F5FF;
    padding-top: 80px !important;
    padding-bottom: 80px !important;
}

.kevlar h2,
.kevlar h3,
.kevlar h4 {
    color: #EBD507 !important;
    text-shadow: 
        0 2px 4px rgba(0,0,0,0.6),
        0 0 8px rgba(0,0,0,0.4);
}

.kevlar p {
    color: #FFF !important;
    text-shadow: 
        0 2px 4px rgba(0,0,0,0.6),
        0 0 8px rgba(0,0,0,0.4);
}

.kevlar img{border:3px solid #FFF;}
/* ============================================================
   BUTTONS
   ============================================================ */

.btn-primary {
    display: inline-block;
    padding: 12px 26px;

    font-family: var(--font-headline);
    font-size: 1.1em;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;

    color: #fff !important;
    background: var(--red-600);
    border-radius: 20px;

    cursor: pointer;
    border: none;

    transition:
        background 0.25s ease,
        transform 0.15s ease;
}

.btn-primary:hover {
    background: var(--orange-500);
    transform: translateY(-2px);
    color: #fff !important;
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.7rem;
}

.btn-lg {
    padding: 16px 34px;
    font-size: 0.9rem;
}


.card {
    background: var(--blue-800);
    padding: var(--space-5);
    border-radius: 12px;
    color: var(--white-pure) !important;

    transition: transform 0.2s ease, background 0.25s ease;
}

.card:hover {
    transform: translateY(-4px);
    background: var(--blue-700);
}
.card h2, .card h3, .card h4 {
    font-family: var(--font-headline);
    margin-bottom: 12px;
    text-transform: uppercase;
    text-align: center;
    width: 100%;
    color: var(--orange-500) !important;
}
.card p {
    font-size: 1.2em;
    text-align: center;
    color: var(--white-pure) !important;
}
.tour-card-faq {
    background: var(--blue-800);
    padding: var(--space-5);
    border-radius: 12px;
    color: var(--white-cool);
}
.tour-card-faq h2 {
    font-family: var(--font-headline);
    text-transform: uppercase;
    text-align: center;
    width: 100%;
    color: var(--orange-500) !important;
    border-radius: 8px;
}
.tour-card, .tour-card-faq p {
    font-size: 1.2em;
    line-height: 1.6em;
    text-align: center;
    color: var(--white-pure) !important;
}
.tour-card a {
    font-family: var(--font-headline);
    display: inline-block;
    margin-top: 10px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;

    /*padding: 10px 22px;*/
    border-radius: 20px;

    background: var(--red-600);
    color: var(--white-pure);

    cursor: pointer;
    transition: background 0.2s ease, transform 0.15s ease;
}

.tour-card a:hover {
    background: var(--orange-500);
    transform: translateY(-2px);
}
.badge-available {
    display: inline-block;
    padding: 4px 10px;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 12px;

    background: var(--green-600);
    color: var(--white-pure);
}
.tour-card img,
.bike-card img {
    border-radius: 16px;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.15),
        rgba(0,0,0,0.55)
    );
}


.gallery-grid img {
    border-radius: var(--radius-soft);
}

.testimonial-list {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: var(--space-5);
}

.testimonial {
    font-style: italic;
}

.testimonial span {
    color: var(--ember-orange);
}

/* ==============================
   BACK TO TOP BUTTON
   ============================== */
#backToTop {
  position: fixed;
  bottom: 35px;
  right: 35px;
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
   background: var(--asphalt-grey);
  color: #FFF !important;    
  box-shadow:
    0 0 12px rgba(239,108,60,0.45),
    0 0 28px rgba(173,69,46,0.25);
    
  font-size: 1.4rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  z-index: 1000;
}

#backToTop:hover {
 background: var(--deep-black);
  color: #FFF !important;  
  box-shadow:
    0 0 12px rgba(239,108,60,0.45),
    0 0 28px rgba(173,69,46,0.25);
}

#backToTop.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* hidden default state */
#backToTop:not(.show) {
  transform: translateY(60px);
}

/* mobile tweaks */
@media (max-width: 600px) {
      
    #backToTop {
    width: 44px;
    height: 44px;
    bottom: 25px;
    right: 20px;
    font-size: 1.2rem;
  }
}


@keyframes bounceUp {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}




/*
.section {
    position: relative;
}

.section::after {
    content: '';
    display: block;
    height: 1px;
    margin-top: var(--space-7);
    background: linear-gradient(
        90deg,
        transparent,
        rgba(239,108,60,0.25),
        transparent
    );
}
*/


/* ============================================================
   SECTIONS
   ============================================================ */

section {
    margin: 0;
    font-size: 1.0em;
}

.section {
    
    padding: 30px 10px;
}

.section h2 {
    margin-bottom: 25px;
    letter-spacing: 1px;
    color: #DF0003;
} 

.section p {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    
    line-height: 1.7;
    color: var(--grey-medium);
}

.grid-3 {
    row-gap: 32px;
}
/* ============================================================
   TESTIMONIAL
   ============================================================ */

.testimonial {
    background: var(--blue-800);
    border-radius: 12px;
    padding: var(--space-5);
    color: var(--white-cool);
    transition: transform 0.2s ease;
}

.testimonial:hover {
    transform: translateY(-3px);
}
/* ============================================================
   FOOTER
   ============================================================ */

.footer {
    background: linear-gradient(
        to top,
        var(--blue-900),
        var(--blue-800)
    );
    padding: var(--space-7) 0;
}

.footer h2, .footer h3, .footer h4 {
    font-family: var(--font-headline);
    color: var(--orange-600);
}

.footer p {
    color: var(--grey-light);
    font-size: 1.2em;
}

.footer a {
    color: var(--grey-light);
    transition: color 0.2s ease;
}

.footer a:hover {
    color: var(--orange-500);
}

.footer img {
    border-radius: 20px;
}
/* ============================================================
   CONTACT INFO
   ============================================================ */

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: var(--fs-md);
    color: var(--white-cool);
}

.contact-info a {
    color: var(--white-cool);
    transition: color 0.2s ease;
}

.contact-info a:hover {
    color: var(--orange-500);
}

.contact-info .icon {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.contact-info svg {
    width: 18px;
    height: 18px;
    fill: var(--blue-500);
    opacity: 0.9;
}

.contact-info .whatsapp svg {
    fill: var(--green-500);
    color: #FFF;
}


/* ============================================================
   TESTIMONIAL MULTI-COLUMN CAROUSEL
   ============================================================ */

.testimonial-carousel {
    position: relative;
    padding: 40px;
    box-sizing: border-box;
    overflow: hidden;
}

.testimonial-viewport {
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    gap: 24px;
    transition: transform 0.6s ease;
}

/* 4 cards visible on desktop */
.testimonial {
    flex: 0 0 calc(25% - 18px);
    text-align: center;
    font-size: 1.2em;
}

/* Tablet: 2 visible */
@media (max-width: 992px) {
    .testimonial {
        flex: 0 0 calc(50% - 12px);
    }
}

/* Mobile: 1 visible */
@media (max-width: 600px) {
    .testimonial {
        flex: 0 0 100%;
    }
}

/* NAV ARROWS */

.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.6);
    border: none;
    color: #fff;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer;
    z-index: 5;
    transition: background 0.25s ease, transform 0.2s ease;
}

.testimonial-nav:hover {
    background: rgba(239,108,60,0.9);
    transform: translateY(-50%) scale(1.05);
}

.testimonial-nav.prev { left: -16px; }
.testimonial-nav.next { right: -16px; }

/* ============================================================
   GLIGHTBOX – HARLEY THEME OVERRIDES
   ============================================================ */

.glightbox-clean .gslide-description {
    background: transparent;
}

.glightbox-clean .gclose,
.glightbox-clean .gnext,
.glightbox-clean .gprev {
    color: #fff;
    opacity: 0.85;
}

.glightbox-clean .gclose:hover,
.glightbox-clean .gnext:hover,
.glightbox-clean .gprev:hover {
    color: var(--ember-orange);
    opacity: 1;
}

.glightbox-container {
    background: rgba(0,0,0,0.95);
}

.glightbox img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 20px;
}

.contact-item i {
    font-size: 0.85rem;
    opacity: 0.85;
    min-width: 14px;
}

.contact-item.whatsapp i {
    color: #25D366;
}

@media (max-width: 768px) {

    .footer .container {
        grid-template-columns: 1fr;
        text-align: center;
        font-size: 1em;
    }
    .grid-2,
    .grid-3,
    .grid-4,
    .grid-5,
    .grid-6,
    .testimonial-list {
        grid-template-columns: 1fr;
    }
 

    .site-header .logo img {
        height: 48px;
    }
}

.breadcrumb{
  width: 100%;
  margin: 3px 0 3px 0;
  padding: 6px 0 0px 0;
  font-family: var(--font-headline);
 
}

.breadcrumb ol{
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  justify-content: center; /* textcenter vibe */
}

.breadcrumb li{
  font-size: 0.85em;
  opacity: 0.9;
    text-transform: uppercase;
}

.breadcrumb li a{
  text-decoration: none;
  opacity: 0.9;
  color: var(--blue-600);      
}

.breadcrumb li a:hover{
  opacity: 1;
  text-decoration: none;
  color: var(--blue-900);        
}

.breadcrumb li::after{
  content: "/";
  margin-left: 8px;
  opacity: 0.35;
}


.breadcrumb li.current::after{
  content: "";
}
.nopadding{padding: 5px;}
 
 
small{
    font-family: var(--font-headline);
    text-transform: uppercase;
    font-weight: bold;
    color: #fff;
    border: 3px solid #fff;
    padding: 5px;
    font-size: 0.7em;
}
 
/* ============================================================
   ITINERARY – FULL BLUE SYSTEM
   ============================================================ */

.itinerary {
    padding: 80px 0;
    font-family: var(--font-main);
    text-align: center;
    background: var(--blue-900);
    color: var(--white-cool);
}

.itinerary p {
    color: var(--grey-light);
    font-size: 1em !important;
}

p.itinerary-intro{
    
    font-size:1.5em !important;
}
/* =========================
   HEADER
========================= */

.itinerary-header {
    margin: 0 auto 40px;
    text-align: center;
}

.itinerary-header h1 {
    font-weight: 800;
    letter-spacing: 0.06em;
    color: var(--white-pure);
}

.itinerary-header h2 {
    color: var(--blue-400);
    font-weight: 800;
    letter-spacing: 0.05em;
}

/* =========================
   FACTS BAR
========================= */

.itinerary-facts {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 16px;

    background: var(--blue-800);
    color: var(--white-cool);
    padding: 24px;
    border-radius: 14px;
    margin-bottom: 20px;
}

.itinerary-facts > div {
    flex: 1 1 220px;
    display: flex;
    flex-direction: column;
    text-align: center;
    min-height: 50px;
}

.itinerary-facts h3,
.itinerary-facts strong {
    font-size: 1.15em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--blue-400);
    margin-bottom: 6px;
    display: block;
    font-family: var(--font-headline);
}

.itinerary-facts p {
    font-size: 1.25em;
    line-height: 1.4;
    color: var(--white-pure);
}

.itinerary-facts br {
    display: none;
}

@media (min-width: 900px) {
    .itinerary-facts > div:not(:last-child) {
        border-right: 1px solid rgba(255,255,255,0.06);
    }
}

/* =========================
   MAIN SECTIONS
========================= */

.itinerary-section {
    margin: 0 auto 40px;
    background-color: var(--blue-800);
    color: var(--white-cool);
    padding: 20px;
    border-radius: 14px;
}

.itinerary-section h2,
.itinerary-section h3,
.itinerary-section h4 {
    color: var(--blue-400) !important;
    text-transform: uppercase !important;
    font-family: var(--font-headline) !important;
}

.itinerary-section p {
    color: var(--grey-light);
    line-height: 1.6em;
    font-size: 1em;
}

.itinerary ul,
.itinerary-section ul {
    color: var(--grey-light);
    list-style: none;
}

.itinerary ul li,
.itinerary-section ul li {
    color: var(--grey-light);
}

/* =========================
   DAY BLOCKS
========================= */

.itinerary-days .day {
    background: var(--blue-800);
    color: var(--white-cool);
    padding: 24px;
    border-radius: 16px;
    margin-bottom: 30px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.itinerary-days .day:hover {
    background: var(--blue-700);
    transform: translateY(-3px);
}

/* =========================
   HIGHLIGHT SECTION
========================= */

.itinerary-section.highlight {
    background: linear-gradient(
        135deg,
        var(--blue-700),
        var(--blue-600)
    );
    color: var(--white-pure);
    padding: 30px !important;
    border-radius: 16px;
}

.itinerary-section.highlight h3 {
    color: var(--white-pure) !important;
    font-size: 1.5em;
}

.itinerary-section.highlight p {
    font-size: 1em;
    font-family: var(--font-main) !important;
}

/* =========================
   ROUTE HIGHLIGHTS
========================= */

.route-highlights {
    color: var(--grey-light);
    line-height: 1.9;
}

/* =========================
   COLUMNS
========================= */

.itinerary-columns {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 !important;
    margin-top: 40px;
}

/* ============================================================
   ITINERARY CARDS – FULL BLUE SYSTEM
   ============================================================ */

@media (min-width: 900px) {
  .itinerary-columns {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: start;
  }
}

.itinerary-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 40px;
}

@media (min-width: 768px) {
  .itinerary-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .itinerary-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* =========================
   DAY CARD BASE
========================= */

.itinerary-cards .day-card {
  border: 2px solid rgba(255,255,255,0.05);
  background: var(--blue-800);
}

.itinerary-cards .route-card {
  background: var(--blue-700);
  border: 2px solid rgba(255,255,255,0.04);
}

.itinerary-cards .route-card p,
.itinerary-cards .route-card i {
  opacity: 1;
  color: var(--grey-light);
}

/* =========================
   DAY CARD STRUCTURE
========================= */

.day-card {
  border-radius: 18px;
  padding: 26px;
  color: var(--white-cool);
  transition: transform .2s ease, background .2s ease;
}

.day-card:hover {
  transform: translateY(-4px);
  background: var(--blue-700);
}

/* =========================
   DAY LABELS
========================= */

.day-label-black {
  display: inline-block;
  width: 100%;
  font-size: 1em;
  text-transform: uppercase;
  padding: 8px;
  border-radius: 20px;
  margin-bottom: 8px;
  font-family: var(--font-headline);
  background: var(--blue-600);
  color: var(--white-pure);
}

.day-label-orange {
  display: inline-block;
  width: 100%;
  font-size: 1em;
  text-transform: uppercase;
  padding: 8px;
  border-radius: 20px;
  margin-bottom: 8px;
  font-family: var(--font-headline);
  background: var(--blue-500);
  color: var(--white-pure);
}

/* =========================
   DAY TYPOGRAPHY
========================= */

.day-number {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.day-title {
  font-size: 1.1em;
  font-weight: 700;
  color: var(--white-pure);
  margin: 0 0 4px 0;
}

.day-distance {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue-400);
  margin-left: auto;
}

.day-subtitle {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  margin: 8px 0 16px;
  line-height: 1.5;
}

.day-card p {
  font-size: 1.2em !important;
  color: var(--grey-light);
}

/* =========================
   DAY GRID CONTENT
========================= */

.day-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
  gap: 24px;
  margin-top: 16px;
}

.day-grid h5 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-400);
  margin-bottom: 8px;
}

.day-grid p {
  font-size: 1.2em;
  color: var(--grey-light);
  line-height: 1.6;
}

.day-grid p.overnight {
  margin-top: 14px;
  font-weight: 600;
  color: var(--white-pure);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 10px;
}
/* ============================================================
   ROUTE / PRICE / ICONS
   ============================================================ */

.route-points i {
  color: var(--blue-400);
  margin-right: 8px;
  width: 18px;
  text-align: center;
}

p.route-points {
  line-height: 1.7;
  font-size: 1.1em !important;
}

.day-label i,
.day-distance i {
  margin-right: 6px;
  color: rgba(255,255,255,0.6);
}

.price-block i {
  color: var(--blue-400);
  margin-right: 8px;
  width: 18px;
  text-align: center;
}

.price-block {
  font-weight: 600;
  margin-top: 8px;
  color: var(--white-pure);
}

.price-block span {
  white-space: nowrap;
}

.route-card p {
  font-size: 1.2em;
  line-height: 1.6;
  color: var(--grey-light);
}

.route-card span.day-label-black {
  margin-top: 10px !important;
  margin-bottom: 10px !important;
}


/* ============================================================
   WEEKEND TOURS LAYOUT
   ============================================================ */

.weekend-tours {
  padding: 20px 0;
  background: var(--blue-900);
  color: var(--white-cool);
}

.weekend-tours h2 {
  font-size: 2.4rem;
  margin-bottom: 10px;
  letter-spacing: 1px;
  color: var(--white-pure);
}

.weekend-tours p.textcenter {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.7;
  color: var(--grey-light);
}


/* ============================================================
   WEEKEND TOUR CARDS
   ============================================================ */

.weekend-tour-card {
  background: var(--blue-800);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 25px;
  margin-bottom: 25px;
  color: var(--white-cool);
  text-align: center;
  transition: transform .2s ease, background .2s ease;
}

.weekend-tour-card:hover {
  transform: translateY(-4px);
  background: var(--blue-700);
}

.weekend-tour-card h3 {
  margin-top: 10px;
  margin-bottom: 5px;
  letter-spacing: 0.5px;
  font-size: 1.4rem;
  color: var(--white-pure);
}

.weekend-tour-card p {
  color: var(--grey-light);
}

.weekend-tour-card img {
  border-radius: 20px;
}

.weekend-tour-card span.day-label-black + h3 {
  margin-top: 8px;
}

/* GRID WRAPPER */

.weekend-tours .tour-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}

@media (min-width: 900px) {
  .weekend-tours .tour-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .weekend-tour-card {
    padding: 35px;
  }
}

.weekend-tours .btn {
  margin-top: 10px;
}


/* ============================================================
   QUICK TOURS SECTION
   ============================================================ */

.quicktours {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px;
}

.quicktours h2 {
  margin: 50px 0 20px;
  font-size: 1.35em;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
  color: var(--white-pure);
}

.quicktours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.quicktour-card {
  display: block;
  padding: 18px 20px;
  background: var(--blue-800);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
  color: var(--white-cool);
}

.quicktour-card:hover {
  background: var(--blue-700);
  transform: translateY(-2px);
}

.qt-title {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  text-align: center;
  color: var(--white-pure);
}

.qt-meta {
  font-size: 1.0em;
  opacity: 0.8;
  text-align: center;
  color: var(--grey-light);
}


/* ============================================================
   QUICK TOURS FLAT LINKS
   ============================================================ */

.quicktours-flat {
  margin-top: 40px;
}

.quicktours-flat .quicktours-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.quicktour-link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 14px;
  background: var(--blue-800);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.2em;
  line-height: 1.2;
  transition: background 0.15s ease, transform 0.15s ease;
  color: var(--white-cool);
  text-align: left;
}

.quicktour-link:hover {
  background: var(--blue-700);
  transform: translateY(-1px);
}

.quicktour-link .qt-title {
  font-weight: 600;
  white-space: nowrap;
  color: var(--blue-400);
}

.quicktour-link .qt-meta {
  font-size: 1em;
  opacity: 0.75;
  color: var(--grey-light);
}
/* ============================================================
   RESPONSIVE QUICK TOURS
   ============================================================ */

@media (max-width: 600px) {
  .quicktour-link {
    width: 100%;
    align-items: flex-start;
  }

  .qt-title,
  .qt-meta {
    white-space: normal;
    width: 100%;
  }
}


/* ============================================================
   SUPPORT SECTION
   ============================================================ */

.support-grid {
  gap: 3rem;
}

.support-col h2 {
  margin-top: 0;
  color: var(--white-pure);
}

.support-features {
  margin: 1rem 0 2rem;
  padding-left: 1.2rem;
  color: var(--grey-light);
}

.support-highlight {
  font-weight: 600;
  margin: 1.5rem 0;
  color: var(--blue-400);
}


/* ============================================================
   FOOTER FIX
   ============================================================ */

.footer .nounderline {
  border: 0 !important;
  text-decoration: none !important;
}


/* ============================================================
   VIDEO WRAPPER
   ============================================================ */

.video-wrap {
  position: relative;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto var(--space-5);
  padding-top: 56.25%;
  border-radius: 16px;
  overflow: hidden;
  background: var(--blue-800);
}

.video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 600px) {
  .video-wrap {
    max-width: 100%;
  }
}


/* ============================================================
   FLOATING CHAT BUTTONS
   ============================================================ */

.chat-buttons {
  position: fixed;
  bottom: 100px;
  right: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

.chat-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-700);
  transition: transform 0.2s ease, background 0.2s ease;
  cursor: pointer;
}

.chat-btn img {
  width: 26px;
  height: 26px;
}

.chat-btn:hover {
  transform: translateY(-3px);
  background: var(--blue-600);
}

/* Platform Variants – Still Brand Correct */

.chat-btn.whatsapp {
  background: var(--green-600);
    color: #FFF !important;
}

.chat-btn.whatsapp:hover {
  background: var(--green-500);
    color: #FFF !important;
}

.chat-btn.messenger {
  background: var(--blue-600);
    color: #FFF !important;
}

.chat-btn.messenger:hover {
  background: var(--blue-500);
    color: #FFF !important;
}


/* ============================================================
   MOBILE CHAT BUTTONS
   ============================================================ */

@media (max-width: 600px) {

  .chat-buttons {
    bottom: 25px;
    left: 18px;
    gap: 8px;
  }

  .chat-btn {
    width: 46px;
    height: 46px;
  }

  .chat-btn img {
    width: 22px;
    height: 22px;
  }

}
 
/* Footer Layout Fix */
.footer .container {
  display: grid;
  grid-template-columns: 1.4fr 1.4fr 1fr 1fr;
  gap: 60px;
  align-items: start;
    font-size: 1.2em;
}

/* Center ONLY logo columns */
.footer-col.textcenter {
  text-align: center;
}

.footer-col.textcenter img {
  height: 180px;
  width: auto;
  display: block;
  margin: 15px auto;
}

/* Mobile Footer */
@media (max-width: 900px) {

  .footer .container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: left;
  }

  /* Center logo columns on mobile */
  .footer-col.textcenter {
    text-align: center;
  }

  .footer-col.textcenter img {
    height: 120px;   /* slightly smaller for mobile */
    margin: 10px auto;
  }

}
.section{background-color: #dcdcdc !important;}
.section{background-color: #E1F5FF !important;}


/* ================================
   ANGLED SECTION SYSTEM
================================ */

.clip {
    position: relative;
    overflow: hidden;
}

/* optional: ensures layers behave */
.clip > * {
    position: relative;
    z-index: 2;
}

.clip-bottom-soft::after {
    content: "";
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 120%;
    height: 120px;
    background: #E1F5FF;
    transform: skewY(-5deg);
    z-index: 1;
}

.clip-bottom-sharp::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 120px;
    background: #E1F5FF;

    clip-path: polygon(
        0 40%, 
        100% 0%, 
        100% 100%, 
        0 100%
    );
}

.clip-bottom-reverse::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 120px;
    background: #E1F5FF;

    clip-path: polygon(
        0 0%, 
        100% 40%, 
        100% 100%, 
        0 100%
    );
}

.clip-top-soft::before {
    content: "";
    position: absolute;
    top: -60px;
    left: 0;
    width: 120%;
    height: 120px;
    background: #E1F5FF;
    transform: skewY(5deg);
    z-index: 1;
}

.clip-top-sharp::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 120px;
    background: #E1F5FF;

    clip-path: polygon(
        0 0, 
        100% 0, 
        100% 60%, 
        0 100%
    );
}

.clip-bottom-soft-shadow::before {
    content: "";
    position: absolute;
    bottom: -70px;
    left: 0;
    width: 120%;
    height: 120px;
    background: rgba(0,0,0,0.15);
    transform: skewY(-5deg);
    z-index: 1;
}

.clip-bottom-soft-shadow::after {
    content: "";
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 120%;
    height: 120px;
    background: #E1F5FF;
    transform: skewY(-5deg);
    z-index: 2;
}

/* height control */
.clip-sm::after,
.clip-sm::before {
    height: 80px;
}

.clip-lg::after,
.clip-lg::before {
    height: 160px;
}

/* stronger angle */
.clip-strong::after,
.clip-strong::before {
    transform: skewY(-8deg);
}

/* softer angle */
.clip-light::after,
.clip-light::before {
    transform: skewY(-3deg);
}

.clip-bottom-soft-shadow::before {
    content: "";
    position: absolute;
    bottom: -80px;
    left: -10%;
    width: 120%;
    height: 140px;
    background: rgba(0,0,0,0.15);
    transform: skewY(-5deg);
    z-index: 1;
}

.clip-bottom-soft-shadow::after {
    content: "";
    position: absolute;
    bottom: -70px;
    left: -10%;
    width: 120%;
    height: 140px;
    background: #E1F5FF;
    transform: skewY(-5deg);
    z-index: 2;
}
.clip {
    transform: translateZ(0); /* forces GPU rendering */
}

background: linear-gradient(
    to bottom,
    #ffffff 0%,
    #f5f5f5 100%
);

/* ================================
   GRID LAYOUT
================================ */

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.grid-col h2 {
    margin-bottom: 15px;
}

.grid-col h3 {
    margin-top: 30px;
    margin-bottom: 10px;
}

/* responsive */
@media (max-width: 900px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }
}

.list-check {
    list-style: none;
    padding: 0;
}

.list-check li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
}

.list-check li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #e00000;
    font-weight: bold;
}

.list-clean {
    list-style: none;
    padding: 0;
}

.list-clean li {
    margin-bottom: 8px;
    opacity: 0.85;
}

.filler-card {
    pointer-events: none;
    box-shadow: none;
    background: none;
}

.filler-card img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    opacity: 0.85;
}

.tour-images {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
}

/* kill any inherited grid/card behaviour */
.tour-images .tour-item {
    flex: 0 0 auto;
    display: block;
}

/* 🔥 THIS is the key override */
.tour-images .tour-item img {
    height: 320px !important;
    width: auto !important;
    max-width: none !important;
    object-fit: contain !important;
    display: block;
}

/* ============================================================
   MOBILE ADJUSTMENTS
============================================================ */

@media (max-width: 768px) {

    .tour-images {
        gap: 12px;
        margin: 20px 0;
    }

    .tour-images .tour-item img {
        height: 220px !important; /* smaller but still impactful */
    }

}

@media (max-width: 480px) {

    .tour-images .tour-item img {
        height: 180px !important;
    }

}