/* =========================================================
   SK TOURS & TRAVELS — MAIN STYLESHEET
   Design tokens → Base → Layout → Components → Sections
   ========================================================= */

/* ---------- Design Tokens ---------- */
:root {
  --green-primary: #2E7D32;
  --green-accent: #4CAF50;
  --navy: #071A2D;
  --navy-soft: #0E2A44;
  --white: #FFFFFF;
  --grey-light: #F7F8FA;
  --gold: #D4AF37;

  --text-dark: #12202B;
  --text-muted: #5B6B75;
  --text-light: #E8EDF1;
  --text-light-muted: #A9B7C2;

  --font: 'Poppins', sans-serif;

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --shadow-sm: 0 4px 16px rgba(7, 26, 45, 0.06);
  --shadow-md: 0 12px 32px rgba(7, 26, 45, 0.10);
  --shadow-lg: 0 24px 60px rgba(7, 26, 45, 0.16);

  --gradient-green: linear-gradient(135deg, var(--green-primary), var(--green-accent));
  --gradient-navy: linear-gradient(180deg, #071A2D 0%, #0B2338 100%);

  --ease: cubic-bezier(.4, 0, .2, 1);
  --container: 1240px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

:focus-visible {
  outline: 2px solid var(--green-accent);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 110px 0;
}

.section-dark {
  background: var(--gradient-navy);
  color: var(--text-light);
}

/* ---------- Typography ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-primary);
  margin-bottom: 14px;
}

.eyebrow-light {
  color: var(--green-accent);
}

.section-title {
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.text-light {
  color: var(--white);
}

.section-lead {
  font-size: 17px;
  color: var(--text-muted);
  margin-top: 16px;
  max-width: 560px;
}

.section-dark .section-lead {
  color: var(--text-light-muted);
}

.section-head {
  margin-bottom: 56px;
}

.section-head.center {
  text-align: center;
}

.section-head.center .section-lead {
  margin-left: auto;
  margin-right: auto;
}

.text-gradient {
  background: linear-gradient(100deg, var(--green-accent), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease);
  white-space: nowrap;
}

.btn i {
  font-size: 16px;
}

.btn-primary {
  background: var(--gradient-green);
  color: #fff;
  box-shadow: 0 10px 24px rgba(46, 125, 50, 0.32);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(46, 125, 50, 0.42);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid rgba(7, 26, 45, 0.18);
}

.btn-outline:hover {
  border-color: var(--green-primary);
  color: var(--green-primary);
  transform: translateY(-3px);
}

.btn-outline-light {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(6px);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-3px);
}

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

.btn-sm {
  padding: 10px 18px;
  font-size: 13.5px;
}

.center-cta {
  text-align: center;
  margin-top: 44px;
}

/* ---------- Preloader ---------- */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .6s var(--ease), visibility .6s var(--ease);
}

#preloader.loaded {
  opacity: 0;
  visibility: hidden;
}

.preloader-mark {
  text-align: center;
}

.preloader-mark span {
  font-size: 40px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.05em;
}

.preloader-bar {
  width: 140px;
  height: 3px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  margin-top: 18px;
  overflow: hidden;
}

.preloader-fill {
  width: 0%;
  height: 100%;
  background: var(--gradient-green);
  animation: fillBar 1.2s var(--ease) forwards;
}

@keyframes fillBar {
  to {
    width: 100%;
  }
}

/* ---------- Scroll Progress ---------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--gradient-green);
  z-index: 1200;
  transition: width .1s linear;
}

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: background .4s var(--ease), padding .4s var(--ease), box-shadow .4s var(--ease);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  padding: 12px 0;
  box-shadow: var(--shadow-sm);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  display: block;
  width: auto;
  height: 54px;
  max-width: 180px;
  object-fit: contain;
}

.logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--gradient-green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  box-shadow: 0 6px 16px rgba(46, 125, 50, 0.35);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text strong {
  font-size: 19px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.02em;
}

.logo-text em {
  font-style: normal;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-accent);
}

.navbar.scrolled .logo-text strong {
  color: var(--navy);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  position: relative;
  padding: 4px 0;
  transition: color .3s;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--green-accent);
  transition: width .3s var(--ease);
}

.nav-link:hover,
.nav-link.active {
  color: #fff;
}

.navbar.scrolled .nav-link {
  color: var(--text-dark);
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
  color: var(--green-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.navbar-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar .btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

.navbar.scrolled .btn-outline {
  color: var(--navy);
  border-color: rgba(7, 26, 45, 0.18);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
}

.hamburger span {
  height: 2px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  transition: transform .3s, opacity .3s, background .3s;
}

.navbar.scrolled .hamburger span {
  background: var(--navy);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding-top: 110px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url('https://images.unsplash.com/photo-1580820267682-426da823b514?q=80&w=1974&auto=format&fit=crop') center center / cover no-repeat;
}

.hero-bg img,
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg img {
  z-index: 0;
}

.hero-video {
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(7, 26, 45, 0.92) 20%, rgba(7, 26, 45, 0.72) 48%, rgba(7, 26, 45, 0.35) 75%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 40px;
  padding-top: 40px;
  padding-bottom: 70px;
}

.hero-copy {
  color: #fff;
  max-width: 620px;
}

.hero-title {
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

.hero-sub {
  font-size: 17px;
  font-weight: 500;
  color: var(--green-accent);
  margin-bottom: 14px;
}

.hero-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.82);
  max-width: 480px;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 34px;
}

.hero-actions.center {
  justify-content: center;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.trust-badges li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.85);
}

.trust-badges i {
  color: var(--green-accent);
}

/* Trip Card — signature element */
.glass {
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.trip-card {
  border-radius: var(--radius-lg);
  padding: 26px;
  color: #fff;
  box-shadow: var(--shadow-lg);
  max-width: 380px;
  width: 100%;
  justify-self: end;
  animation: floatCard 5s ease-in-out infinite;
}

@keyframes floatCard {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

.trip-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
}

.trip-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--green-accent);
}

.trip-eta {
  font-size: 12px;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.14);
}

.trip-route {
  display: flex;
  flex-direction: column;
  margin-bottom: 22px;
}

.trip-point {
  display: flex;
  align-items: center;
  gap: 14px;
}

.trip-point small {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.trip-point p {
  font-size: 14.5px;
  font-weight: 600;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}

.dot-start {
  background: var(--green-accent);
  box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.25);
}

.dot-end {
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.25);
}

.trip-line {
  width: 2px;
  height: 28px;
  margin-left: 5px;
  background: repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0 4px, transparent 4px 8px);
}

.trip-card-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 18px;
}

.trip-car {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trip-car i {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.trip-car p {
  font-size: 13.5px;
  font-weight: 600;
}

.trip-car small {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
}

.trip-rating {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 4px;
}

.hero-badges-strip {
  position: relative;
  z-index: 2;
}

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

.badge-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  color: #fff;
  font-size: 13.5px;
  font-weight: 500;
}

.badge-item i {
  color: var(--green-accent);
  font-size: 18px;
}

.scroll-cue {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
}

.scroll-cue span {
  display: block;
  width: 4px;
  height: 8px;
  background: #fff;
  border-radius: 3px;
  margin: 7px auto 0;
  animation: scrollCue 1.8s infinite;
}

@keyframes scrollCue {
  0% {
    opacity: 1;
    transform: translateY(0);
  }

  70% {
    opacity: 0;
    transform: translateY(14px);
  }

  100% {
    opacity: 0;
  }
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}

.about-media {
  position: relative;
}

.about-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.about-media-badge {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
}

.about-media-badge strong {
  font-size: 26px;
  font-weight: 800;
  color: var(--green-primary);
}

.about-media-badge span {
  font-size: 12.5px;
  color: var(--text-muted);
}

.about-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  margin: 32px 0 34px;
}

.about-point {
  display: flex;
  gap: 14px;
}

.about-point i {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 12px;
  background: rgba(46, 125, 50, 0.09);
  color: var(--green-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
}

.about-point h4 {
  font-size: 15.5px;
  margin-bottom: 4px;
}

.about-point p {
  font-size: 13.5px;
  color: var(--text-muted);
}

/* ---------- Why Choose Us ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 70px;
}

.why-item {
  background: var(--navy-soft);
  padding: 40px 30px;
  text-align: center;
  transition: background .4s var(--ease), transform .4s var(--ease);
}

.why-item:hover {
  background: rgba(76, 175, 80, 0.14);
  transform: translateY(-4px);
}

.why-item i {
  font-size: 30px;
  color: var(--green-accent);
  margin-bottom: 16px;
  display: block;
}

.why-item h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-light);
  max-width: 220px;
  margin: 0 auto;
}

.counters {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.counter {
  padding: 10px;
}

.counter-num {
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 800;
  color: var(--gold);
}

.counter-suffix {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: var(--gold);
}

.counter p {
  margin-top: 6px;
  font-size: 13.5px;
  color: var(--text-light-muted);
  letter-spacing: 0.02em;
}

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.service-card {
  background: var(--grey-light);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: left;
  border: 1px solid transparent;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease), background .4s var(--ease);
}

.service-card:hover {
  transform: translateY(-8px);
  background: #fff;
  box-shadow: var(--shadow-md);
  border-color: rgba(46, 125, 50, 0.18);
}

.service-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  margin-bottom: 20px;
  background: var(--gradient-green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  box-shadow: 0 8px 18px rgba(46, 125, 50, 0.28);
}

.service-card h3 {
  font-size: 17px;
  margin-bottom: 8px;
}

.service-card p {
  font-size: 13.5px;
  color: var(--text-muted);
}

/* ---------- Fleet ---------- */
.fleet-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  background: var(--grey-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.fleet-media {
  position: relative;
  min-height: 380px;
}

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

.fleet-tag {
  position: absolute;
  top: 22px;
  left: 22px;
  background: rgba(7, 26, 45, 0.85);
  color: #fff;
  font-size: 12.5px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  gap: 6px;
}

.fleet-tag i {
  color: var(--green-accent);
}

.fleet-info {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fleet-info h3 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 14px;
}

.fleet-info h3 span {
  color: var(--green-primary);
}

.fleet-info>p {
  color: var(--text-muted);
  margin-bottom: 26px;
  max-width: 460px;
}

.fleet-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 20px;
  margin-bottom: 32px;
}

.fleet-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
}

.fleet-features i {
  color: var(--green-primary);
  width: 18px;
}

/* ---------- Destinations ---------- */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.dest-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 240px;
  padding: 26px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(7, 26, 45, 0.08);
  background: linear-gradient(180deg, #ffffff 0%, #f7fbf8 100%);
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}

.dest-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(46, 125, 50, 0.18);
}

.route-card-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: var(--gradient-green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 10px 22px rgba(46, 125, 50, 0.24);
}

.route-card-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.route-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-primary);
}

.route-card-body h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
}

.route-card-body p {
  font-size: 14px;
  color: var(--text-muted);
}

.route-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.route-card-meta span {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: var(--radius-pill);
  background: rgba(46, 125, 50, 0.08);
  color: var(--green-primary);
  font-size: 12px;
  font-weight: 600;
}

/* ---------- Gallery ---------- */
.masonry {
  columns: 4 220px;
  column-gap: 18px;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 18px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.masonry-item img {
  width: 100%;
  display: block;
  transition: transform .6s var(--ease);
}

.masonry-item:hover img {
  transform: scale(1.06);
}

.masonry-item.tall img {
  aspect-ratio: 3/4.2;
  object-fit: cover;
}

.masonry-item:not(.tall) img {
  aspect-ratio: 3/2.6;
  object-fit: cover;
}

.testimonial-slider {
  position: relative;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform .6s var(--ease);
}

.testimonial-card {
  min-width: 100%;
  border-radius: var(--radius-lg);
  padding: 44px;
  background: var(--grey-light);
  border: 1px solid rgba(7, 26, 45, 0.06);
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.quote-icon {
  font-size: 26px;
  color: var(--green-accent);
  opacity: 0.5;
  margin-bottom: 18px;
}

.testimonial-card p {
  font-size: 17px;
  color: var(--text-dark);
  margin-bottom: 26px;
  line-height: 1.7;
}

.testimonial-user {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.testimonial-user img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-user h5 {
  font-size: 15px;
}

.testimonial-user span {
  font-size: 12.5px;
  color: var(--text-muted);
}

.stars {
  color: var(--gold);
  font-size: 13px;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 36px;
}

.testimonial-dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(7, 26, 45, 0.16);
  transition: all .3s;
}

.testimonial-dots button.active {
  background: var(--green-primary);
  width: 26px;
  border-radius: 6px;
}

/* ---------- FAQ ---------- */
.faq-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: flex-start;
}

.accordion-item {
  border-bottom: 1px solid rgba(7, 26, 45, 0.1);
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 4px;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  color: var(--navy);
}

.accordion-trigger i {
  color: var(--green-primary);
  transition: transform .35s var(--ease);
  flex-shrink: 0;
  margin-left: 16px;
}

.accordion-item.active .accordion-trigger i {
  transform: rotate(45deg);
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease);
}

.accordion-panel p {
  padding: 0 4px 22px;
  color: var(--text-muted);
  font-size: 14.5px;
  max-width: 520px;
}

.accordion-item.active .accordion-panel {
  max-height: 200px;
}

/* ---------- Final CTA ---------- */
.final-cta {
  background: var(--gradient-navy);
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(76, 175, 80, 0.18), transparent 70%);
  top: -200px;
  right: -200px;
}

.final-cta-inner {
  position: relative;
  text-align: center;
}

.final-cta-inner h2 {
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}

.final-cta-inner h2 span {
  display: block;
  color: var(--green-accent);
}

.final-cta-inner p {
  color: var(--text-light-muted);
  font-size: 16px;
  margin-bottom: 36px;
}

/* ---------- Footer ---------- */
.footer {
  background: #050F1A;
  color: var(--text-light-muted);
  padding-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.3fr;
  gap: 50px;
  padding-bottom: 60px;
}

.footer-brand p {
  margin: 18px 0 20px;
  font-size: 13.5px;
  line-height: 1.7;
  max-width: 280px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s, transform .3s;
}

.social-links a:hover {
  background: var(--gradient-green);
  transform: translateY(-3px);
}

.footer-col h4,
.footer-contact h4 {
  color: #fff;
  font-size: 14.5px;
  margin-bottom: 20px;
  letter-spacing: 0.03em;
}

.footer-col a {
  display: block;
  font-size: 13.5px;
  margin-bottom: 12px;
  transition: color .3s, padding-left .3s;
}

.footer-col a:hover {
  color: var(--green-accent);
  padding-left: 4px;
}

.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.footer-phone i {
  color: var(--green-accent);
}

.footer-note {
  font-size: 12.5px;
  margin-bottom: 22px;
}

.footer-qr {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.04);
  padding: 14px;
  border-radius: var(--radius-md);
  margin-bottom: 26px;
}

.qr-box {
  width: 64px;
  height: 64px;
  background: #fff;
  border-radius: 8px;
  flex-shrink: 0;
}

.footer-qr strong {
  color: #fff;
  font-size: 13px;
  display: block;
  margin-bottom: 2px;
}

.footer-qr p {
  font-size: 12px;
}

.footer-areas h5 {
  color: #fff;
  font-size: 13px;
  margin-bottom: 8px;
}

.footer-areas p {
  font-size: 12.5px;
  line-height: 1.7;
}

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

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom-inner p {
  font-size: 12.5px;
}

.footer-legal {
  display: flex;
  gap: 22px;
}

.footer-legal a {
  font-size: 12.5px;
}

.footer-legal a:hover {
  color: var(--green-accent);
}

/* ---------- Floating Actions ---------- */
.floating-actions {
  position: fixed;
  right: 26px;
  bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 900;
}

.fab {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  box-shadow: var(--shadow-md);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}

.fab-whatsapp {
  background: #25D366;
  animation: pulse 2.4s infinite;
}

.fab-call {
  background: var(--gradient-green);
}

.fab-top {
  background: #fff;
  color: var(--navy);
  font-size: 18px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(7, 26, 45, 0.1);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}

.fab-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.fab:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: var(--shadow-lg);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }

  70% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* ---------- Mobile Sticky Booking Bar ---------- */
.mobile-booking-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 950;
  background: #fff;
  box-shadow: 0 -8px 24px rgba(7, 26, 45, 0.12);
}

.booking-bar-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 0;
  font-weight: 600;
  font-size: 14.5px;
}

.booking-bar-btn.call {
  color: var(--navy);
}

.booking-bar-btn.whatsapp {
  background: #25D366;
  color: #fff;
}

/* ---------- Mobile Nav Drawer ---------- */
@media (max-width: 992px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: min(320px, 84vw);
    background: rgba(7, 26, 45, 0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 40px;
    gap: 26px;
    transition: right .5s var(--ease);
    z-index: 1100;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links .nav-link {
    color: #fff;
    font-size: 18px;
  }

  .hamburger {
    display: flex;
    z-index: 1101;
  }

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

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

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