/* =========================
   Design System: Variables
   ========================= */
:root{
  /* --------------------
     Colors (Dark Subtle)
     -------------------- */
  --bg-main: #1F1F1F;           /* page background */
  --bg-secondary: #2A2A2A;      /* alternate sections */
  --bg-slate: #181818;          /* navbar scrolled */
  --bg-card: #262626;           /* cards, panels */
  --bg-hover: rgba(0,0,0,0.4);   /* main dropdown hover (transparent black) */
  --bg-overlay: rgba(255,255,255,0.08);

  --text-heading: #F2F2F2;      /* headings */
  --text-main: #C9C9C9;         /* body text */
  --text-muted: #9A9A9A;        /* muted / secondary */

  --accent-primary: #F5C518;    /* main yellow */
  --accent-primary-dark: #E3B20E;
  --accent-secondary: #4BC9C9;  /* teal secondary */

  --border-color: #333333;

  /* --------------------
     Typography
     -------------------- */
  --font-main: 'Inter', 'Poppins', 'Roboto', sans-serif;
  --font-heading: 'Poppins', 'Inter', sans-serif;

  --fs-xxl: 42px;
  --fs-xl: 34px;
  --fs-lg: 28px;
  --fs-md: 20px;
  --fs-sm: 16px;
  --fs-xs: 14px;

  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;

  --lh-body: 1.6;
  --lh-title: 1.2;

  /* --------------------
     Spacing & Radii
     -------------------- */
  --space-xxl: 80px;
  --space-xl: 60px;
  --space-lg: 40px;
  --space-md: 25px;
  --space-sm: 15px;
  --space-xs: 8px;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-round: 50%;

  /* --------------------
     Shadows & Transitions
     -------------------- */
  --shadow-soft: 0 4px 12px rgba(0,0,0,0.25);
  --shadow-medium: 0 6px 20px rgba(0,0,0,0.35);
  --shadow-hover: 0 10px 25px rgba(0,0,0,0.45);

  --transition-fast: 0.18s ease;
  --transition-normal: 0.35s ease;
}

/* =========================
   Base / Global
   ========================= */
* { box-sizing: border-box; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
html,body { height: 100%; }
body {
  margin: 0;
  background: var(--bg-main);
  color: var(--text-main);
  font-family: var(--font-main);
  font-size: var(--fs-sm);
  line-height: var(--lh-body);
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

/* Headings */
h1,h2,h3,h4,h5,h6{
  font-family: var(--font-heading);
  color: var(--text-heading);
  margin: 0 0 var(--space-sm) 0;
  line-height: var(--lh-title);
  font-weight: var(--fw-bold);
}
h1{ font-size: var(--fs-xxl); }
h2{ font-size: var(--fs-xl); }
h3{ font-size: var(--fs-lg); }
h4{ font-size: var(--fs-md); }
h5{ font-size: var(--fs-sm); }
h6{ font-size: var(--fs-xs); }

/* Links */
a { color: var(--accent-primary); text-decoration: none; transition: color var(--transition-fast); }
a:hover { color: var(--accent-primary-dark); }

/* Utility */
.container{ width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 18px; }

/* =========================
   Navbar
   ========================= */
.navbar {
  padding: 12px 0;
  transition: background var(--transition-normal), padding var(--transition-normal), box-shadow var(--transition-normal);
  background: transparent;
}
.transparent-nav { background: transparent !important; }
.scrolled-nav { background: var(--bg-slate) !important; box-shadow: var(--shadow-soft); }

/* Nav links */
.navbar-nav { display: flex; gap: 8px; align-items: center; list-style: none; padding: 0; margin: 0; }
.navbar-nav .nav-link {
  display: inline-block;
  padding: 8px 12px;
  color: var(--text-main);
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast), background var(--transition-fast);
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus { color: var(--accent-primary); background: transparent; outline: none; }
.navbar-nav .nav-link.active { color: var(--accent-primary); }

/* Dropdown (main hover background: transparent black) */
.nav-item.dropdown { position: relative; }
.nav-item.dropdown > a.nav-link { cursor: pointer; }
.nav-item.dropdown:hover > a.nav-link {
  background-color: var(--bg-hover) !important; /* transparent black */
  color: #fff !important;
}

/* Dropdown menu */
.dropdown-menu {
  background: var(--bg-secondary) !important;
  border: 1px solid var(--border-color);
  padding: 8px 6px;
  min-width: 200px;
  border-radius: 8px;
  box-shadow: var(--shadow-medium);
}
.dropdown-menu .dropdown-item {
  color: var(--text-main) !important;
  padding: 8px 12px;
  border-radius: 6px;
  transition: color var(--transition-fast), background var(--transition-fast);
  background: transparent !important;
}
.dropdown-menu .dropdown-item:hover {
  color: var(--accent-primary) !important; /* yellow text on hover */
  background-color: transparent !important; /* no bg change */
}

/* Ensure dropdown toggles maintain caret color on dark bg */
.dropdown-toggle::after { margin-left: 8px; color: var(--text-main); }

/* =========================
   Buttons
   ========================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  padding: 10px 18px;
  border-radius: var(--radius-md);
  font-weight: var(--fw-medium);
  transition: transform var(--transition-fast), background var(--transition-fast), box-shadow var(--transition-fast);
}
.btn-primary {
  background: var(--accent-primary);
  color: #000;
}
.btn-primary:hover { background: var(--accent-primary-dark); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--text-main);
  border: 1px solid rgba(255,255,255,0.03);
}

/* Warning (map to previous .btn-warning) */
.btn-warning {
  background: var(--accent-primary-dark);
  color: #000;
}
.btn-warning:hover { background: var(--accent-primary); }

/* =========================
   Hero
   ========================= */
.hero-section {
  background-image: url('../images/website/bg.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  color: var(--text-heading);
}
.hero-section .hero-inner { padding: var(--space-lg) 16px; max-width: 1100px; }
.hero-section h1 { margin-top: 40%; font-size: var(--fs-xxl); }

/* =========================
   Floating / Expand buttons
   ========================= */
.floating-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--accent-primary);
  color: #fff;
  border-radius: var(--radius-round);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  z-index: 1100;
}
.floating-btn:hover { transform: scale(1.05); box-shadow: var(--shadow-hover); }

.expand-box {
  position: fixed;
  bottom: 90px;
  right: 12px;
  flex-direction: column;
  /* background: var(--bg-card); */
  padding: 12px;
  border-radius: 12px;
  display: none;
  /* box-shadow: var(--shadow-medium); */
  z-index: 1090;
  animation: fadeIn var(--transition-normal) ease;
}
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px);} to { opacity: 1; transform: translateY(0);} }

.icon-btn {
  width: 50px; height: 50px;
  border-radius: var(--radius-round);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 6px 0;
  font-size: 22px;
  color: white;
}
.whatsapp { background: #25D366; }
.call { background: #0984e3; }

/* =========================
   Cards / Feature boxes
   ========================= */
.card, .feature-box, .offer-card, .team-card {
  background: var(--bg-card);
  color: var(--text-main);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}
.card:hover, .feature-box:hover, .offer-card:hover, .team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

/* Feature specifics */
.feature-box { border-left: 5px solid var(--accent-primary); }
.feature-icon { font-size: 38px; color: var(--accent-primary); margin-bottom: 12px; }
.feature-title { color: var(--text-heading); font-weight: var(--fw-semibold); }

/* Offer card */
.offer-card { border-radius: 16px; }

/* Case study */
.case-study-box {
  background: rgba(245,197,24,0.08);
  border-left: 6px solid var(--accent-primary);
  padding: 18px;
  border-radius: 10px;
  color: var(--text-main);
  font-style: italic;
}
.case-study-box span{ font-weight:700; color:var(--accent-primary); }

/* =========================
   Team section
   ========================= */
.team-section { padding: var(--space-lg) 16px; text-align: center; }
.team-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.team-card {
  overflow: hidden;
  position: relative;
  animation: float 3s ease-in-out infinite;
}
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }

.team-img img { width:140px; height:140px; border-radius:50%; object-fit:cover; border: 4px solid rgba(255,255,255,0.05); margin-bottom: 14px; }
h3 { color: var(--text-heading); font-size: var(--fs-sm); }
.role { color: var(--text-muted); font-weight: var(--fw-semibold); }
.team-social { margin-top: 14px; display:flex; gap:12px; justify-content:center; opacity:0; transform:translateY(12px); transition: all var(--transition-normal); }
.team-card:hover .team-social { opacity:1; transform:translateY(0); }
.team-social a { font-size: 18px; color: var(--text-main); display:inline-flex; align-items:center; justify-content:center; width:36px; height:36px; border-radius:50%; background: rgba(255,255,255,0.02); text-decoration:none; }

/* =========================
   Logos slider (clients)
   ========================= */
.logos { overflow:hidden; padding: 30px 0; position: relative; white-space: nowrap; }
.logo_items { display:inline-block; animation: 35s slides linear infinite; }
.logo_items img { height: 80px; display: inline-block; margin: 0 24px; vertical-align: middle; }
.logos:hover .logo_items { animation-play-state: paused; }
@keyframes slides { from{ transform: translateX(0);} to{ transform: translateX(-100%);} }

/* Fade masks for logos */
.logos:before, .logos:after {
  content: ''; position: absolute; top:0; width:200px; height:100%; z-index:2;
}
.logos:before{ left:0; background: linear-gradient(to left, rgba(31,31,31,0), var(--bg-main)); }
.logos:after{ right:0; background: linear-gradient(to right, rgba(31,31,31,0), var(--bg-main)); }

/* =========================
   Policy / Content boxes
   ========================= */
.content-box {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow-medium);
  margin-bottom: var(--space-md);
  transform: translateY(12px);
  opacity: 0;
  transition: all 0.7s ease;
}
.content-box.reveal { transform: translateY(0); opacity: 1; }

.list-point { display:flex; gap: 10px; margin-bottom: 10px; align-items:flex-start; }
.list-point span { color: var(--accent-primary); font-weight: var(--fw-bold); }

/* =========================
   Footer
   ========================= */
footer {
  background: var(--bg-slate);
  color: #fff;
  padding: var(--space-lg) 0;
}
footer h5 { color: var(--text-heading); font-weight: var(--fw-bold); }
.footer-line { width:40px; height:3px; background: var(--accent-primary); margin-bottom:16px; border-radius:3px; }
.footer-contact i { color: var(--accent-primary); margin-right:8px; }
a.footer-link { color: #dddddd; display:block; margin-bottom:10px; transition: .3s; }
a.footer-link:hover { color: var(--accent-primary); padding-left:6px; }

/* footer bottom bar */
.footer-bottom2 {
  background-color: var(--accent-primary);
  color: #000;
  padding: 14px 20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  flex-wrap:wrap;
}
.footer-social { display:flex; gap:12px; align-items:center; }
.footer-social a { color: #fff; font-size:16px; background:#0c0c0c; width:34px; height:34px; display:inline-flex; align-items:center; justify-content:center; border-radius:50%; text-decoration:none; transition: background .3s; }
.footer-social a:hover { background:#3b3b3b; }

/* =========================
   Section title helper
   ========================= */
.section-title {
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-lg);
  color: var(--text-heading);
  text-align:center;
  position: relative;
}
.section-title::after { content:''; display:block; width:80px; height:4px; background:var(--accent-primary); margin:14px auto 0; border-radius:20px; }

/* =========================
   Utility / helpers
   ========================= */
.icon-bullet { color: var(--accent-primary); font-weight:700; margin-right:6px; }
.text-muted { color: var(--text-muted); }
.bg-alternate { background: var(--bg-secondary); }

/* =========================
   Responsive (Mobile-first)
   ========================= */
@media (max-width: 1200px){
  .team-container { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 992px){
  :root{
    --fs-xxl: 36px;
    --fs-xl: 30px;
    --fs-lg: 24px;
    --fs-md: 18px;
  }
  .team-container { grid-template-columns: repeat(1, 1fr); }
  .logo_items img { height: 70px; margin: 0 18px; }
  .hero-section { height: 60vh; }
}

@media (max-width: 768px){
  :root{
    --fs-xxl: 32px;
    --fs-xl: 28px;
    --fs-lg: 22px;
    --space-lg: 28px;
    --space-md: 20px;
  }
  .navbar-nav { gap: 4px; flex-wrap: wrap; }
  .container { padding: 0 14px; }
  .hero-section { height: 50vh; padding: 24px 12px; }
  .floating-btn { width:54px; height:54px; bottom:16px; right:16px; font-size:24px; }
  .expand-box { right:8px; bottom:78px; }
  .logo_items img { height: 60px; margin: 0 14px; }
  .section-title { font-size: var(--fs-lg); margin-bottom: 28px; }
}

/* Very small phones */
@media (max-width: 420px){
  :root{
    --fs-xxl: 28px;
    --fs-xl: 24px;
    --fs-lg: 20px;
    --fs-md: 16px;
  }
  .hero-section h1 { font-size: var(--fs-xl); }
  .container { padding: 0 12px; }
}

/* =========================
   Accessibility / Focus
   ========================= */
a:focus, button:focus, .nav-link:focus { outline: 2px solid rgba(245,197,24,0.18); outline-offset: 2px; }

/* =========================
   Small helpers to map old classes
   ========================= */
/* If you used .bg-alternare-g keep compatibility */
.bg-alternare-g { background: var(--bg-secondary); }
/* .whyus-heading mappings */ 
.whyus-heading { color: var(--accent-secondary); font-weight: 800; font-size: 30px; }
.whyus-highlight{color: var(--accent-primary-dark);}
/* End of stylesheet */




/* =========================
   Swiper Component (Styled)
   ========================= */

/* Container */
.swiper-container {
  width: 70vw;
  height: fit-content;
  overflow: hidden;
  border-radius: var(--radius-sm);
  position: relative;
  padding-bottom: 50px;

  background: transparent;
  font-family: var(--font-main);
  font-size: var(--fs-md);
}

/* Swiper Slide */
.swiper-slide {
  width: auto;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;

  background: var(--bg-card);                  /* replaced white */
  color: var(--text-main);

  border-radius: var(--radius-sm);
  overflow: hidden;
  padding: 0;

  font-family: var(--font-main);
  box-shadow: var(--shadow-soft);
}

/* Image Section */
.swiper-slide .ImgHolder {
  display: flex;
  width: 100%;
  height: auto;
  padding: 30px;

  background: var(--accent-secondary);         /* replaced #4361ee (blue) */
  border-bottom-left-radius: 20px;
}

/* Decorative top-right accent block effect */
.ContentHolder::before {
  content: '';
  position: absolute;
  top: -5px;
  right: 0;
  z-index: -1;

  width: 50px;
  height: 50px;
  background: var(--accent-secondary);         /* replaced #4361ee */
}

/* Content Area */
.ContentHolder {
  position: relative;
  padding: 10px;
  width: 100%;
  background: var(--bg-card);
  border-top-right-radius: 20px;
}

/* Pagination */
.swiper-pagination-bullet {
  background: var(--bg-card);
  border: 1px solid var(--accent-secondary);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: var(--accent-secondary);
}

/* Navigation Buttons */
.swiper-button {
  border: 1px solid var(--text-main);
}

/* Slide Image */
.swiper-slide img {
  width: 80%;
  height: 200px;
  margin: auto;
  object-fit: cover;
  border-radius: 10%;
  /* border: 3px solid var(--accent-secondary); */
  /* outline: 2px solid var(--bg-card); */
}

/* Slide Title */
.swiper-slide h3 {
  font-size: var(--fs-md);
  font-weight: var(--fw-bold);
  text-align: center;
  color: var(--text-heading);
}

/* Slide Text */
.swiper-slide a {
  font-size: var(--fs-xs);
  padding: 5px;
  color: var(--accent-primary);
}

/* =========================
   Responsiveness
   ========================= */
@media (max-width: 638px) {
  .swiper-container {
    width: 100%;
  }
}

@media (max-width: 500px) {
  .swiper-container {
    width: 90vw;
  }
}

@media (max-width: 300px) {
  .swiper-container {
    width: 100%;
    border-radius: 0;
  }

  .swiper-slide,
  .swiper-slide .ImgHolder,
  .ContentHolder {
    border-radius: 0;
  }
}

/* ourteam */
.team-panels {
  display: flex;
  width: 100%;
  gap: 10px;
}

.panel {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 80vh;
  border-radius: 50px;
  color: white;
  cursor: pointer;
  flex: 0.5;
  margin: 10px 0;
  position: relative;
  transition: flex 0.7s ease-in;
  overflow: hidden;
}

.panel h3,
.panel h6,
.panel p {
  position: absolute;
  font-size: 24px;
  bottom: 20px;
  left: 5rem;
  margin: 0;
  opacity: 0;
}

.panel h3 {
  font-size: var(--fs-xl);
  font-weight: var(--fw-semibold);
  color: var(--accent-primary);
  bottom: 6rem;
}

.panel h6 {
  font-size: var(--fs-md);
  color: var(--accent-secondary);
  bottom: 4rem;
}

.panel p {
  font-size: var(--fs-sm);
  color: var(--text-main);
  bottom: 2rem;
}

.panel.active {
  flex: 5;
}

.panel.active h3,
.panel.active h6,
.panel.active p {
  opacity: 1;
  transition: opacity 0.3s ease-in 0.5s;
}

/* ============================================================
   Tablet Responsive (992px and below)
   ============================================================ */
@media (max-width: 992px) {
  .panel {
    height: 60vh;
    flex: 0.7;
  }
  .panel.active {
    flex: 3;
  }
}

/* ============================================================
   Mobile Responsive (768px and below)
   Stack panels vertically
   ============================================================ */
@media (max-width: 768px) {
  .team-panels {
    flex-direction: column;
    height: auto;
  }

  .panel {
    width: 100%;
    height: 45vh;
    flex: none;
    margin: 10px 0;
    border-radius: 30px;
  }

  .panel.active {
    height: 55vh;
  }

  /* Always show text on mobile */
  .panel h3,
  .panel h6,
  .panel p {
    left: 2rem;
    opacity: 1 !important;
  }
}

/* ============================================================
   Small Phones (480px and below)
   ============================================================ */
@media (max-width: 480px) {
  .panel {
    height: 40vh;
  }

  .panel.active {
    height: 50vh;
  }

  .panel h3 {
    font-size: var(--fs-lg);
    bottom: 8rem;
  }

  .panel h6 {
    font-size: var(--fs-sm);
    bottom: 5.6rem;
  }

  .panel p {
    font-size: var(--fs-xs);
    bottom: 1.7rem;
  }
}

/* Base team panel container */
.team-panels {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 15px;
    flex-wrap: nowrap;
}

/* MOBILE FIX */
@media (max-width: 768px) {
    .team-panels {
        flex-direction: column;
        gap: 20px;
    }

    .team-panels .panel {
        flex: unset !important;
        height: auto;
        min-height: 280px;
        padding: 25px;
        border-radius: 14px;
        background-size: cover;
        background-position: center;
        cursor: pointer;
    }

    /* Active panel effect simplified for mobile */
    .team-panels .panel.active {
        transform: scale(1.03);
        box-shadow: 0px 6px 20px rgba(0,0,0,0.3);
    }

    /* Text always visible on mobile */
    .team-panels .panel h3,
    .team-panels .panel h6,
    .team-panels .panel p {
        opacity: 1 !important;
        transform: translateY(0px) !important;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .team-panels .panel {
        min-height: 260px;
        padding: 20px;
    }

    .team-panels .panel h3 {
        font-size: 20px;
    }
}


/* events gallery  */
/* Gallery Container */
.gallery {
  column-count: 4;          /* Desktop: 4 columns */
  column-gap: 15px;
}

/* Images inside gallery */
.gallery img {
  width: 100%;
  margin-bottom: 15px;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

/* Hover Effect (Google Photos feel) */
.gallery img:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}

/* Responsive Breakpoints */
@media(max-width: 992px) {
  .gallery {
    column-count: 3;       /* Tablets */
  }
}

@media(max-width: 768px) {
  .gallery {
    column-count: 2;       /* Big mobiles */
  }
}

@media(max-width: 576px) {
  .gallery {
    column-count: 1;       /* Small mobiles */
  }
}

/* ===========================
   FLIP CARD (Responsive)
   =========================== */
.flip-card {
    perspective: 1000px;
    width: 100%;
}

/* Auto height using clamp() — adjusts by device */
.flip-card-inner {
    position: relative;
    width: 100%;
    height: clamp(220px, 50vh, 380px);
    transition: transform 0.8s;
    transform-style: preserve-3d;
    border-radius: 12px;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 12px;
    overflow: hidden;
}

/* BACK SIDE */
.flip-card-back {
    transform: rotateY(180deg);
    background-color: var(--bg-card);
    padding: 20px;
    color: var(--text-main);
    border-radius: 12px;
}
.flip-card-front h5{
  color: var(--accent-secondary);
}

.flip-card-front i{
  color: var(--accent-primary-dark);
}

/* ===========================
   RESPONSIVE BREAKPOINTS
   =========================== */

/* Tablets: reduce height slightly */
@media (max-width: 992px) {
    .flip-card-inner {
        height: clamp(200px, 45vh, 320px);
    }
}

/* Mobile Large: change height based on screen */
@media (max-width: 768px) {
    .flip-card-inner {
        height: clamp(180px, 40vh, 300px);
    }
}

/* Mobile Small */
@media (max-width: 480px) {
    .flip-card-inner {
        height: clamp(160px, 37vh, 260px);
    }

    .flip-card-back {
        padding: 15px;
    }
}

/* Extra Small Devices */
@media (max-width: 360px) {
    .flip-card-inner {
        height: clamp(150px, 35vh, 240px);
    }
}

/* ============================
   TOUR CARD STYLES
============================ */
.tour-card {
    background: var(--bg-slate);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: 0.3s ease;
    cursor: pointer;
    border-left: 6px solid var(--accent-primary);
    margin-bottom: 15px;
}

.tour-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

/* Title + Arrow */
.tour-title {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.tour-title::after {
    content: "⯆";
    font-size: 1rem;
    margin-left: auto;
    transition: transform 0.3s ease;
}

/* Rotate arrow when collapse is shown */
.tour-title.active::after {
    transform: rotate(180deg);
}

/* List */
.tour-list {
    list-style: none;
    padding-left: 0;
    margin-top: -8px;
}

.tour-list li {
    padding: 6px 0;
    border-bottom: 1px dashed var(--accent-secondary);
    font-size: 0.95rem;
}

.tour-list li:last-child {
    border-bottom: none;
}


/* ============================
   RESPONSIVE FIXES
============================ */
@media (max-width: 768px) {
    .tour-card {
        padding: 18px;
        border-radius: 10px;
    }

    .tour-title {
        font-size: 1rem;
    }

    .tour-list li {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .tour-card {
        padding: 15px;
    }

    .tour-title {
        font-size: 0.95rem;
    }
}

.zone-container {
    width: 90%;
    max-width: 900px;
    margin: 40px auto;
    font-family: "Segoe UI", sans-serif;
}

.zone-container h2 {
    font-size: 28px;
    margin-bottom: 25px;
}

.zone-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 10px;
    border-left: 4px solid var(--accent-primary);
    position: relative;
}

.zone-item:not(:last-child) {
    border-bottom: 1px solid var(--accent-secondary);
}

.zone-number {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 10px;
    background: var(--bg-secondary);
    color: var(--accent-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
}

.zone-content h3 {
    margin: 0;
    font-size: 20px;
    color: var(--accent-secondary);
}

.zone-content p {
    margin: 5px 0 0 0;
    color: var(--text-main);
}

/* ---------- Responsive ---------- */

@media (max-width: 600px) {
    .zone-item {
        flex-direction: row;
        align-items: center;
        padding: 15px 5px;
    }

    .zone-number {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .zone-content h3 {
        font-size: 18px;
    }

    .zone-content p {
        font-size: 14px;
    }
}


.table-container {
    width: 100%;
    overflow-x: auto;
    background: var(--bg-slate);
    padding: 16px;
    border-radius: 10px;
    border: 1px solid var(--bg-card);
    }

.styled-table {
  width: 100%;
  border-collapse: collapse;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  min-width: 600px;
}

.styled-table thead tr {
  background-color: var(--bg-secondary);
  color: var(--accent-primary-dark);
  text-align: left;
}

.styled-table th, 
.styled-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--accent-secondary);
}

.styled-table tbody tr:hover {
  background-color: var(--border-color);
  transition: 0.2s ease;
}

.styled-table tbody tr:last-of-type td {
  border-bottom: 0;
}

@media (max-width: 600px) {
  .styled-table th, .styled-table td {
    padding: 10px;
  }
}