@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* ============================================================
   Car Cabs & Taxi Services — Main Stylesheet
   ============================================================ */

:root {
  --off-white:     #F7F5F2;
  --warm-beige:    #D9C3A5;
  --beige-light:   #EDE3D5;
  --beige-mid:     #C9AC88;
  --premium-black: #111111;
  --dark-gray:     #2a2a2a;
  --medium-gray:   #6b6b6b;
  --light-gray:    #e8e4df;
  --font-heading:  'Lora', serif;
  --font-sub:      'Poppins', sans-serif;
  --font-body:     'Poppins', sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html  { scroll-behavior: smooth; }
body  { font-family: var(--font-body); background: var(--off-white); color: var(--premium-black); overflow-x: hidden; }
img   { max-width: 100%; display: block; }
a     { text-decoration: none; }

/* ── Preloader ── */
#preloader {
  position: fixed; inset: 0; background: var(--premium-black);
  z-index: 9999; display: flex; align-items: center; justify-content: center;
  transition: opacity .6s ease;
}
#preloader.hide { opacity: 0; pointer-events: none; }
.preloader-inner { text-align: center; color: var(--warm-beige); }
.preloader-inner .brand { font-family: var(--font-heading); font-size: 2rem; letter-spacing: 2px; }
.preloader-sub { font-family: var(--font-sub); font-size: .6rem; letter-spacing: 4px; margin-top: 6px; color: rgba(255,255,255,.4); }
.preloader-bar  { width: 200px; height: 2px; background: rgba(255,255,255,.1); margin: 20px auto 0; border-radius: 2px; overflow: hidden; }
.preloader-fill { height: 100%; background: var(--warm-beige); animation: preload-fill 1.5s ease forwards; }
@keyframes preload-fill { from { width: 0; } to { width: 100%; } }

/* ── Navbar ── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--premium-black);
  padding: 20px 0; transition: all .4s ease;
  box-shadow: 0 2px 30px rgba(0,0,0,.3);
}
#navbar.scrolled {
  background: var(--premium-black);
  padding: 12px 0;
  box-shadow: 0 2px 30px rgba(0,0,0,.3);
}
.navbar-brand { display: flex; align-items: center; gap: 12px; }
.brand-logo-icon {
  width: 44px; height: 44px; background: var(--warm-beige);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--premium-black); font-weight: 700;
}
.brand-text              { color: #fff; }
.brand-text .top         { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; line-height: 1.1; }
.brand-text .sub         { font-family: var(--font-sub); font-size: .55rem; letter-spacing: 3px; text-transform: uppercase; color: var(--warm-beige); }
.nav-link-custom {
  font-family: var(--font-sub); font-size: .75rem; letter-spacing: 1.5px;
  text-transform: uppercase; color: rgba(255,255,255,.85) !important;
  padding: 6px 14px !important; transition: color .3s; font-weight: 500;
}
.nav-link-custom:hover,
.nav-link-custom.active  { color: var(--warm-beige) !important; }
.nav-cta {
  background: var(--warm-beige); color: var(--premium-black) !important;
  border-radius: 30px; padding: 7px 20px !important; font-weight: 600;
}
.nav-cta:hover           { background: var(--beige-mid); }
.navbar-toggler          { border: 1px solid rgba(255,255,255,.3); }
.navbar-toggler-icon     { filter: invert(1); }

/* mobile nav dropdown */
@media (max-width: 991px) {
  #navbar.scrolled { padding: 10px 0; }
  .navbar-collapse {
    background: var(--premium-black);
    padding: 16px 20px 20px;
    border-top: 1px solid rgba(255,255,255,.08);
    margin-top: 10px;
    border-radius: 0 0 12px 12px;
  }
  .nav-link-custom { padding: 10px 0 !important; }
}

/* ── Section Commons ── */
section { padding: 90px 0; }
@media (max-width: 768px) { section { padding: 60px 0; } }

.section-label {
  font-family: var(--font-sub); font-size: .65rem; letter-spacing: 4px;
  text-transform: uppercase; color: var(--beige-mid); font-weight: 600;
  margin-bottom: 12px; display: block;
}
.section-title {
  font-family: var(--font-heading); font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700; color: var(--premium-black); line-height: 1.2;
}
.section-title em { color: var(--beige-mid); font-style: italic; }
.section-subtitle {
  font-family: var(--font-body); font-size: .9rem; color: var(--medium-gray);
  line-height: 1.8; margin-top: 14px;
}
.divider-line { width: 50px; height: 2px; background: var(--warm-beige); margin: 20px 0; }

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: var(--premium-black);
  padding: 140px 0 80px;
  text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url('../assets/images/taxi-1280-960.jpg') center/cover no-repeat;
  opacity: .18;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero .section-label { color: var(--warm-beige); }
.page-hero h1 { font-family: var(--font-heading); font-size: clamp(2rem,5vw,3.5rem); color: #fff; font-weight: 700; }
.page-hero .breadcrumb { justify-content: center; margin-top: 16px; }
.page-hero .breadcrumb-item, .page-hero .breadcrumb-item a { color: rgba(255,255,255,.6); font-family: var(--font-sub); font-size: .72rem; letter-spacing: 1px; }
.page-hero .breadcrumb-item.active { color: var(--warm-beige); }
.page-hero .breadcrumb-item+.breadcrumb-item::before { color: rgba(255,255,255,.3); }

/* ── Trusted Strip ── */
#trusted       { background: var(--premium-black); padding: 24px 0; overflow-x: hidden; }
.trusted-strip { display: flex; align-items: center; gap: 50px; overflow-x: auto; white-space: nowrap; scrollbar-width: none; max-width: 100%; }
.trusted-strip::-webkit-scrollbar { display: none; }
.trusted-item  { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.6); font-family: var(--font-sub); font-size: .7rem; letter-spacing: 2px; text-transform: uppercase; flex-shrink: 0; }
.trusted-item i { color: var(--warm-beige); font-size: 1rem; }

/* ── Buttons ── */
.btn-primary-custom {
  background: var(--warm-beige); color: var(--premium-black);
  font-family: var(--font-sub); font-size: .75rem; letter-spacing: 2px;
  text-transform: uppercase; font-weight: 700;
  padding: 14px 32px; border-radius: 30px; border: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all .3s; cursor: pointer;
}
.btn-primary-custom:hover  { background: var(--beige-mid); color: var(--premium-black); transform: translateY(-2px); }
.btn-dark-custom {
  background: var(--premium-black); color: #fff;
  font-family: var(--font-sub); font-size: .75rem; letter-spacing: 2px;
  text-transform: uppercase; font-weight: 700;
  padding: 14px 32px; border-radius: 30px; border: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all .3s; cursor: pointer;
}
.btn-dark-custom:hover     { background: var(--dark-gray); color: #fff; transform: translateY(-2px); }
.btn-outline-custom {
  background: transparent; color: var(--premium-black);
  font-family: var(--font-sub); font-size: .75rem; letter-spacing: 2px;
  text-transform: uppercase; font-weight: 600;
  padding: 14px 32px; border-radius: 30px; border: 1.5px solid var(--premium-black);
  display: inline-flex; align-items: center; gap: 8px;
  transition: all .3s; cursor: pointer;
}
.btn-outline-custom:hover  { background: var(--premium-black); color: #fff; }
.btn-hero-primary {
  background: var(--warm-beige); color: var(--premium-black);
  font-family: var(--font-sub); font-size: .75rem; letter-spacing: 2px;
  text-transform: uppercase; font-weight: 700;
  padding: 14px 32px; border-radius: 30px; border: none;
  display: inline-flex; align-items: center; gap: 8px; transition: all .3s;
}
.btn-hero-primary:hover    { background: #fff; color: var(--premium-black); transform: translateY(-2px); }
.btn-hero-outline {
  background: transparent; color: #fff;
  font-family: var(--font-sub); font-size: .75rem; letter-spacing: 2px;
  text-transform: uppercase; font-weight: 600;
  padding: 14px 32px; border-radius: 30px; border: 1px solid rgba(255,255,255,.5);
  display: inline-flex; align-items: center; gap: 8px; transition: all .3s;
}
.btn-hero-outline:hover    { border-color: var(--warm-beige); color: var(--warm-beige); }

/* ── Mobile Responsive Fixes ── */
@media (max-width: 991px) {
  .hero-btns { gap: 8px; flex-wrap: wrap; }
}
@media (max-width: 768px) {
  #hero { padding-top: 60px; }
  .hero-title { font-size: clamp(1.5rem, 4vw, 2.5rem); }
  .hero-btns { gap: 8px; flex-direction: column; }
  .hero-btns .btn-hero-primary,
  .hero-btns .btn-hero-outline { width: 100%; justify-content: center; white-space: nowrap; }
  .hero-stats { flex-direction: column; gap: 20px; bottom: 30px; }
  .hero-stat-divider { display: none; }
  .trusted-strip { gap: 20px; }
}
@media (max-width: 480px) {
  .hero-title { font-size: clamp(1.3rem, 3.5vw, 2rem); }
  .hero-subtitle { font-size: .8rem; }
  .hero-stat .num { font-size: 1.5rem; }
  .hero-tag { font-size: .6rem; padding: 4px 12px; margin-bottom: 16px; }
}

/* ── About ── */
#about                { background: var(--off-white); }
.about-left           { padding-right: 40px; }
.about-features       { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; }
.about-feat           { display: flex; align-items: flex-start; gap: 10px; font-family: var(--font-sub); font-size: .78rem; color: var(--dark-gray); font-weight: 500; }
.about-feat i         { color: var(--beige-mid); margin-top: 2px; flex-shrink: 0; }
.about-images         { position: relative; height: 480px; }
.about-img-main       { position: absolute; top: 0; left: 0; right: 60px; bottom: 60px; border-radius: 12px; overflow: hidden; }
.about-img-main img   { width: 100%; height: 100%; object-fit: cover; }
.about-img-accent     { position: absolute; bottom: 0; right: 0; width: 55%; height: 55%; border-radius: 12px; overflow: hidden; border: 6px solid var(--off-white); }
.about-img-accent img { width: 100%; height: 100%; object-fit: cover; }
.about-badge          { position: absolute; top: 30px; right: 0; width: 110px; height: 110px; background: var(--warm-beige); border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.about-badge .num     { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 700; color: var(--premium-black); line-height: 1; }
.about-badge .txt     { font-family: var(--font-sub); font-size: .5rem; letter-spacing: 1px; text-transform: uppercase; color: var(--dark-gray); }

/* ── Services Grid ── */
#services         { background: var(--off-white); }
.services-grid    { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--light-gray); border-radius: 12px; overflow: hidden; margin-top: 50px; }
.service-card     { background: #fff; padding: 36px 30px; transition: all .3s ease; position: relative; overflow: hidden; }
.service-card::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 3px; background: var(--warm-beige); transition: width .4s ease; }
.service-card:hover                { background: var(--premium-black); }
.service-card:hover::after         { width: 100%; }
.service-card:hover .svc-icon      { background: var(--warm-beige); color: var(--premium-black); }
.service-card:hover .svc-name      { color: #fff; }
.service-card:hover .svc-desc      { color: rgba(255,255,255,.6); }
.svc-icon         { width: 52px; height: 52px; background: var(--beige-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: var(--beige-mid); margin-bottom: 18px; transition: all .3s; }
.svc-name         { font-family: var(--font-sub); font-size: .9rem; font-weight: 700; color: var(--premium-black); margin-bottom: 8px; transition: color .3s; }
.svc-desc         { font-family: var(--font-body); font-size: .78rem; color: var(--medium-gray); line-height: 1.6; transition: color .3s; }

/* Services page — full-card layout */
.svc-full-card { background: #fff; border-radius: 14px; padding: 36px 30px; box-shadow: 0 2px 20px rgba(0,0,0,.06); transition: transform .3s, box-shadow .3s; height: 100%; }
.svc-full-card:hover { transform: translateY(-5px); box-shadow: 0 10px 40px rgba(0,0,0,.12); }
.svc-full-card .svc-icon { margin-bottom: 20px; }

/* ── Destinations ── */
#destinations     { background: var(--beige-light); }
.dest-grid        { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; margin-top: 50px; }
.dest-card        { position: relative; border-radius: 10px; overflow: hidden; aspect-ratio: 3/4; cursor: pointer; }
.dest-card.large  { grid-row: span 2; aspect-ratio: auto; }
.dest-card img    { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.dest-card:hover img { transform: scale(1.08); }
.dest-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.75) 0%, transparent 50%); }
.dest-card-info   { position: absolute; bottom: 20px; left: 20px; right: 20px; }
.dest-name        { font-family: var(--font-heading); font-size: 1.2rem; color: #fff; font-weight: 700; }
.dest-desc        { font-family: var(--font-sub); font-size: .65rem; color: rgba(255,255,255,.75); text-transform: uppercase; letter-spacing: 1.5px; margin-top: 2px; }
.dest-explore     { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-sub); font-size: .65rem; letter-spacing: 1px; text-transform: uppercase; color: var(--warm-beige); margin-top: 10px; font-weight: 600; }

/* ── Why Choose Us ── */
#why-us                { background: var(--premium-black); }
#why-us .section-title { color: #fff; }
#why-us .section-label { color: var(--warm-beige); }
.why-grid   { display: grid; grid-template-columns: repeat(4,1fr); gap: 30px; margin-top: 50px; }
.why-card   { text-align: center; padding: 30px 20px; border: 1px solid rgba(255,255,255,.08); border-radius: 10px; transition: all .3s; }
.why-card:hover { border-color: var(--warm-beige); background: rgba(217,195,165,.06); }
.why-icon   { width: 60px; height: 60px; background: rgba(217,195,165,.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: var(--warm-beige); margin: 0 auto 16px; }
.why-name   { font-family: var(--font-sub); font-size: .85rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.why-desc   { font-family: var(--font-body); font-size: .75rem; color: rgba(255,255,255,.5); line-height: 1.6; }

/* ── Tour Packages ── */
#packages   { background: var(--off-white); }
.pkg-grid   { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; margin-top: 50px; }
.pkg-card   { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 2px 20px rgba(0,0,0,.06); transition: transform .3s, box-shadow .3s; }
.pkg-card:hover { transform: translateY(-6px); box-shadow: 0 10px 40px rgba(0,0,0,.12); }
.pkg-img    { position: relative; height: 180px; overflow: hidden; }
.pkg-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.pkg-card:hover .pkg-img img { transform: scale(1.05); }
.pkg-tag    { position: absolute; top: 12px; left: 12px; background: var(--warm-beige); color: var(--premium-black); font-family: var(--font-sub); font-size: .6rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 4px 10px; border-radius: 20px; }
.pkg-body   { padding: 20px; }
.pkg-name   { font-family: var(--font-sub); font-size: .88rem; font-weight: 700; margin-bottom: 6px; }
.pkg-meta   { display: flex; gap: 12px; margin-bottom: 12px; }
.pkg-meta span { font-family: var(--font-body); font-size: .7rem; color: var(--medium-gray); display: flex; align-items: center; gap: 4px; }
.pkg-price  { font-family: var(--font-heading); font-size: 1.3rem; color: var(--premium-black); font-weight: 700; }
.pkg-price small { font-size: .7rem; font-family: var(--font-body); color: var(--medium-gray); }
.btn-pkg    { display: block; width: 100%; text-align: center; background: var(--premium-black); color: #fff; font-family: var(--font-sub); font-size: .7rem; letter-spacing: 2px; text-transform: uppercase; font-weight: 600; padding: 10px; border-radius: 6px; margin-top: 14px; transition: background .3s; }
.btn-pkg:hover { background: var(--beige-mid); color: var(--premium-black); }

/* ── Booking Section ── */
#booking                         { background: var(--warm-beige); position: relative; overflow: hidden; }
#booking::before                 { content: ''; position: absolute; top: -80px; right: -80px; width: 300px; height: 300px; border-radius: 50%; background: rgba(255,255,255,.15); }
#booking .section-title          { color: var(--premium-black); }
#booking .section-label          { color: var(--premium-black); opacity: .6; }
.booking-form                    { background: #fff; padding: 40px; border-radius: 16px; box-shadow: 0 10px 60px rgba(0,0,0,.1); }
.form-label-custom               { font-family: var(--font-sub); font-size: .7rem; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 600; color: var(--premium-black); margin-bottom: 6px; display: block; }
.form-control-custom             { width: 100%; padding: 12px 16px; border: 1px solid var(--light-gray); border-radius: 8px; font-family: var(--font-body); font-size: .85rem; color: var(--premium-black); background: var(--off-white); outline: none; transition: border-color .3s; }
.form-control-custom:focus       { border-color: var(--warm-beige); background: #fff; }
.form-group-custom               { margin-bottom: 18px; }
.btn-book                        { width: 100%; background: var(--premium-black); color: #fff; font-family: var(--font-sub); font-size: .75rem; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; padding: 15px; border: none; border-radius: 8px; cursor: pointer; transition: all .3s; display: flex; align-items: center; justify-content: center; gap: 10px; }
.btn-book:hover                  { background: var(--beige-mid); }

/* ── Gallery ── */
#gallery                { background: var(--off-white); }
.gallery-masonry        { columns: 4; column-gap: 14px; margin-top: 50px; }
.gallery-item           { break-inside: avoid; margin-bottom: 14px; border-radius: 10px; overflow: hidden; position: relative; cursor: pointer; }
.gallery-item img       { width: 100%; display: block; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay        { position: absolute; inset: 0; background: rgba(0,0,0,0); transition: background .3s; display: flex; align-items: center; justify-content: center; }
.gallery-item:hover .gallery-overlay { background: rgba(0,0,0,.35); }
.gallery-overlay i      { color: #fff; font-size: 1.5rem; opacity: 0; transition: opacity .3s; }
.gallery-item:hover .gallery-overlay i { opacity: 1; }

/* ── Testimonials ── */
#testimonials   { background: var(--beige-light); }
.testi-swiper   { padding: 20px 0 50px; }
.testi-card     { background: #fff; padding: 36px; border-radius: 14px; box-shadow: 0 2px 30px rgba(0,0,0,.06); }
.testi-quote    { font-size: 2.5rem; color: var(--warm-beige); line-height: 1; margin-bottom: 10px; font-family: Georgia; }
.testi-text     { font-family: var(--font-body); font-size: .85rem; color: var(--dark-gray); line-height: 1.8; margin-bottom: 24px; }
.testi-author   { display: flex; align-items: center; gap: 14px; }
.testi-avatar   { width: 50px; height: 50px; border-radius: 50%; overflow: hidden; background: var(--warm-beige); display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700; color: var(--premium-black); flex-shrink: 0; }
.testi-name     { font-family: var(--font-sub); font-size: .85rem; font-weight: 700; }
.testi-loc      { font-family: var(--font-body); font-size: .72rem; color: var(--medium-gray); }
.testi-stars    { color: #f5a623; font-size: .8rem; margin-top: 3px; }

/* ── Contact ── */
#contact            { background: var(--off-white); }
.contact-info       { padding-right: 40px; }
.contact-detail     { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 24px; }
.contact-icon       { width: 44px; height: 44px; background: var(--beige-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--beige-mid); font-size: 1rem; flex-shrink: 0; }
.contact-label      { font-family: var(--font-sub); font-size: .65rem; letter-spacing: 2px; text-transform: uppercase; color: var(--medium-gray); margin-bottom: 3px; }
.contact-value      { font-family: var(--font-sub); font-size: .9rem; font-weight: 600; color: var(--premium-black); }
.contact-value a    { color: inherit; }
.map-container      { border-radius: 14px; overflow: hidden; height: 260px; border: 2px solid var(--light-gray); margin-top: 30px; }
.map-container iframe { width: 100%; height: 100%; border: none; }
.contact-form-wrap  { background: var(--premium-black); padding: 40px; border-radius: 16px; }
.contact-form-wrap .form-label-custom { color: rgba(255,255,255,.7); }
.contact-form-wrap .form-control-custom { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.1); color: #fff; }
.contact-form-wrap .form-control-custom:focus { border-color: var(--warm-beige); }
.contact-form-wrap textarea { min-height: 100px; resize: vertical; }
.btn-send           { width: 100%; background: var(--warm-beige); color: var(--premium-black); font-family: var(--font-sub); font-size: .75rem; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; padding: 14px; border: none; border-radius: 8px; cursor: pointer; transition: all .3s; }
.btn-send:hover     { background: var(--beige-mid); }
.btn-wa-contact     { display: flex; align-items: center; justify-content: center; gap: 10px; background: #25D366; color: #fff; font-family: var(--font-sub); font-size: .75rem; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 700; padding: 14px; border: none; border-radius: 8px; cursor: pointer; transition: all .3s; margin-top: 12px; width: 100%; }

/* ── Floating Buttons ── */
.float-btns   { position: fixed; bottom: 30px; right: 24px; display: flex; flex-direction: column; gap: 12px; z-index: 999; }
.float-btn    { width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; box-shadow: 0 4px 20px rgba(0,0,0,.25); text-decoration: none; transition: transform .3s; }
.float-btn:hover { transform: scale(1.12); }
.float-wa     { background: #25D366; color: #fff; }
.float-call   { background: var(--warm-beige); color: var(--premium-black); }

/* ── Back To Top ── */
#backTop      { position: fixed; bottom: 30px; left: 24px; width: 42px; height: 42px; background: var(--premium-black); color: var(--warm-beige); border: none; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 999; opacity: 0; transition: opacity .4s; font-size: .9rem; }
#backTop.visible { opacity: 1; }

/* About Page — team / stats */
.stats-bar { background: var(--premium-black); padding: 60px 0; }
.stat-box  { text-align: center; }
.stat-box .num  { font-family: var(--font-heading); font-size: 3rem; font-weight: 700; color: var(--warm-beige); line-height: 1; }
.stat-box .lbl  { font-family: var(--font-sub); font-size: .65rem; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,.5); margin-top: 6px; }

/* ── Responsive ── */
@media (max-width: 992px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .why-grid      { grid-template-columns: repeat(2,1fr); }
  .pkg-grid      { grid-template-columns: repeat(2,1fr); }
  .gallery-masonry { columns: 2; }
  .about-left    { padding-right: 0; margin-bottom: 40px; }
  .dest-grid     { grid-template-columns: repeat(2,1fr); }
  .dest-card.large { grid-row: span 1; }
  .contact-info  { padding-right: 0; margin-bottom: 40px; }
}
@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; }
  .why-grid      { grid-template-columns: repeat(2,1fr); }
  .pkg-grid      { grid-template-columns: 1fr; }
  .gallery-masonry { columns: 2; }
  .dest-grid     { grid-template-columns: 1fr 1fr; }
  .hero-stats    { gap: 20px; flex-wrap: wrap; bottom: 30px; }
  .booking-form  { padding: 24px 18px; }
  .contact-form-wrap { padding: 24px 18px; }
}
@media (max-width: 576px) {
  .gallery-masonry { columns: 1; }
  .dest-grid     { grid-template-columns: 1fr; }
  .about-images  { height: 300px; }
  .hero-title    { font-size: 1.8rem; }
  .hero-stats    { display: none; }
  .why-grid      { grid-template-columns: 1fr 1fr; gap: 16px; }
  .services-grid { grid-template-columns: 1fr; }
  .pkg-grid      { grid-template-columns: 1fr; }
  .hero-btns     { flex-direction: column; gap: 10px; }
  .btn-hero-primary, .btn-hero-outline { justify-content: center; }
}

.fas .fa-phone-alt{
  transform: rotate(90deg);
}