* {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

:root {
  --gold: #C9A84C;
  --gold-light: #F0D080;
  --deep: #0B1C2C;
  --navy: #132A40;
  --accent: #E8622A;
  --white: #FDFAF4;
  --text: #1A1A1A;
  --muted: #6B7280;
  --radius: 14px;
}

html {
  scroll-behavior: smooth
}

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

/* ===== TOPBAR ===== */
.topbar {
  background: var(--deep);
  color: #ccc;
  font-size: 13px;
  padding: 8px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center
}

.topbar a {
  color: #ccc;
  text-decoration: none;
  /* margin-left: 16px */
}

.topbar a:hover {
  color: var(--gold)
}

.topbar-left {
  display: flex;
  gap: 24px;
  align-items: center
}

/* ===== NAV ===== */
nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #e5ddd0;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  transition: box-shadow .3s
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: #e9ebeb;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  font-size: 20px;
  font-weight: 900
}

.logo-text strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  color: var(--deep);
  font-weight: 700;
  line-height: 1.2
}

.logo-text span {
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600
}

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

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-size: 13.5px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all .2s;
  white-space: nowrap
}

.nav-links a:hover {
  background: #f5ede0;
  color: var(--deep)
}

.nav-cta {
  background: var(--accent);
  color: #fff !important;
  padding: 10px 20px !important;
  border-radius: 8px !important;
  font-weight: 600 !important
}

.nav-cta:hover {
  background: #c9521e !important;
  transform: translateY(-1px)
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
  z-index: 1010
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--deep);
  border-radius: 2px;
  transition: all .3s
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px)
}

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

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px)
}

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 1px solid #e5ddd0;
  padding: 16px 20px 24px;
  flex-direction: column;
  gap: 4px;
  z-index: 999;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition: all .25s
}

.mobile-nav.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all
}

.mobile-nav a {
  display: block;
  padding: 12px 16px;
  border-radius: 10px;
  color: var(--text);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: background .2s
}

.mobile-nav a:hover {
  background: #f5ede0;
  color: var(--deep)
}

.mobile-nav .nav-cta {
  background: var(--accent);
  color: #fff !important;
  text-align: center;
  margin-top: 8px;
  font-weight: 600 !important
}

/* ===== HERO ===== */
.hero {
  height: 100vh;
  min-height: 620px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--deep) 0%, var(--navy) 40%, #1a3a56 100%);
  z-index: 0
}

/* Road */
.road {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 220px;
  z-index: 1;
  overflow: hidden
}

.road-asphalt {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 90px;
  background: #1a1a2e
}

.road-line-center {
  position: absolute;
  bottom: 40px;
  height: 5px;
  background: rgba(255, 220, 50, 0.25);
  width: 100%
}

.road-stripe {
  position: absolute;
  bottom: 40px;
  height: 5px;
  background: #f0c040;
  border-radius: 2px;
  animation: stripe 1.8s linear infinite
}

@keyframes stripe {
  from {
    left: -120px
  }

  to {
    left: 110vw
  }
}

.road-shoulder {
  position: absolute;
  bottom: 87px;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.12)
}

/* ===== REALISTIC SVG BUS ===== */
.bus-container {
  position: absolute;
  bottom: 50px;
  z-index: 10;
  animation: busDrive 16s linear infinite
}

@keyframes busDrive {
  0% {
    left: -420px
  }

  100% {
    left: 110vw
  }
}

.bus-svg {
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.55))
}

.bus2-container {
  position: absolute;
  bottom: 38px;
  z-index: 4;
  animation: busDrive2 26s linear infinite;
  animation-delay: 6s
}

@keyframes busDrive2 {
  0% {
    left: -260px
  }

  100% {
    left: 110vw
  }
}

.bus2-svg {
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.4));
  opacity: 0.55
}

/* wheel spin via CSS on the hub */
.wheel-hub {
  transform-origin: 50% 50%;
  animation: wspin .45s linear infinite
}

@keyframes wspin {
  to {
    transform: rotate(360deg)
  }
}

/* Hero decor */
.hero-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.15)
}

.hero-circle-1 {
  width: 500px;
  height: 500px;
  top: -150px;
  right: -100px
}

.hero-circle-2 {
  width: 300px;
  height: 300px;
  top: 50px;
  right: 200px;
  animation: rotateSlow 40s linear infinite
}

.hero-circle-3 {
  width: 700px;
  height: 700px;
  bottom: -300px;
  left: -200px
}

@keyframes rotateSlow {
  to {
    transform: rotate(360deg)
  }
}

.stars {
  position: absolute;
  inset: 0;
  z-index: 1
}

.star {
  position: absolute;
  width: 2px;
  height: 2px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  animation: twinkle 3s ease-in-out infinite
}

@keyframes twinkle {

  0%,
  100% {
    opacity: .4
  }

  50% {
    opacity: 1
  }
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 0 60px;
  max-width: 720px;
  animation: heroIn 1s ease both
}

@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(30px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.hero-tag {
  display: inline-block;
  background: rgba(201, 168, 76, 0.2);
  border: 1px solid rgba(201, 168, 76, 0.4);
  color: var(--gold-light);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 66px);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
  font-weight: 900
}

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

.hero p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 500px;
  font-weight: 300
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  padding: 14px 30px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all .2s;
  border: none;
  cursor: pointer;
  display: inline-block
}

.btn-primary:hover {
  background: #c9521e;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 98, 42, 0.4)
}

.btn-outline {
  background: transparent;
  color: #fff;
  padding: 14px 30px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all .2s;
  border: 2px solid rgba(201, 168, 76, 0.5)
}

.btn-outline:hover {
  background: rgba(201, 168, 76, 0.15);
  border-color: var(--gold)
}

.hero-stats {
  position: absolute;
  bottom: 110px;
  right: 50px;
  z-index: 10;
  display: flex;
  gap: 20px;
  animation: heroIn 1s ease both;
  animation-delay: .4s
}

.stat-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 18px 22px;
  text-align: center
}

.stat-card .num {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 900;
  color: var(--gold);
  display: block
}

.stat-card .label {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 4px
}

/* ===== MARQUEE ===== */
.marquee-bar {
  background: var(--gold);
  padding: 12px 0;
  overflow: hidden
}

.marquee-inner {
  display: flex;
  white-space: nowrap;
  animation: marquee 22s linear infinite
}

.marquee-inner span {
  font-size: 13px;
  font-weight: 600;
  color: var(--deep);
  padding: 0 32px;
  letter-spacing: 1px;
  text-transform: uppercase
}

.marquee-inner span::before {
  content: '✦';
  margin-right: 12px
}

@keyframes marquee {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

/* ===== SECTIONS ===== */
section {
  padding: 90px 60px
}

.section-tag {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 10px
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--deep);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 16px
}

.section-sub {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  max-width: 580px;
  font-weight: 300
}

.section-header {
  margin-bottom: 56px
}

.section-header.center {
  text-align: center
}

.section-header.center .section-sub {
  margin: 0 auto
}

/* ===== ABOUT ===== */
.about {
  background: #fff
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center
}

.about-img-main {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--deep), var(--navy));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative
}

.about-bus-wrap {
  width: auto;
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--accent);
  color: #fff;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  min-width: 120px;
  box-shadow: 0 8px 24px rgba(232, 98, 42, 0.35)
}

.about-badge strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 900
}

.about-badge span {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: .9
}

.about-points {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px
}

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

.point-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 10px;
  background: #fdf3eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px
}

.point-text strong {
  display: block;
  font-size: 15px;
  color: var(--deep);
  font-weight: 600;
  margin-bottom: 2px
}

.point-text span {
  font-size: 13px;
  color: var(--muted)
}

/* ===== SERVICES ===== */
.services {
  background: linear-gradient(180deg, #f8f3eb 0%, #fff 100%)
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px
}

.service-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1.5px solid #ede5d8;
  padding: 32px 28px;
  cursor: pointer;
  transition: all .3s;
  position: relative;
  overflow: hidden
}

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

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.10);
  border-color: transparent
}

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

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
  transition: transform .3s
}

.service-card:hover .service-icon {
  transform: scale(1.1)
}

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--deep);
  margin-bottom: 10px;
  font-weight: 700
}

.service-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px
}

.service-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap .2s
}

.service-card:hover .service-link {
  gap: 10px
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all
}

.modal {
  background: #fff;
  border-radius: 20px;
  max-width: 580px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  animation: modalIn .3s ease both
}

@keyframes modalIn {
  from {
    transform: scale(0.9) translateY(20px);
    opacity: 0
  }

  to {
    transform: scale(1) translateY(0);
    opacity: 1
  }
}

.modal-header {
  padding: 32px 32px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px
}

.modal-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  color: var(--deep);
  font-weight: 900
}

.modal-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f3ede5;
  border: none;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  transition: background .2s
}

.modal-close:hover {
  background: #ead9c8
}

.modal-body {
  padding: 20px 32px 32px
}

.modal-icon {
  font-size: 48px;
  margin-bottom: 16px
}

.modal-body p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 16px
}

.modal-body ul {
  padding-left: 20px;
  color: var(--muted);
  line-height: 2
}

.modal-cta {
  display: inline-block;
  margin-top: 20px;
  background: var(--accent);
  color: #fff;
  padding: 13px 28px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s
}

.modal-cta:hover {
  background: #c9521e
}

/* ===== FLEET ===== */
.fleet {
  background: #fff
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px
}

.fleet-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1.5px solid #ede5d8;
  transition: all .3s
}

.fleet-card:hover {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px)
}

.fleet-img {
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* padding: 10px; */
  transition: transform .3s
}

.fleet-card:hover .fleet-img {
  transform: scale(1.04)
}

.fleet-info {
  padding: 16px 18px
}

.fleet-info h4 {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  color: var(--deep);
  font-weight: 700;
  margin-bottom: 4px
}

.fleet-info p {
  font-size: 13px;
  color: var(--muted)
}

.fleet-tag {
  display: inline-block;
  margin-top: 10px;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  background: #fdf3eb;
  color: var(--accent)
}

/* our gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px
}
.gallery-img {
  height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s
}

/* ===== WHY ===== */
.why {
  background: var(--deep);
  position: relative;
  overflow: hidden
}

.why::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.05)
}

.why .section-tag {
  color: var(--gold)
}

.why .section-title {
  color: #fff
}

.why .section-sub {
  color: rgba(255, 255, 255, 0.6)
}

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

.why-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 30px 24px;
  transition: all .3s
}

.why-card:hover {
  background: rgba(201, 168, 76, 0.1);
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-4px)
}

.why-card .icon {
  font-size: 32px;
  margin-bottom: 16px;
  display: block
}

.why-card h3 {
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 700
}

.why-card p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  line-height: 1.7;
  font-weight: 300
}

/* ===== DESTINATIONS ===== */
.destinations {
  background: #f8f3eb
}

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

.dest-card {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
  cursor: pointer
}

.dest-bg {
  position: absolute;
  inset: 0;
  transition: transform .4s;
}

.dest-card:hover .dest-bg {
  transform: scale(1.06)
}

.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, transparent 60%)
}

.dest-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 16px
}

.dest-info h4 {
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700
}

.dest-info span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px
}

/* ===== OUR CLIENTS ===== */
.clients {
  background: #fff
}

.clients-intro {
  margin-bottom: 20px
}

.clients-strip {
  display: flex;
  gap: 0;
  overflow: hidden;
  margin-bottom: 48px;
  border-radius: 12px;
  border: 1.5px solid #ede5d8
}

.clients-strip-inner {
  display: flex;
  animation: clientScroll 28s linear infinite;
  width: max-content
}

.clients-strip-inner:hover {
  animation-play-state: paused
}

.strip-logo {
  padding: 18px 40px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  border-right: 1px solid #ede5d8;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color .2s;
  background: #fff
}

.strip-logo:hover {
  color: var(--deep);
  background: #fdf9f5
}

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

@keyframes clientScroll {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

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

.client-card {
  border-radius: var(--radius);
  border: 1.5px solid #ede5d8;
  padding: 28px 26px;
  transition: all .3s;
  background: #fff;
  position: relative;
  overflow: hidden
}

.client-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s
}

.client-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.09);
  border-color: transparent
}

.client-card:hover::after {
  transform: scaleX(1)
}

.client-card.c1::after {
  background: linear-gradient(90deg, #1a73e8, #4a90e2)
}

.client-card.c2::after {
  background: linear-gradient(90deg, #e8621a, #f0a050)
}

.client-card.c3::after {
  background: linear-gradient(90deg, #1aa85c, #50c878)
}

.client-card.c4::after {
  background: linear-gradient(90deg, #8b1ae8, #b050f0)
}

.client-card.c5::after {
  background: linear-gradient(90deg, #e81a4a, #f05080)
}

.client-card.c6::after {
  background: linear-gradient(90deg, #1a5ae8, #50a0f0)
}

.client-card.c7::after {
  background: linear-gradient(90deg, #e8a01a, #f0c850)
}

.client-card.c8::after {
  background: linear-gradient(90deg, #1ae8d4, #50f0e0)
}

.client-logo-box {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 18px;
  flex-shrink: 0
}

.client-card-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px
}

.client-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--deep);
  font-weight: 700
}

.client-type {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
  margin-top: 2px
}

.client-desc {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.7
}

.client-since {
  display: inline-block;
  margin-top: 14px;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  background: #f5f0ff;
  color: #6b3fc0
}

.clients-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1.5px solid #ede5d8;
  border-radius: 14px;
  overflow: hidden;
  margin-top: 48px
}

.cstat {
  padding: 28px 20px;
  text-align: center;
  border-right: 1px solid #ede5d8
}

.cstat:last-child {
  border-right: none
}

.cstat .num {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 900;
  color: var(--accent);
  display: block;
  margin-bottom: 6px
}

.cstat .lbl {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: #fdfaf4
}

.test-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px
}

.test-card {
  background: #fff;
  border: 1.5px solid #ede5d8;
  border-radius: var(--radius);
  padding: 28px;
  transition: all .3s
}

.test-card:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.07);
  border-color: #d4c4b0
}

.test-stars {
  color: var(--gold);
  font-size: 14px;
  margin-bottom: 12px;
  letter-spacing: 2px
}

.test-text {
  font-size: 15px;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic
}

.test-author {
  display: flex;
  align-items: center;
  gap: 12px
}

.test-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--deep), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  font-family: 'Playfair Display', serif
}

.test-name strong {
  display: block;
  font-size: 14px;
  color: var(--deep);
  font-weight: 600
}

.test-name span {
  font-size: 12px;
  color: var(--muted)
}

/* ===== CONTACT ===== */
.contact {
  background: linear-gradient(135deg, var(--deep) 0%, var(--navy) 100%);
  position: relative;
  overflow: hidden
}

.contact::after {
  content: '';
  position: absolute;
  top: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.06)
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start
}

.contact .section-tag {
  color: var(--gold)
}

.contact .section-title {
  color: #fff
}

.contact .section-sub {
  color: rgba(255, 255, 255, 0.6)
}

.contact-info {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px
}

.ci-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 10px;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: white;
}

.ci-text strong {
  display: block;
  color: #fff;
  font-size: 14px;
  margin-bottom: 2px;
  font-weight: 600
}

.ci-text span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px
}

.contact-form {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 36px
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}

.form-group {
  margin-bottom: 18px
}

.form-group label {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 8px
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 13px 16px;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  transition: border .2s;
  outline: none
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.35)
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.1)
}

.form-group select option {
  background: var(--navy);
  color: #fff
}

.form-group textarea {
  resize: vertical;
  min-height: 100px
}

.btn-submit {
  width: 100%;
  background: var(--accent);
  color: #fff;
  padding: 15px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: all .2s;
  font-family: 'DM Sans', sans-serif
}

.btn-submit:hover {
  background: #c9521e;
  transform: translateY(-1px)
}

#form-success {
  display: none;
  text-align: center;
  color: #4ade80;
  padding: 20px;
  font-size: 16px;
  font-weight: 500
}

/* ===== FOOTER ===== */
footer {
  background: #080f17;
  color: rgba(255, 255, 255, 0.55);
  padding: 60px 60px 30px
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px
}

.footer-brand h3 {
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 4px
}

.footer-brand span {
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase
}

.footer-brand p {
  margin-top: 16px;
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.45)
}

.footer-col h4 {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px
}

.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  font-size: 13px;
  margin-bottom: 10px;
  transition: color .2s
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px
}

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

.social-btn {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  text-decoration: none;
  transition: all .2s
}

.social-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff
}

/* ===== FLOAT ===== */
.float-buttons {
  position: fixed;
  bottom: 30px;
  right: 24px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end
}

.float-btn {
  display: flex;
  align-items: center;
  /* gap: 10px; */
  padding: 12px 12px;
  border-radius: 90px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all .2s;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  white-space: nowrap
}

.float-btn .icon {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px
}

.float-label {
  max-width: 0;
  overflow: hidden;
  transition: max-width .3s, opacity .3s;
  opacity: 0
}

.float-btn:hover .float-label {
  max-width: 120px;
  opacity: 1
}

.float-call {
  background: #1a73e8;
  color: #fff
}

.float-call:hover {
  background: #1557b0;
  transform: scale(1.05)
}

.float-wa {
  background: #25d366;
  color: #fff
}

.float-wa:hover {
  background: #1da851;
  transform: scale(1.05)
}

/* ===== ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0)
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity .7s ease, transform .7s ease
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0)
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity .7s ease, transform .7s ease
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0)
}

.stagger-1 {
  transition-delay: .1s
}

.stagger-2 {
  transition-delay: .2s
}

.stagger-3 {
  transition-delay: .3s
}

.stagger-4 {
  transition-delay: .4s
}

.stagger-5 {
  transition-delay: .5s
}

/* ===== RESPONSIVE ===== */
@media(max-width:960px) {
  nav {
    padding: 0 20px
  }

  .nav-links {
    display: none
  }

  .hamburger {
    display: flex
  }

  .mobile-nav {
    display: flex
  }

  section {
    padding: 60px 20px
  }

  .hero-content {
    padding: 0 24px
  }

  .hero-stats {
    display: none
  }

  .about-inner,
  .contact-inner {
    grid-template-columns: 1fr
  }

  .about-badge {
    right: 0;
    bottom: -16px
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr
  }

  footer {
    padding: 50px 20px 24px
  }

  .form-row {
    grid-template-columns: 1fr
  }

  .topbar {
    display: none
  }

  .clients-stats {
    grid-template-columns: repeat(2, 1fr)
  }

  .cstat {
    border-bottom: 1px solid #ede5d8
  }

  .cstat:nth-child(2n) {
    border-right: none
  }

  .cstat:nth-last-child(-n+2) {
    border-bottom: none
  }
}

@media(max-width:600px) {
  .hero h1 {
    font-size: 34px
  }

  .footer-grid {
    grid-template-columns: 1fr
  }

  .clients-stats {
    grid-template-columns: repeat(2, 1fr)
  }
}