/* ============================================
   KL CABS — Shared Stylesheet
   Kerala Sky & Temple Gold Theme
   Fonts: Playfair Display + DM Sans
   ============================================ */

/* ---------- CSS VARIABLES ---------- */
@import url('https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&display=swap');

:root {
  --sky: #df1a1a;
  --sky-deep: #e02020;
  --sky-light: #3A8FC4;
  --sky-pale: #f1f1f1;
  --gold: #C9A84C;
  --gold-light: #e02020;
  --gold-pale: #f1f1f1;
  --teal: #0D7C6E;
  --teal-light: #14A094;
  --white: #FFFFFF;
  --slate: #2C3E50;
  --text: #1A2B38;
  --text-light: #4A6070;
  --border: rgba(30, 111, 168, 0.12);
}

/* ---------- RESET & BASE ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

* {
  font-family: "Google Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "GRAD" 0;
}

body {
  /* font-family: 'DM Sans', sans-serif; */
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
}

/* ---------- NAVIGATION ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 2rem;
  height: 68px;
  box-shadow: 0 1px 12px #1e6fa814;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo img {
  height: 52px;
}

/* ---- Desktop Menu ---- */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
  justify-content: center;
}

.nav-menu-item a {
  display: block;
  padding: 0.45rem 0.9rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-light);
  text-decoration: none;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.nav-menu-item a:hover {
  color: var(--sky);
  background: rgba(223, 26, 26, 0.06);
}

.nav-menu-item.active>a {
  color: var(--sky);
  background: rgba(223, 26, 26, 0.08);
}

/* Active underline indicator */
.nav-menu-item.active>a::after {
  content: '';
  display: block;
  height: 2px;
  background: var(--sky);
  border-radius: 2px;
  margin-top: 2px;
}

/* ---- Phone numbers ---- */
.nav-phones {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.nav-phone-link {
  font-size: 0.82rem;
  color: var(--text-light);
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.nav-phone-link i {
  font-size: 0.75rem;
  color: var(--sky);
}

.nav-phone-link:hover {
  color: var(--sky);
}

.nav-phone-sep {
  color: var(--border);
  font-size: 1rem;
  user-select: none;
}

/* ---- Right side ---- */
.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

/* Book button */
.nav-book {
  background: var(--sky);
  color: var(--white);
  padding: 0.48rem 1.2rem;
  border-radius: 40px;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s;
  letter-spacing: 0.02em;
  white-space: nowrap;
  flex-shrink: 0;
  text-transform: uppercase;
}

.nav-book:hover {
  background: var(--sky-deep);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(223, 26, 26, 0.35);
}

/* ---- Hamburger (mobile only) ---- */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 8px;
  transition: background 0.2s;
  flex-shrink: 0;
}

.nav-hamburger:hover {
  background: rgba(223, 26, 26, 0.07);
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Hamburger → X animation */
.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-990 {
  display: none;
}

/* ---- Mobile Drawer ---- */
@media (max-width: 900px) {
  .nav {
    padding: 0 1.25rem;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-990 {
    display: block;
  }

  .nav-desktop .nav-phones {
    display: none;
  }

  .nav-menu {
    position: fixed;
    top: 0px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem;
    transform: translateY(-120%);
    transition: transform .3s ease;
    z-index: 999;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .1);
  }

  .nav-menu.open {
    transform: translateY(68px);
  }



  .nav-menu-item a {
    display: block;
    padding: 14px;
    /* border-bottom: 1px solid #eee; */
  }

  .nav-menu-item.active>a::after {
    display: none;
  }

  .py {
    padding: 8rem 0;
  }
}
/* ============================================
   SERVICES DROPDOWN - CLICK ONLY
   ============================================ */

.nav-dropdown {
    position: relative;
}


/* Services button */

.nav-dropdown-toggle {
    display: flex !important;
    align-items: center;
    gap: 6px;
     background: transparent;
    border: 0; 
    padding: 0.45rem 0.9rem; 
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);

    cursor: pointer;

    border-radius: 8px;

    white-space: nowrap;
}
.nav-dropdown-toggle span{
	font-size: 0.9rem;
    font-weight: 600;
}
.nav-dropdown-toggle:hover {
    color: var(--sky);
    background: rgba(223, 26, 26, 0.06);
}

.nav-dropdown-toggle i {
    font-size: 0.65rem;
    transition: transform 0.2s ease;
}


/* Submenu hidden */

.nav-submenu {
    display: none;

    position: absolute;

    top: calc(100% + 8px);
    left: 0;

    min-width: 190px;

    margin: 0;
    padding: 0.5rem;

    list-style: none;

    background: #fff;

    border: 1px solid var(--border);
    border-radius: 10px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);

    z-index: 9999;
}


/* Show ONLY when .open exists */

.nav-dropdown.open > .nav-submenu {
    display: block !important;
}


/* Rotate arrow */

.nav-dropdown.open .nav-dropdown-toggle i {
    transform: rotate(180deg);
}


/* Submenu items */

.nav-submenu li {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-submenu li a {
    display: block;

    padding: 0.7rem 0.9rem;

    color: var(--text-light);

    font-size: 0.88rem;
    font-weight: 600;

    text-decoration: none;

    border-radius: 7px;

    white-space: nowrap;
}

.nav-submenu li a:hover {
    background: rgba(223, 26, 26, 0.08);
    color: var(--sky);
}


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

@media (max-width: 900px) {

    .nav-dropdown-toggle {
        width: 100%;

        justify-content: space-between;

        text-align: left;

        padding: 14px;
    }

    .nav-submenu {
        position: static;

        width: 100%;
        min-width: 0;

        margin: 0;

        padding: 4px 0;

        background: #f7f7f7;

        border: none;
        border-radius: 8px;

        box-shadow: none;
    }

    .nav-dropdown.open > .nav-submenu {
        display: block !important;
    }

    .nav-submenu li a {
        padding: 12px 14px 12px 32px;

        font-size: 0.9rem;
    }

}
/* ---------- HERO ---------- */
.hero {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(21, 78, 120, 0.75) 0%, rgba(13, 124, 110, 0.6) 60%, rgba(21, 78, 120, 0.85) 100%),
    var(--hero-bg, url('')) center / cover no-repeat;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  padding: 8rem 4rem 5rem;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(180deg, transparent, var(--white));
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.15);
}

.hero-content {
  position: relative;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #ffffff38;
  ;
  border: 1px solid rgba(201, 168, 76, 0.35);
  color: var(--white);
  padding: 0.35rem 1rem;
  border-radius: 40px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: "Google Sans", sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.2rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ---------- BUTTONS ---------- */
.btn-sky {
  background: var(--sky);
  color: #fff;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 2px solid transparent;
}

.btn-sky:hover {
  background: var(--sky);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(30, 111, 168, 0.4);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

/* ---------- HERO CARD ---------- */
.hero-card {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
}

.hero-card h3 {
  font-family: "Google Sans", sans-serif;
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 1.2rem;
}

.stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.stat-box {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.2rem;
  text-align: center;
}

.stat-val {
  font-family: "Google Sans", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  display: block;
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  margin: 1.2rem 0;
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.hero-feat {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

.hero-feat i {
  color: var(--white);
  width: 16px;
}

/* ---------- MARQUEE STRIP ---------- */
.strip {
  background: linear-gradient(90deg, var(--sky-deep), var(--sky), #000000);
  padding: 1rem 0;
  overflow: hidden;
}

.strip-inner {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: marquee 18s linear infinite;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.strip-inner span {
  flex-shrink: 0;
}

.strip-inner i {
  color: var(--gold-light);
  margin-right: 0.5rem;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ---------- LAYOUT HELPERS ---------- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.py {
  padding: 5rem 0;
}

.py-sm {
  padding: 3rem 0;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 0.5rem;
}

.section-heading {
  font-family: "Google Sans", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
}

.section-heading em {
  font-style: italic;
  color: var(--sky);
}

.section-heading.light {
  color: #fff;
}

.section-heading.light em {
  color: var(--gold-light);
}

.section-body {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.8;
  max-width:none;
}

.section-body.light {
  color: rgba(255, 255, 255, 0.7);
}

.accent-line {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--sky), var(--teal));
  border-radius: 2px;
  margin: 0.8rem 0 1.5rem;
}

.accent-line.gold {
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

/* ---------- FEATURES / WHY CHOOSE ---------- */
.features-bg {
  background: var(--sky-pale);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.feat-card {
  background: var(--white);
  border-radius: 16px;
  padding: 1.8rem 1.5rem;
  text-align: center;
  border: 1px solid var(--border);
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}

.feat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sky), var(--teal));
  transform: scaleX(0);
  transition: transform 0.25s;
}

.feat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(30, 111, 168, 0.12);
}

.feat-card:hover::before {
  transform: scaleX(1);
}

.feat-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--sky-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.4rem;
  color: #000000;
  transition: background 0.25s, color 0.25s;
}

/* .feat-card:hover .feat-icon {
  background: var(--sky);
  color: #fff;
} */

.feat-icon svg {
  width: 35px;
}



.feat-card h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.5;
}

/* ---------- ROUTE SECTION ---------- */
.route-bg {
  background: #df1a1a;
}

.route-path-v2 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
  margin: 2rem 0;
}

.stop-pill {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 40px;
  font-size: 0.9rem;
  font-weight: 500;
}

.stop-pill.dest {
  background: var(--white);
  border-color: var(--white);
  font-weight: 700;
  color: var(--sky);
}

.stop-arrow {
  color: var(--gold);
  font-size: 1.1rem;
}

.route-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.route-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.4rem;
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  transition: background 0.2s;
}

.route-card:hover {
  background: rgba(255, 255, 255, 0.1);
}

.route-card i {
  color: var(--gold-light);
  font-size: 1.2rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.route-card p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* ---------- VEHICLES ---------- */
.vehicle-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.v-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.25s;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.v-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(30, 111, 168, 0.12);
  border-color: var(--sky);
}

.v-top {
  background: linear-gradient(135deg, var(--white), #fff);
  /* height: 130px; */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  padding: 20px;
}

.v-top img {
  width: 100%;
}

.v-bottom {
  padding: 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.v-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
}

.v-btn {
  background: var(--sky);
  color: #fff;
  padding: 0.4rem 1rem;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}

.v-btn:hover {
  background: var(--sky-deep);
}

/* ---------- PLACES / TEMPLES ---------- */
.places-bg {
  background: var(--gold-pale);
}

.places-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.place-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(201, 168, 76, 0.15);
  transition: all 0.25s;
}

.place-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(201, 168, 76, 0.2);
}

.place-top {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.place-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.temple-top {
  background: linear-gradient(135deg, #FFF3CD, #FFE082);
}

.nature-top {
  background: linear-gradient(135deg, #E8F5E9, #C8E6C9);
}

.forest-top {
  background: linear-gradient(135deg, #E0F2F1, #B2DFDB);
}

.place-body {
  padding: 1.2rem;
}

.place-body h3 {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.place-body p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ---------- PILGRIMAGE STOP LIST ---------- */
.stop-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
  margin-top: 1.5rem;
}

.stop-list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: #fff;
  border-radius: 8px;
  padding: 0.8rem 1rem;
  font-size: 0.95rem;
  color: var(--text);
  border: 1px solid var(--border);
  font-weight: 500;
}

.stop-list li i {
  color: var(--sky);
  flex-shrink: 0;
}

.stop-list svg {
  width: 40px;
}

/* ---------- FARE / FEATURE ICON GRID ---------- */
.fare-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.2rem;
  margin-top: 2rem;
}

.fare-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.2s, border-color 0.2s;
}

.fare-card:hover {
  transform: translateY(-4px);
  border-color: var(--sky);
  box-shadow: 0 8px 24px rgba(30, 111, 168, 0.1);
}

.fare-card i {
  font-size: 1.8rem;
  color: var(--sky);
  margin-bottom: 0.8rem;
}

.fare-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  font-weight: 600;
}

/* ---------- SUPPORT BOXES ---------- */
.support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.support-box {
  background: linear-gradient(135deg, var(--sky-deep), var(--sky));
  color: #fff;
  border-radius: 14px;
  padding: 2rem;
  border: 1px solid rgba(201, 168, 76, 0.2);
}

.support-box h3 {
  font-family: "Google Sans", sans-serif;
  color: #fff;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.support-box ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.support-box li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

.support-box li i {
  color: var(--gold-light);
  margin-top: 3px;
  flex-shrink: 0;
}

/* ---------- NUMBERED TEMPLE LIST ---------- */
.temple-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.2rem;
  margin-top: 2rem;
}

.temple-item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 10px;
  padding: 1.4rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: background 0.2s, border-color 0.2s;
}

.temple-item:hover {
  background: rgba(201, 168, 76, 0.08);
  border-color: rgba(201, 168, 76, 0.3);
}

.temple-num {
  font-family: "Google Sans", sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: rgba(240, 200, 105, 0.3);
  line-height: 1;
  flex-shrink: 0;
}

.temple-info h3 {
  font-family: "Google Sans", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 0.4rem;
}

.temple-info p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.temple-section-bg {
  background: var(--slate);
}

/* ---------- BOOKING / CTA SECTION ---------- */
.booking-bg {
  background: linear-gradient(135deg, var(--sky-deep) 0%, var(--sky) 100%);
  position: relative;
  overflow: hidden;
}

.booking-bg::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.booking-left h2 {
  font-family: "Google Sans", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: #fff;
  font-weight: 700;
  margin-bottom: 1rem;
}

.booking-left h2 em {
  font-style: italic;
  color: var(--gold-light);
}

.booking-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cta-link {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  padding: 1.2rem 1.5rem;
  text-decoration: none;
  transition: all 0.25s;
}

.cta-link:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateX(4px);
}

.cta-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.icon-blue {
  background: var(--sky);
  color: #fff;
}

.icon-green {
  background: #25D366;
  color: #fff;
}

.cta-sub {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.cta-val {
  font-weight: 600;
  font-size: 1rem;
  color: var(--white);
}

.cta-warning {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 8px;
  padding: 0.8rem 1rem;
  font-size: 0.88rem;
  color: var(--sky);
}

/* ---------- FAQ ---------- */
.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 2rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.faq-q {
  padding: 1.2rem 1.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s;
  user-select: none;
}

.faq-q:hover {
  background: var(--sky-pale);
}

.faq-q i {
  color: var(--sky);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-a {
  display: none;
  padding: 0 1.5rem 1.2rem;
  font-size: 0.97rem;
  color: var(--text-light);
  line-height: 1.75;
}

.faq-item.open .faq-a {
  display: block;
}

.faq-item.open .faq-q {
  background: var(--sky-pale);
}

.faq-item.open .faq-q i {
  transform: rotate(180deg);
  color: var(--teal);
}

/* ---------- FOOTER ---------- */
footer {
  background: #131518;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
}

footer a {
  color: var(--gold-light);
  text-decoration: none;
}

footer a:hover {
  color: var(--gold);
}

/* ---------- STICKY PHONE BUTTON ---------- */
/* .sticky-cta {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  background: var(--sky);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  box-shadow: 0 4px 20px rgba(30, 111, 168, 0.45);
  text-decoration: none;
  transition: transform 0.2s;
}

.sticky-cta:hover {
  transform: scale(1.1);
} */

/* Floating Contact Buttons */
.floating-contact {
  position: fixed;
  right: 35px;
  bottom: 35px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sticky-phone {
  background: #df1a1a;
}

.sticky-whatsapp {
  background: #25D366;
}

.sticky-cta {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 24px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, .25);
  animation: pulse 2s infinite;
}

.sticky-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: inherit;
  z-index: -1;
  animation: ripple 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.08);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: .7;
  }

  70% {
    transform: scale(1.08);
    opacity: 0;
  }

  100% {
    transform: scale(1.08);
    opacity: 0;
  }
}

.sticky-cta:hover {
  transform: scale(1.12);
  color: white;
}

/* ---------- SUB-HEADING UTILITY ---------- */
.sub-heading {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin: 2rem 0 0.5rem;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 7rem 2rem 5rem;
  }

  .hero-card {
    display: none;
  }

  .booking-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .stop-list {
    grid-template-columns: 1fr;
  }

  .support-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .nav-phone-link {
    display: none;
  }

  .fare-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================
   BLOG STYLES — Listing & Detail Pages
   ============================================ */

/* Blog Hero */
.blog-hero {
  background:
    linear-gradient(180deg, rgba(21, 78, 120, 0.85) 0%, rgba(19, 21, 24, 0.9) 100%),
    url('https://images.unsplash.com/photo-1506012787146-f92b2d7d6d96?w=1600&q=80') center/cover no-repeat;
  padding: 8rem 2rem 4rem;
  text-align: center;
  color: var(--white);
}

.blog-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.blog-hero p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Blog Filter Tabs */
.blog-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 3rem 0 2rem;
}

.filter-btn {
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--text-light);
  padding: 0.6rem 1.4rem;
  border-radius: 40px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--sky);
  border-color: var(--sky);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(223, 26, 26, 0.2);
}

/* Blog Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 5rem;
}

/* Blog Card */
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(30, 111, 168, 0.12);
  border-color: var(--sky);
}

.blog-card-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.blog-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-img-wrap img {
  transform: scale(1.06);
}

.blog-card-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--sky);
  color: var(--white);
  padding: 0.3rem 0.8rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  z-index: 2;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.blog-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 0.8rem;
}

.blog-card-meta i {
  color: var(--sky);
  margin-right: 0.3rem;
}

.blog-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 0.8rem;
  text-decoration: none;
  transition: color 0.2s;
}

.blog-card-title:hover {
  color: var(--sky);
}

.blog-card-excerpt {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--sky);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  transition: gap 0.2s;
}

.blog-card-link:hover {
  color: var(--sky-deep);
  gap: 0.8rem;
}

/* ============================================
   BLOG DETAIL LAYOUT
   ============================================ */
.blog-detail-layout {
  display: grid;
  grid-template-columns: 2.2fr 1fr;
  gap: 2.5rem;
  margin-top: 3rem;
  margin-bottom: 5rem;
}

/* Blog Article Content */
.blog-article {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
}

.blog-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.88rem;
  color: var(--text-light);
  border-bottom: 1px solid var(--border);
  padding-bottom: 1.2rem;
  margin-bottom: 2rem;
}

.blog-article-meta span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.blog-article-meta i {
  color: var(--sky);
}

.blog-article-banner {
  width: 100%;
  height: clamp(250px, 40vw, 420px);
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 2.2rem;
}

.blog-content h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
  margin: 2.2rem 0 1rem;
  line-height: 1.3;
}

.blog-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin: 1.8rem 0 0.8rem;
}

.blog-content p {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.blog-content strong {
  color: var(--text);
  font-weight: 600;
}

.blog-content blockquote {
  background: var(--sky-pale);
  border-left: 4px solid var(--sky);
  padding: 1.2rem 1.8rem;
  margin: 2rem 0;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--text);
  border-radius: 0 12px 12px 0;
}

.blog-content ul,
.blog-content ol {
  margin: 0 0 1.5rem 1.5rem;
}

.blog-content li {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 0.6rem;
}

/* Callout Alert */
.blog-callout {
  background: rgba(201, 168, 76, 0.08);
  border-left: 4px solid var(--gold);
  border-radius: 0 12px 12px 0;
  padding: 1.2rem 1.5rem;
  margin: 2rem 0;
}

.blog-callout h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.blog-callout h4 i {
  color: var(--gold);
}

.blog-callout p {
  margin-bottom: 0;
  font-size: 0.96rem;
}

/* Travel Fares Table */
.blog-table-wrapper {
  overflow-x: auto;
  margin: 2rem 0;
  border-radius: 8px;
  border: 1px solid var(--border);
}

.blog-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.95rem;
}

.blog-table th {
  background: var(--slate);
  color: var(--white);
  padding: 1rem 1.2rem;
  font-weight: 600;
}

.blog-table td {
  padding: 0.9rem 1.2rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-light);
}

.blog-table tr:last-child td {
  border-bottom: none;
}

.blog-table tr:nth-child(even) {
  background: var(--sky-pale);
}

/* Article Share Section */
.blog-share {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid var(--border);
  margin-top: 3rem;
  padding-top: 1.5rem;
}

.blog-share span {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
}

.share-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  font-size: 1.1rem;
  transition: transform 0.2s;
}

.share-btn:hover {
  transform: translateY(-2px);
}

.share-fb {
  background: #3b5998;
}

.share-wa {
  background: #25d366;
}

.share-tw {
  background: #1da1f2;
}

/* ============================================
   SIDEBAR WIDGETS
   ============================================ */
.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sidebar-widget {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.8rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
}

.widget-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1.2rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--sky);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.widget-title i {
  color: var(--sky);
}

/* Booking Form Widget */
.booking-widget-form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
}

.form-group input,
.form-group select {
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--sky);
}

.widget-submit-btn {
  background: var(--sky);
  color: var(--white);
  border: none;
  padding: 0.9rem;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  font-size: 0.95rem;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.widget-submit-btn:hover {
  background: var(--sky-deep);
}

/* Recent Posts Widget */
.recent-posts-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.recent-post-item {
  display: flex;
  gap: 1rem;
  text-decoration: none;
  color: inherit;
  align-items: center;
}

.recent-post-img {
  width: 70px;
  height: 70px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.recent-post-info {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.recent-post-title {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 0;
  transition: color 0.2s;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.recent-post-item:hover .recent-post-title {
  color: var(--sky);
}

.recent-post-date {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* Categories List Widget */
.widget-categories {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.widget-categories li a {
  display: flex;
  justify-content: space-between;
  text-decoration: none;
  color: var(--text-light);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
}

.widget-categories li a:hover {
  color: var(--sky);
}

.widget-categories li a span:last-child {
  background: var(--sky-pale);
  padding: 0.1rem 0.5rem;
  border-radius: 20px;
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ============================================
   RESPONSIVE MEDIA QUERIES FOR BLOG
   ============================================ */
@media (max-width: 900px) {
  .blog-detail-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .blog-article {
    padding: 1.8rem;
  }
}

@media (max-width: 600px) {
  .blog-filters {
    gap: 0.5rem;
  }

  .filter-btn {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   SERVICE CARDS — Home page taxi route cards
   ============================================ */

.klcabs-service-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
}

.klcabs-service-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  text-decoration: none;
  color: var(--text);
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.klcabs-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(223, 26, 26, 0.18);
  border-color: var(--sky);
}

/* Image wrapper */
.klcabs-service-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.klcabs-service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.klcabs-service-card:hover .klcabs-service-card-img img {
  transform: scale(1.06);
}

/* Gradient overlay on image */
.klcabs-service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.55) 100%);
  display: flex;
  align-items: flex-start;
  padding: 1rem;
}

/* Badge pill on image */
.klcabs-service-badge {
  background: var(--sky);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 40px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

/* Card body */
.klcabs-service-card-body {
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

/* Route pill row */
.klcabs-service-route {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-light);
}

.klcabs-service-route i {
  color: var(--sky);
}

.klcabs-route-arrow {
  color: var(--sky);
  font-size: 0.75rem;
}

/* Card heading */
.klcabs-service-card-body h3 {
  font-family: "Google Sans", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  margin: 0;
}

/* Card description */
.klcabs-service-card-body p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.65;
  margin: 0;
}

/* Stats row */
.klcabs-service-stats {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0.75rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.klcabs-service-stats span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.klcabs-service-stats i {
  color: var(--sky);
}

/* CTA row */
.klcabs-service-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--sky);
  font-weight: 700;
  font-size: 0.9rem;
  margin-top: auto;
  transition: gap 0.2s ease;
}

.klcabs-service-card:hover .klcabs-service-cta {
  gap: 0.8rem;
}

/* Responsive */
@media (max-width: 768px) {
  .klcabs-service-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .klcabs-service-card-img {
    height: 180px;
  }
}
/* ============================================
   KL CABS — FOOTER
   ============================================ */

.site-footer {
    background: #131518;
    color: rgba(255, 255, 255, 0.65);
    text-align: left;
    padding: 0;
    font-size: 0.9rem;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 4rem 2rem 3rem;

    display: grid;
    grid-template-columns: 1.35fr 0.8fr 1fr 1.35fr;
    gap: 2.5rem;
}

/* Company */

.footer-logo {
    display: inline-block;
    margin-bottom: 1.2rem;
}

.footer-logo img {
    width: 170px;
    height: auto;
    display: block;
}

.footer-description {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.92rem;
    line-height: 1.75;
    max-width: 360px;
    margin: 0;
}


/* Footer headings */

.footer-column h3 {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 1.3rem;
    position: relative;
    padding-bottom: 0.7rem;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;

    width: 38px;
    height: 2px;

    background: var(--sky);
}


/* Quick links */

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;

    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links li {
    margin: 0;
    padding: 0;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 0.92rem;

    transition: color 0.2s, padding-left 0.2s;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}


/* Contact */

.footer-contact {
    display: flex;
    flex-direction: column;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.footer-contact-item i {
    color: var(--sky);
    width: 18px;
    margin-top: 4px;
    flex-shrink: 0;
}

.footer-contact-item p {
    margin: 0;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-contact-item a:hover {
    color: #fff;
}


/* Social Media */

.footer-social {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-top: 0.5rem;
}

.footer-social a {
    width: 38px;
    height: 38px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.8);

    text-decoration: none;

    transition: all 0.25s ease;
}

.footer-social a:hover {
    background: var(--sky);
    color: #fff;
    transform: translateY(-3px);
}


/* Footer Bottom */

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);

    text-align: center;

    padding: 1.2rem 2rem;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.82rem;
}

.footer-bottom strong {
    color: rgba(255, 255, 255, 0.75);
}


/* Responsive */

@media (max-width: 900px) {

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .footer-company {
        grid-column: 1 / -1;
    }

}


@media (max-width: 600px) {

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 3rem 1.5rem 2.5rem;
    }

    .footer-company {
        grid-column: auto;
    }

    .footer-description {
        max-width: 100%;
    }

    .footer-bottom {
        padding: 1rem 1.5rem;
    }

}


/* ============================================
   KL CABS — VIDEO SECTION
   ============================================ */

.klcabs-video-section {
    background: var(--white);
}

.video-section-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 2.5rem;
}

.video-section-header .section-body {
    margin-left: auto;
    margin-right: auto;
}

.video-section-header .accent-line {
    margin-left: auto;
    margin-right: auto;
}


/* Video container */

.klcabs-video-wrapper {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;

    border-radius: 20px;
    overflow: hidden;

    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);

    background: #000;
}


/* Thumbnail */

.klcabs-video-preview {
    position: relative;

    width: 100%;
    aspect-ratio: 16 / 9;

    cursor: pointer;
    overflow: hidden;
}

.klcabs-video-preview img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition: transform 0.4s ease;
}


/* Dark overlay */

.klcabs-video-overlay {
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.28);

    transition: background 0.3s ease;
}


/* Play button */

.klcabs-video-play {
    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    width: 78px;
    height: 78px;

    border-radius: 50%;

    border: none;

    background: var(--sky);

    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    font-size: 1.5rem;

    padding-left: 5px;

    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.3),
        0 0 0 8px rgba(255, 255, 255, 0.18);

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}


/* Hover */

.klcabs-video-preview:hover img {
    transform: scale(1.03);
}

.klcabs-video-preview:hover .klcabs-video-overlay {
    background: rgba(0, 0, 0, 0.4);
}

.klcabs-video-preview:hover .klcabs-video-play {
    transform: translate(-50%, -50%) scale(1.08);

    background: var(--sky-deep);

    box-shadow:
        0 10px 35px rgba(0, 0, 0, 0.35),
        0 0 0 10px rgba(255, 255, 255, 0.2);
}


/* YouTube iframe */

.klcabs-video-wrapper iframe {
    width: 100%;
    aspect-ratio: 16 / 9;

    display: block;

    border: 0;
}


/* Keyboard accessibility */

.klcabs-video-preview:focus-visible {
    outline: 3px solid var(--sky);
    outline-offset: 4px;
}


/* Mobile */

@media (max-width: 600px) {

    .klcabs-video-wrapper {
        border-radius: 12px;
    }

    .klcabs-video-play {
        width: 62px;
        height: 62px;

        font-size: 1.15rem;

        box-shadow:
            0 6px 20px rgba(0, 0, 0, 0.3),
            0 0 0 6px rgba(255, 255, 255, 0.18);
    }
	.aboutkl{
		    grid-template-columns: 1fr !important;
}
}

