/* ============================================================
   SOMNATH PAYAL TRAVELS — Main Stylesheet
   https://somnathpayaltravels.com
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ---- CSS Variables ---- */
:root {
  --primary:       #1565C0;
  --primary-dark:  #0D47A1;
  --primary-light: #1E88E5;
  --accent:        #FFC107;
  --accent-dark:   #F57F17;
  --white:         #ffffff;
  --off-white:     #F0F7FF;
  --text-dark:     #1a1a2e;
  --text-gray:     #6c757d;
  --border:        #dce8fa;
  --shadow:        0 10px 40px rgba(21,101,192,.12);
  --shadow-hover:  0 20px 60px rgba(21,101,192,.22);
  --radius:        12px;
  --radius-lg:     20px;
  --tr:            all .3s ease;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; color: var(--text-dark); background: var(--white); overflow-x: hidden; }
img { max-width: 100%; }
a { text-decoration: none; }

/* ---- Typography ---- */
.section-label {
  display: inline-block;
  color: var(--primary);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: .5rem;
}
.section-title { font-size: 2.1rem; font-weight: 800; line-height: 1.25; }
.section-divider {
  width: 55px; height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px; margin: .9rem 0 2rem;
}
.section-divider.mx-auto { margin-left: auto; margin-right: auto; }

/* ---- Page Loader ---- */
.page-loader {
  position: fixed; inset: 0; background: white;
  display: flex; align-items: center; justify-content: center;
  z-index: 9999; transition: opacity .5s ease;
}
.page-loader.hidden { opacity: 0; pointer-events: none; }
.loader-inner {
  display: flex; flex-direction: column; align-items: center; gap: 15px;
}
.loader-logo { font-size: 1.8rem; font-weight: 800; color: var(--primary); }
.loader-spinner {
  width: 40px; height: 40px;
  border: 4px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---- Floating Buttons ---- */
.floating-whatsapp {
  position: fixed; bottom: 25px; right: 25px; z-index: 999;
  width: 60px; height: 60px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: var(--tr);
  animation: wa-pulse 2.5s infinite;
}
.floating-whatsapp:hover { color: white; transform: scale(1.12); }
@keyframes wa-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,.5); }
  70%  { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
.floating-call {
  position: fixed; bottom: 97px; right: 29px; z-index: 999;
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.2rem;
  box-shadow: 0 4px 20px rgba(21,101,192,.4);
  transition: var(--tr);
}
.floating-call:hover { color: white; transform: scale(1.12); }

/* ---- Scroll Top ---- */
#scrollTop {
  position: fixed; bottom: 165px; right: 28px; z-index: 999;
  width: 44px; height: 44px;
  background: var(--primary); color: white;
  border: none; border-radius: 50%; font-size: .95rem;
  cursor: pointer; display: none; align-items: center; justify-content: center;
  box-shadow: 0 4px 15px rgba(21,101,192,.3);
  transition: var(--tr);
}
#scrollTop.visible { display: flex; }
#scrollTop:hover { background: var(--primary-dark); transform: translateY(-3px); }

/* ---- Top Bar ---- */
.top-bar {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 7px 0; font-size: .8rem;
  color: rgba(255,255,255,.9);
}
.top-bar a { color: rgba(255,255,255,.9); transition: color .2s; }
.top-bar a:hover { color: var(--accent); }

/* ---- Navbar ---- */
#mainNav {
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.07);
  padding: 10px 0; transition: var(--tr); z-index: 1050;
}
#mainNav.scrolled { padding: 6px 0; box-shadow: 0 4px 30px rgba(0,0,0,.13); }
.navbar-brand { display: flex; align-items: center; gap: 10px; }
.brand-logo {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.25rem; flex-shrink: 0;
}
.brand-text .brand-name { font-size: 1.15rem; font-weight: 800; color: var(--primary); line-height: 1.1; display: block; }
.brand-text .brand-sub  { font-size: .62rem; color: var(--accent-dark); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.nav-link { font-weight: 500; color: var(--text-dark) !important; padding: 7px 13px !important; border-radius: 8px; transition: var(--tr); font-size: .87rem; }
.nav-link:hover, .nav-link.active { color: var(--primary) !important; background: rgba(21,101,192,.07); }
.dropdown-menu { border: 1px solid var(--border); border-radius: var(--radius); padding: 8px; box-shadow: var(--shadow); }
.dropdown-item { border-radius: 8px; font-size: .85rem; font-weight: 500; padding: 8px 14px; transition: var(--tr); }
.dropdown-item:hover { background: rgba(21,101,192,.08); color: var(--primary); }
.nav-cta {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white !important; border-radius: 50px !important;
  padding: 8px 20px !important; font-weight: 600;
  box-shadow: 0 3px 12px rgba(21,101,192,.3);
}
.nav-cta:hover { background: linear-gradient(135deg, var(--primary-dark), var(--primary)) !important; color: white !important; transform: translateY(-1px); }

/* ---- Buttons ---- */
.btn-primary-custom {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white; border: none; border-radius: 50px;
  padding: 12px 30px; font-weight: 600; font-size: .9rem;
  transition: var(--tr); box-shadow: 0 4px 15px rgba(21,101,192,.3);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary-custom:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(21,101,192,.4); color: white; background: linear-gradient(135deg, var(--primary-dark), var(--primary)); }
.btn-accent-custom {
  background: linear-gradient(135deg, var(--accent), #FFB300);
  color: var(--text-dark); border: none; border-radius: 50px;
  padding: 12px 30px; font-weight: 700; font-size: .9rem;
  transition: var(--tr); box-shadow: 0 4px 15px rgba(255,193,7,.3);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-accent-custom:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(255,193,7,.45); color: var(--text-dark); }
.btn-outline-custom {
  border: 2px solid var(--primary); color: var(--primary);
  border-radius: 50px; padding: 10px 26px; font-weight: 600;
  transition: var(--tr); display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline-custom:hover { background: var(--primary); color: white; transform: translateY(-2px); }
.btn-wa {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white; border: none; border-radius: 50px;
  padding: 12px 28px; font-weight: 600;
  transition: var(--tr); display: inline-flex; align-items: center; gap: 8px;
}
.btn-wa:hover { color: white; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(37,211,102,.4); }

/* ---- Section Spacing ---- */
section { padding: 80px 0; }

/* ===================== HERO ===================== */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #0a2f6e 0%, var(--primary-dark) 30%, var(--primary) 60%, var(--primary-light) 100%);
  display: flex; align-items: center;
  position: relative; overflow: hidden; padding-top: 90px;
}
#hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255,255,255,.05) 0%, transparent 60%),
    radial-gradient(circle at 80% 20%, rgba(255,193,7,.08) 0%, transparent 50%);
}
#hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to bottom right, transparent 49.5%, white 50%);
}
.hero-content { position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,193,7,.18); border: 1px solid rgba(255,193,7,.45);
  color: var(--accent); font-size: .78rem; font-weight: 700;
  padding: 6px 16px; border-radius: 50px; margin-bottom: 1.5rem;
  text-transform: uppercase; letter-spacing: 1.5px;
}
.hero-title { font-size: clamp(1.9rem, 4.5vw, 3.4rem); font-weight: 800; color: white; line-height: 1.2; margin-bottom: 1.2rem; }
.hero-title span { color: var(--accent); }
.hero-desc { font-size: 1rem; color: rgba(255,255,255,.85); margin-bottom: 2rem; line-height: 1.9; }
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-stats { display: flex; gap: 2rem; flex-wrap: wrap; }
.stat-num { font-size: 1.9rem; font-weight: 800; color: var(--accent); display: block; line-height: 1; }
.stat-label { font-size: .75rem; color: rgba(255,255,255,.75); font-weight: 500; }

/* Hero Booking Card */
.hero-booking-card {
  background: white; border-radius: var(--radius-lg);
  padding: 32px 28px; box-shadow: var(--shadow-hover);
  position: relative; z-index: 2;
}
.hero-booking-card h4 { color: var(--primary); font-weight: 800; font-size: 1.15rem; margin-bottom: 1.4rem; }
.hero-booking-card .form-control,
.hero-booking-card .form-select {
  border: 1.5px solid var(--border); border-radius: 10px;
  padding: 11px 14px; font-size: .87rem; transition: var(--tr);
}
.hero-booking-card .form-control:focus,
.hero-booking-card .form-select:focus {
  border-color: var(--primary); box-shadow: 0 0 0 3px rgba(21,101,192,.1);
}
.hero-booking-card label { font-size: .8rem; font-weight: 600; color: var(--text-dark); margin-bottom: 4px; }

/* ---- Trust Strip ---- */
.trust-strip { background: white; padding: 20px 0; box-shadow: 0 4px 20px rgba(0,0,0,.07); }
.trust-item { display: flex; align-items: center; gap: 10px; padding: 8px 0; }
.trust-item i { font-size: 1.4rem; color: var(--primary); }
.trust-item span { font-size: .82rem; font-weight: 600; color: var(--text-dark); }
.trust-divider { width: 1px; height: 30px; background: var(--border); }

/* ---- About ---- */
.about-img-wrap { position: relative; }
.about-img-main {
  border-radius: var(--radius-lg); width: 100%; height: 420px;
  object-fit: cover; box-shadow: var(--shadow);
}
.about-years-badge {
  position: absolute; bottom: -18px; right: -18px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white; padding: 18px 22px; border-radius: var(--radius);
  text-align: center; box-shadow: var(--shadow);
}
.about-years-badge .num { font-size: 2.2rem; font-weight: 800; color: var(--accent); line-height: 1; display: block; }
.about-years-badge .lbl { font-size: .72rem; font-weight: 600; }
.about-feat { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 18px; }
.about-feat-icon {
  width: 48px; height: 48px; min-width: 48px;
  background: rgba(21,101,192,.08); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); font-size: 1.15rem;
}
.about-feat-text h6 { font-weight: 700; margin-bottom: 2px; font-size: .9rem; }
.about-feat-text p { font-size: .82rem; color: var(--text-gray); margin: 0; }

/* ---- Stats Counter ---- */
.stats-section {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 60px 0;
}
.stat-card { text-align: center; color: white; padding: 20px; }
.stat-card .num { font-size: 2.6rem; font-weight: 800; color: var(--accent); line-height: 1; }
.stat-card .lbl { font-size: .88rem; color: rgba(255,255,255,.82); font-weight: 500; margin-top: 5px; }

/* ---- Services ---- */
#services { background: var(--off-white); }
.service-card {
  background: white; border-radius: var(--radius);
  padding: 28px 18px; text-align: center;
  border: 1px solid var(--border);
  box-shadow: 0 4px 16px rgba(0,0,0,.05);
  transition: var(--tr); height: 100%;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); border-color: var(--primary); }
.svc-icon {
  width: 68px; height: 68px;
  background: linear-gradient(135deg, rgba(21,101,192,.08), rgba(30,136,229,.12));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem; font-size: 1.75rem; color: var(--primary);
  transition: var(--tr);
}
.service-card:hover .svc-icon { background: linear-gradient(135deg, var(--primary), var(--primary-light)); color: white; transform: scale(1.1); }
.service-card h5 { font-size: .95rem; font-weight: 700; margin-bottom: .4rem; }
.service-card p  { font-size: .8rem; color: var(--text-gray); margin: 0; line-height: 1.6; }
.svc-tag {
  display: inline-block;
  background: rgba(21,101,192,.07); color: var(--primary);
  font-size: .7rem; font-weight: 600; padding: 3px 10px;
  border-radius: 50px; margin-top: 10px;
}

/* ---- Packages ---- */
.pkg-card {
  background: white; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,.07);
  border: 1px solid var(--border); transition: var(--tr); height: 100%;
}
.pkg-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.pkg-img-wrap { overflow: hidden; position: relative; }
.pkg-img { width: 100%; height: 215px; object-fit: cover; transition: transform .5s ease; }
.pkg-card:hover .pkg-img { transform: scale(1.06); }
.pkg-label {
  position: absolute; top: 14px; left: 14px;
  background: var(--primary); color: white;
  font-size: .72rem; font-weight: 700; padding: 4px 12px; border-radius: 50px;
}
.pkg-price-tag {
  position: absolute; top: 14px; right: 14px;
  background: var(--accent); color: var(--text-dark);
  font-size: .72rem; font-weight: 800; padding: 4px 12px; border-radius: 50px;
}
.pkg-body { padding: 20px; }
.pkg-body h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: .7rem; }
.pkg-meta { display: flex; gap: 14px; margin-bottom: .9rem; flex-wrap: wrap; }
.pkg-meta span { font-size: .78rem; color: var(--text-gray); display: flex; align-items: center; gap: 4px; }
.pkg-meta span i { color: var(--primary); }
.pkg-price { font-size: 1.1rem; font-weight: 700; color: var(--primary); margin-bottom: .9rem; }
.pkg-price small { font-size: .73rem; color: var(--text-gray); font-weight: 400; }
.pkg-options { margin-bottom: 1rem; }
.pkg-option-item {
  display: flex; align-items: center; gap: 6px;
  font-size: .8rem; color: var(--text-gray); margin-bottom: 4px;
}
.pkg-option-item i { color: var(--primary); font-size: .7rem; }

/* ---- Bus Routes ---- */
#bus-service { background: var(--off-white); }
.route-card {
  background: white; border-radius: var(--radius);
  padding: 18px; border: 1px solid var(--border);
  transition: var(--tr); display: flex; align-items: center; gap: 14px;
}
.route-card:hover { border-color: var(--primary); box-shadow: var(--shadow); transform: translateX(5px); }
.route-icon {
  width: 48px; height: 48px; min-width: 48px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.1rem;
}
.route-info h6 { font-weight: 700; margin-bottom: 2px; font-size: .9rem; }
.route-info small { color: var(--text-gray); font-size: .75rem; }
.route-badge {
  margin-left: auto; min-width: fit-content;
  background: rgba(21,101,192,.08); color: var(--primary);
  font-size: .7rem; font-weight: 700; padding: 4px 10px; border-radius: 50px;
}

/* ---- Vehicles ---- */
.vehicle-card {
  background: white; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,.07);
  border: 1px solid var(--border); transition: var(--tr);
}
.vehicle-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.vehicle-img-wrap { background: var(--off-white); padding: 28px 20px; text-align: center; overflow: hidden; }
.vehicle-img { height: 150px; width: 100%; object-fit: contain; transition: transform .4s ease; }
.vehicle-card:hover .vehicle-img { transform: scale(1.05); }
.vehicle-body { padding: 20px; }
.vehicle-body h4 { font-weight: 700; font-size: 1rem; margin-bottom: .8rem; }
.v-spec { display: flex; align-items: center; gap: 8px; font-size: .82rem; color: var(--text-gray); margin-bottom: 5px; }
.v-spec i { color: var(--primary); width: 14px; }
.v-badge {
  display: inline-block;
  background: rgba(21,101,192,.07); color: var(--primary);
  font-size: .7rem; font-weight: 700; padding: 3px 10px;
  border-radius: 50px; margin-right: 4px; margin-bottom: 4px;
}

/* ---- Airport Section ---- */
.airport-card {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: var(--radius-lg); padding: 35px 30px; color: white; height: 100%;
}
.airport-card h4 { font-weight: 800; margin-bottom: .7rem; }
.airport-card p { font-size: .88rem; color: rgba(255,255,255,.85); line-height: 1.8; }
.airport-feat { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.airport-feat i { color: var(--accent); font-size: .9rem; }
.airport-feat span { font-size: .85rem; color: rgba(255,255,255,.9); }

/* ---- Testimonials ---- */
#testimonials { background: linear-gradient(135deg, #0a2f6e, var(--primary-dark), var(--primary)); }
.testi-card {
  background: rgba(255,255,255,.1); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.18); border-radius: var(--radius-lg);
  padding: 28px; color: white; transition: var(--tr); height: 100%;
}
.testi-card:hover { background: rgba(255,255,255,.16); transform: translateY(-5px); }
.testi-stars { color: var(--accent); font-size: .9rem; margin-bottom: .9rem; }
.testi-text { font-size: .88rem; line-height: 1.85; color: rgba(255,255,255,.9); margin-bottom: 1.3rem; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #FF8F00);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1rem; color: var(--text-dark); flex-shrink: 0;
}
.testi-name { font-weight: 700; font-size: .9rem; }
.testi-loc  { font-size: .75rem; color: rgba(255,255,255,.65); }

/* ---- Gallery ---- */
.gallery-item { overflow: hidden; border-radius: var(--radius); cursor: pointer; position: relative; }
.gallery-item img { width: 100%; height: 220px; object-fit: cover; transition: transform .4s ease; display: block; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(21,101,192,.72);
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.8rem;
  opacity: 0; transition: opacity .3s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ---- Offer Section ---- */
.offer-wrap {
  background: linear-gradient(135deg, var(--accent), #FFB300);
  border-radius: var(--radius-lg); padding: 50px 40px; text-align: center;
  position: relative; overflow: hidden;
}
.offer-wrap::before {
  content: ''; position: absolute; top: -30px; right: -30px;
  width: 200px; height: 200px;
  background: rgba(255,255,255,.1); border-radius: 50%;
}
.offer-percent { font-size: 4rem; font-weight: 800; color: var(--primary-dark); line-height: 1; }

/* ---- FAQ ---- */
.faq-item { border: 1.5px solid var(--border); border-radius: var(--radius); margin-bottom: 10px; overflow: hidden; }
.faq-item:hover { border-color: rgba(21,101,192,.3); }
.faq-q {
  padding: 17px 20px; font-weight: 600; font-size: .9rem; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  background: white; color: var(--text-dark); transition: var(--tr); user-select: none;
}
.faq-q:hover, .faq-q.open { color: var(--primary); background: rgba(21,101,192,.03); }
.faq-q .faq-icon { transition: transform .3s ease; font-size: .8rem; }
.faq-q.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  font-size: .85rem; color: var(--text-gray); line-height: 1.75;
  max-height: 0; overflow: hidden; padding: 0 20px;
  transition: max-height .35s ease, padding .35s ease;
}
.faq-a.open { max-height: 300px; padding: 0 20px 16px; }

/* ---- Contact ---- */
.contact-info-card {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: var(--radius-lg); padding: 38px 30px; color: white; height: 100%;
}
.contact-info-card h4 { font-weight: 800; margin-bottom: 1.5rem; font-size: 1.25rem; }
.ci-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 22px; }
.ci-icon {
  width: 44px; height: 44px; min-width: 44px;
  background: rgba(255,255,255,.15); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
}
.ci-text h6 { font-weight: 700; font-size: .85rem; margin-bottom: 2px; }
.ci-text p, .ci-text a { font-size: .82rem; color: rgba(255,255,255,.82); margin: 0; }
.ci-text a:hover { color: var(--accent); }
.contact-form-card {
  background: white; border-radius: var(--radius-lg);
  padding: 38px 32px; box-shadow: var(--shadow); border: 1px solid var(--border);
}
.contact-form-card .form-control,
.contact-form-card .form-select,
.contact-form-card textarea {
  border: 1.5px solid var(--border); border-radius: 10px;
  padding: 11px 14px; font-size: .87rem; transition: var(--tr);
}
.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus,
.contact-form-card textarea:focus {
  border-color: var(--primary); box-shadow: 0 0 0 3px rgba(21,101,192,.1);
}
.contact-form-card label { font-size: .8rem; font-weight: 600; margin-bottom: 4px; }

/* ---- Map ---- */
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; height: 320px; box-shadow: var(--shadow); }
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* ---- Footer ---- */
#footer { background: #081225; color: rgba(255,255,255,.8); padding: 65px 0 0; }
.footer-logo-text .fn { font-size: 1.35rem; font-weight: 800; color: white; line-height: 1.1; }
.footer-logo-text .fs { font-size: .65rem; color: var(--accent); font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; }
.footer-desc { font-size: .84rem; color: rgba(255,255,255,.62); line-height: 1.8; margin-top: .9rem; }
.footer-h { font-size: .92rem; font-weight: 700; color: white; margin-bottom: 1.1rem; padding-bottom: 7px; border-bottom: 2px solid var(--primary); display: inline-block; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 7px; }
.footer-links a { font-size: .83rem; color: rgba(255,255,255,.65); display: flex; align-items: center; gap: 6px; transition: color .2s; }
.footer-links a::before { content: '›'; color: var(--primary); font-weight: 700; }
.footer-links a:hover { color: var(--accent); }
.footer-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  background: rgba(255,255,255,.07); border-radius: 50%;
  color: white; font-size: .9rem; transition: var(--tr);
  margin-right: 6px; margin-bottom: 6px;
}
.footer-social a:hover { background: var(--primary); transform: translateY(-3px); }
.footer-bottom {
  background: rgba(0,0,0,.35); padding: 14px 0; margin-top: 45px;
  font-size: .78rem; color: rgba(255,255,255,.5);
}

/* ---- Page Hero (inner pages) ---- */
.page-hero {
  background: linear-gradient(135deg, #0a2f6e, var(--primary-dark), var(--primary));
  padding: 120px 0 55px; color: white;
}
.page-hero h1 { font-size: clamp(1.7rem, 4vw, 2.6rem); font-weight: 800; color: white; }
.breadcrumb-item, .breadcrumb-item.active { color: rgba(255,255,255,.75); font-size: .85rem; }
.breadcrumb-item a { color: var(--accent); }
.breadcrumb-item+.breadcrumb-item::before { color: rgba(255,255,255,.45); }

/* ---- Fade Up Animation ---- */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.visible { opacity: 1; transform: none; }

/* ---- Utilities ---- */
.bg-off-white { background: var(--off-white); }
.text-primary-c { color: var(--primary) !important; }
.text-accent-c  { color: var(--accent)  !important; }
.fw-800 { font-weight: 800 !important; }

/* ---- Responsive ---- */
@media (max-width: 991px) {
  .hero-booking-card { margin-top: 35px; }
  .about-years-badge { right: 0; bottom: -12px; }
}
@media (max-width: 768px) {
  section { padding: 60px 0; }
  .section-title { font-size: 1.65rem; }
  #hero { padding-top: 80px; }
  .hero-stats { gap: 1.3rem; }
  .stat-num { font-size: 1.5rem; }
  .about-img-main { height: 280px; }
  .contact-form-card { padding: 25px 18px; }
  .contact-info-card { padding: 28px 20px; }
  .offer-wrap { padding: 35px 22px; }
}
@media (max-width: 576px) {
  .top-bar .d-flex { flex-wrap: wrap; justify-content: center !important; gap: 6px; }
  .floating-whatsapp { bottom: 18px; right: 14px; }
  .floating-call { bottom: 87px; right: 18px; }
  #scrollTop { bottom: 158px; right: 18px; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn-primary-custom, .hero-buttons .btn-accent-custom { justify-content: center; }
}
