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

:root {
  --primary: #0B3C5D;
  --primary-light: #1a5276;
  --primary-dark: #071f2e;
  --secondary: #F57C00;
  --secondary-light: #ff9a30;
  --secondary-dark: #e65100;
  --white: #ffffff;
  --off-white: #f8f9fb;
  --light-grey: #eef1f5;
  --text-dark: #1a1a2e;
  --text-muted: #6c7a89;
  --border: #dde3ea;
  --shadow-sm: 0 2px 8px rgba(11, 60, 93, 0.08);
  --shadow-md: 0 8px 24px rgba(11, 60, 93, 0.12);
  --shadow-lg: 0 16px 48px rgba(11, 60, 93, 0.18);
  --shadow-orange: 0 8px 24px rgba(245, 124, 0, 0.3);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}



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

html { 
  scroll-behavior: smooth; 
  font-size: 16px; 
  overflow-x: hidden;
  scroll-padding-top: 110px; /* offset anchors for fixed header */
}

@media (max-width: 767px) {
  html {
    scroll-padding-top: 68px;
  }
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  max-width: 100vw;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3 { font-family: var(--font-display); line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 700; }
p { font-size: 1rem; color: var(--text-muted); }

/* ── Fixed Site Header (trust strip + navbar) ──────────────────
   NOTE: position:sticky is broken when any ancestor has
   overflow-x:hidden (browser limitation). position:fixed is the
   only guaranteed fix. We compensate with body padding-top.
   ────────────────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1050;        /* above Bootstrap modals backdrop (1040) */
  will-change: transform; /* GPU layer for smooth rendering */
}

/* Offset body so content doesn't hide under fixed header.
   Trust strip (~38px on desktop) + navbar (~72px) = ~110px
   On mobile trust strip is hidden so only navbar (~64px).       */
body {
  padding-top: 110px;   /* desktop: trust strip + navbar */
}

@media (max-width: 767px) {
  body {
    padding-top: 68px;  /* mobile: navbar only (trust strip hidden) */
  }
}

/* ── Navbar ── */
.navbar {
  background: var(--primary);
  padding: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
}

.navbar-brand img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }

.brand-text { display: flex; flex-direction: column; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.brand-tag {
  font-size: 0.7rem;
  color: var(--secondary-light);
  letter-spacing: 0.5px;
}

.navbar-nav .nav-link {
  color: rgba(255,255,255,0.85) !important;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 8px 14px !important;
  border-radius: 6px;
  transition: var(--transition);
  letter-spacing: 0.3px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--white) !important;
  background: rgba(245, 124, 0, 0.15);
}

.navbar-cta {
  background: var(--secondary) !important;
  color: var(--white) !important;
  border-radius: 6px;
  padding: 8px 18px !important;
  font-weight: 600;
}
.navbar-cta:hover {
  background: var(--secondary-dark) !important;
  transform: translateY(-1px);
}

.navbar-toggler { border: 1px solid rgba(255,255,255,0.3); }
.navbar-toggler-icon { filter: invert(1); }

/* ── Hero Section ── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: var(--primary-dark);
  overflow: hidden;
}

/* Background image slider */
.hero-bg-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  animation: heroZoom 8s ease-in-out infinite alternate;
}

.hero-bg-slide.active { opacity: 1; }

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1); }
}

/* Dark overlay */
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(135deg, rgba(1, 3, 5, 0.92) 0%, rgba(11,60,93,0.85) 50%, rgba(26,82,118,1) 100%);
    /* linear-gradient(135deg, rgba(7,31,46,0.82) 0%, rgba(11,60,93,0.70) 50%, rgba(26,82,118,0.60) 100%), */
    /* radial-gradient(ellipse at 70% 50%, rgba(245,124,0,0.08) 0%, transparent 60%); */
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 2;
  pointer-events: none;
}

/* Slider dots */
.hero-slider-dots {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 8px;
}

.hero-slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition);
}

.hero-slider-dot.active {
  background: var(--secondary);
  width: 24px;
  border-radius: 4px;
}

.hero-content { position: relative; z-index: 3; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,124,0,0.15);
  border: 1px solid rgba(245,124,0,0.3);
  color: var(--secondary-light);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 4rem);
  margin-bottom: 0.8rem;
  line-height: 1.15;
}

.hero h1 span { color: var(--secondary); }

.hero .tagline {
  color: rgba(255,255,255,0.8);
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: 2rem;
  font-weight: 300;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
}

.hero-stat .num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1;
}

.hero-stat .label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.hero-img-wrap {
  position: relative;
  z-index: 3;
}

.hero-card {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 2rem;
  color: var(--white);
}

.hero-card-icon {
  width: 56px;
  height: 56px;
  background: var(--secondary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ── Buttons ── */
.btn-primary-custom {
  background: var(--secondary);
  color: var(--white);
  border: none;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-orange);
}

.btn-primary-custom:hover {
  background: var(--secondary-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(245,124,0,0.4);
  color: var(--white);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline-white:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
  color: var(--white);
}

.btn-dark-custom {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-dark-custom:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  color: var(--white);
}

/* ── Section Utilities ── */
.section { padding: 80px 0; }
.section-sm { padding: 60px 0; }
.section-dark { background: var(--primary); }
.section-light { background: var(--off-white); }
.section-orange { background: var(--secondary); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--secondary);
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.8rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--secondary);
  border-radius: 2px;
}

.section-title { color: var(--primary); margin-bottom: 1rem; }
.section-title-white { color: var(--white); }
.section-subtitle { color: var(--text-muted); max-width: 600px; }

/* ── Services Cards ── */
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}

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

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

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

.service-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 1.6rem;
  color: var(--white);
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  transform: rotate(5deg) scale(1.1);
}

.service-card h3 {
  color: var(--primary);
  margin-bottom: 0.6rem;
  font-size: 1.15rem;
}

/* ── Package Cards ── */
.package-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.package-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.package-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

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

.package-card:hover .package-card-img img { transform: scale(1.08); }

.package-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--secondary);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.package-discount {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #e53935;
  color: var(--white);
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
}

.package-card-body {
  padding: 1.4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.package-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.8rem;
  flex-wrap: wrap;
}

.package-meta span {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

.package-meta span i { color: var(--secondary); font-size: 0.75rem; }

.package-card h3 {
  color: var(--primary);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.package-card p {
  font-size: 0.88rem;
  margin-bottom: 1rem;
  flex: 1;
}

.package-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 1rem;
}

.package-price .price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.package-price .price-original {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.package-price .per-person {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ── Why Choose Us ── */
.why-card {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  padding: 1.5rem;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}

.why-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(245,124,0,0.3);
}

.why-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: rgba(245,124,0,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--secondary);
}

.why-card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.why-card p { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin: 0; }

/* ── Testimonials ── */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 6rem;
  color: var(--secondary);
  opacity: 0.12;
  position: absolute;
  top: -10px;
  left: 20px;
  line-height: 1;
}

.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

.stars { color: #fbbf24; font-size: 0.9rem; margin-bottom: 1rem; }

.testimonial-card p {
  font-size: 0.92rem;
  font-style: italic;
  margin-bottom: 1.2rem;
  color: var(--text-dark);
}

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

.reviewer-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--secondary);
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
}

.reviewer-name { font-weight: 600; color: var(--primary); font-size: 0.9rem; }
.reviewer-loc { font-size: 0.78rem; color: var(--text-muted); }

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--secondary) 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

.cta-banner h2 { color: var(--white); margin-bottom: 0.8rem; }
.cta-banner p { color: rgba(255,255,255,0.85); margin-bottom: 0; }

/* ── Contact Form ── */
.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.2rem;
  border-radius: var(--radius);
  background: var(--off-white);
  margin-bottom: 1rem;
  transition: var(--transition);
}

.contact-info-item:hover {
  background: var(--light-grey);
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
}

.contact-info-item h5 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.contact-info-item a {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.95rem;
}

/* ── Gallery Grid ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 12px;
}

/* Masonry-style: every 5th item spans 2 cols, every 7th spans 2 rows */
.gallery-item:nth-child(5n+1) { grid-column: span 2; }
.gallery-item:nth-child(7n+2) { grid-row: span 2; }

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--light-grey);
  /* Skeleton loading shimmer */
}

/* Shimmer while image loads */
.gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--light-grey) 25%, #e8edf2 50%, var(--light-grey) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  z-index: 0;
  transition: opacity 0.3s ease;
}

.gallery-item.loaded::before { opacity: 0; pointer-events: none; }

@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position:  200% 0; }
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: block;
  position: relative;
  z-index: 1;
  /* Blur-up LQIP effect – apply via JS once loaded */
  filter: blur(0);
}

/* Gradient overlay – always slightly visible for text readability */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 40%,
    rgba(7, 31, 46, 0.75) 100%
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.35s ease;
  color: var(--white);
  font-size: 1.5rem;
  z-index: 2;
}

.gallery-overlay .zoom-icon {
  width: 52px;
  height: 52px;
  background: rgba(245,124,0,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transform: scale(0.7);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.gallery-item:hover img { transform: scale(1.1); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover .gallery-overlay .zoom-icon { transform: scale(1); }

/* Responsive gallery */
@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 180px;
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
    gap: 8px;
  }
  /* Reset spanning on small screens for consistent 2-col */
  .gallery-item:nth-child(5n+1) { grid-column: span 1; }
  .gallery-item:nth-child(7n+2) { grid-row: span 1; }
  /* Occasional wide item for visual interest */
  .gallery-item:nth-child(3n+1) { grid-column: span 2; }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 140px;
    gap: 6px;
  }
}

/* ── Footer ── */
footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.75);
  padding: 60px 0 0;
}

.footer-brand { margin-bottom: 1.5rem; }
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}
.footer-brand-tag { font-size: 0.82rem; color: var(--secondary-light); }

footer h5 {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.2rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid rgba(245,124,0,0.3);
  display: inline-block;
}

footer ul li { margin-bottom: 0.5rem; }
footer ul li a {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
footer ul li a:hover { color: var(--secondary-light); padding-left: 4px; }
footer ul li a i { font-size: 0.6rem; color: var(--secondary); }

.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 0.8rem;
  font-size: 0.88rem;
}

.footer-contact-item i { color: var(--secondary); margin-top: 3px; min-width: 14px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1.5rem 0;
  margin-top: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}

.social-links { display: flex; gap: 10px; }
.social-link {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
  font-size: 0.85rem;
}
.social-link:hover {
  background: var(--secondary);
  color: var(--white);
  transform: translateY(-2px);
}

/* ── Floating Buttons ── */
.floating-buttons {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  transition: var(--transition);
  text-decoration: none;
  border: none;
}

.float-btn:hover { transform: scale(1.12); }

.float-whatsapp { background: #25D366; color: var(--white); }
.float-call { background: var(--secondary); color: var(--white); }

.float-btn .tooltip-text {
  position: absolute;
  right: 68px;
  background: var(--text-dark);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.float-btn:hover .tooltip-text { opacity: 1; }

/* ── Quick Enquiry Modal ── */
.modal-header { background: var(--primary); border-radius: var(--radius) var(--radius) 0 0; }
.modal-title { color: var(--white); font-family: var(--font-display); }
.modal-header .btn-close { filter: invert(1); }

/* ── Form Styles ── */
.form-control, .form-select {
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 11px 14px;
  font-size: 0.92rem;
  transition: var(--transition);
  background: var(--white);
}

.form-control:focus, .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(11, 60, 93, 0.1);
  outline: none;
}

.form-label { font-size: 0.88rem; font-weight: 500; color: var(--text-dark); margin-bottom: 6px; }

/* ── Alert / Messages ── */
.alert-success {
  background: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  font-size: 0.92rem;
}

.alert-danger {
  background: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24;
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  font-size: 0.92rem;
}

/* ── Breadcrumb ── */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-hero h1 { color: var(--white); position: relative; }
.page-hero .breadcrumb { background: none; padding: 0; position: relative; }
.page-hero .breadcrumb-item { color: rgba(255,255,255,0.6); font-size: 0.88rem; }
.page-hero .breadcrumb-item a { color: var(--secondary-light); }
.page-hero .breadcrumb-item.active { color: rgba(255,255,255,0.85); }
.page-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }

/* ── Trust Badge Strip ── */
.trust-strip {
  background: var(--off-white);
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-dark);
  white-space: nowrap;
}

.trust-item i { color: var(--secondary); }

/* ── Animations ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in-up { animation: fadeInUp 0.6s ease forwards; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }

/* ══════════════════════════════════════════════════
   RESPONSIVE – Tablet (≤992px)
══════════════════════════════════════════════════ */
@media (max-width: 992px) {
  .hero { min-height: auto; padding: 90px 0 70px; }
  .hero-stats { gap: 1.5rem; }
  .hero-img-wrap { margin-top: 2.5rem; }
}

/* ══════════════════════════════════════════════════
   RESPONSIVE – Mobile (≤768px)
══════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .section { padding: 52px 0; }

  /* ── Hero mobile – full viewport, image fully visible ── */
  .hero {
    min-height: 100svh;
    min-height: 100vh; /* fallback */
    padding: 0;
    align-items: center;
    justify-content: center;
  }

  /* Ensure bg images cover entire viewport on mobile */
  .hero-bg-slide {
    background-position: center center;
    background-size: cover;
  }

  /* Balanced overlay: top lighter so sky/landscape shows, bottom darker for text readability */
  .hero-bg-overlay {
    background:
      linear-gradient(
        to bottom,
        rgba(7,31,46,0.20) 0%,
        rgba(7,31,46,0.45) 35%,
        rgba(7,31,46,0.80) 65%,
        rgba(7,31,46,0.96) 100%
      );
  }

  /* Hero content centred vertically */
  .hero .container {
    padding-top: 90px;
    padding-bottom: 90px;
    display: flex;
    align-items: center;
  }

  .hero .row { flex-direction: column; gap: 0; width: 100%; }

  .hero-content {
    text-align: center;
    order: 2;
    width: 100%;
  }

  /* Badge */
  .hero-badge {
    justify-content: center;
    font-size: 0.72rem;
    padding: 5px 14px;
    margin-bottom: 1rem;
  }

  /* Headline */
  .hero h1 {
    font-size: clamp(1.9rem, 8vw, 2.8rem);
    margin-bottom: 0.7rem;
    line-height: 1.2;
  }

  .hero .tagline {
    font-size: 0.92rem;
    margin-bottom: 1.5rem;
    color: rgba(255,255,255,0.80);
  }

  /* Stats row – 4 in a line with dividers */
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-bottom: 1.8rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    overflow: hidden;
    backdrop-filter: blur(8px);
  }

  .hero-stat {
    padding: 12px 6px;
    border-right: 1px solid rgba(255,255,255,0.1);
    text-align: center;
  }

  .hero-stat:last-child { border-right: none; }

  .hero-stat .num {
    font-size: 1.3rem;
    display: block;
  }

  .hero-stat .label {
    font-size: 0.62rem;
    letter-spacing: 0;
    line-height: 1.3;
    display: block;
  }

  /* CTA buttons – full width stack */
  .hero-actions {
    flex-direction: column;
    gap: 0.75rem;
  }

  .hero-actions .btn-primary-custom,
  .hero-actions .btn-outline-white {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 14px 20px;
    font-size: 1rem;
  }

  /* Hide hero card on mobile – info is redundant */
  .hero-img-wrap { display: none; }

  /* Dots closer to bottom */
  .hero-slider-dots {
    bottom: 28px;
  }

  .hero-scroll { display: none; }

  /* ── Floating buttons ── */
  .floating-buttons { bottom: 16px; right: 16px; }

  /* ── Footer ── */
  .footer-bottom { flex-direction: column; text-align: center; }
  .trust-strip .d-flex { overflow-x: auto; padding-bottom: 4px; gap: 1.5rem !important; }

  /* ── Why cards ── */
  .why-card { padding: 1.2rem; }

  /* ── Testimonials ── */
  .testimonial-card { padding: 1.5rem; }

  /* ── CTA banner ── */
  .cta-banner { padding: 48px 0; text-align: center; }
  .cta-banner .col-lg-4 { justify-content: center !important; }
}

/* ══════════════════════════════════════════════════
   RESPONSIVE – Small phones (≤576px)
══════════════════════════════════════════════════ */
@media (max-width: 576px) {
  .hero h1 { font-size: clamp(1.7rem, 7.5vw, 2.2rem); }

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

  .hero-stat:nth-child(2) { border-right: none; }
  .hero-stat:nth-child(1),
  .hero-stat:nth-child(2) {
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .hero-stat .num { font-size: 1.5rem; }
  .hero-stat .label { font-size: 0.68rem; }

  .package-card-img { height: 180px; }
  .contact-card { padding: 1.5rem; }

  /* Service cards full width */
  .service-card { padding: 1.5rem; }
}

/* ═══════════════════════════════════════════════════════════
   ABOUT PAGE – Enhanced Styles
   Mobile-first, responsive, attractive leadership cards
════════════════════════════════════════════════════════════ */

/* ── About Hero ── */
.about-hero {
  padding: 100px 0 70px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
}

.about-hero-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.deco-icon {
  position: absolute;
  color: rgba(255,255,255,0.04);
  font-size: clamp(3rem, 8vw, 7rem);
}
.deco-1 { top: 10%; left: 5%;  animation: float-deco 8s ease-in-out infinite; }
.deco-2 { top: 20%; right: 8%; animation: float-deco 10s ease-in-out infinite 1s; }
.deco-3 { bottom: 15%; left: 12%; animation: float-deco 9s ease-in-out infinite 2s; }
.deco-4 { bottom: 20%; right: 5%; animation: float-deco 11s ease-in-out infinite 0.5s; }

@keyframes float-deco {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-18px) rotate(8deg); }
}

.about-hero-icon {
  color: var(--secondary);
  margin-right: 0.6rem;
}

.about-hero-sub {
  color: rgba(255,255,255,0.75);
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
}

/* Trust strip inside hero */
.about-hero-trust {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem 1.2rem;
  margin-top: 1.4rem;
}

.aht-item {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,0.85);
  font-size: 0.84rem;
  font-weight: 500;
}

.aht-item i {
  color: var(--secondary);
  font-size: 0.9rem;
}

.aht-divider {
  width: 1px;
  height: 18px;
  background: rgba(255,255,255,0.2);
}

/* ── Stats Grid ── */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stat-tile {
  border-radius: var(--radius-lg);
  padding: clamp(1.2rem, 3vw, 2rem);
  text-align: center;
  transition: var(--transition);
}

.stat-tile:hover { transform: translateY(-4px); }

.stat-tile--primary {
  background: var(--primary);
}

.stat-tile--orange {
  background: var(--secondary);
}

.stat-tile--light {
  background: var(--white);
  border: 1.5px solid var(--border);
}

.stat-tile-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-tile--primary .stat-tile-num  { color: var(--secondary); }
.stat-tile--orange  .stat-tile-num  { color: var(--white); }
.stat-tile--light   .stat-tile-num  { color: var(--primary); }

.stat-tile-label {
  font-size: 0.85rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.stat-tile--primary .stat-tile-label,
.stat-tile--orange  .stat-tile-label { color: rgba(255,255,255,0.82); }
.stat-tile--light   .stat-tile-label { color: var(--text-muted); }

/* ── About CTA row ── */
.about-cta-row {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

/* ── Leadership Section ── */
.leadership-section {
  background: var(--off-white);
}

/* Leader card = full-width two-col row */
.leader-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  margin-bottom: 1rem;
}

.leader-card--reverse {
  grid-template-columns: 1fr 280px;
}

.leader-card--reverse .leader-photo-col {
  order: 2;
}

.leader-card--reverse .leader-message-col {
  order: 1;
}

/* Photo column */
.leader-photo-col {
  display: flex;
  justify-content: center;
}

.leader-photo-wrap {
  position: relative;
  display: inline-block;
  isolation: isolate;
}

/* Spinning decorative ring */
.leader-ring {
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 3px dashed rgba(245, 124, 0, 0.35);
}

.leader-ring--spin     { animation: spin-slow     22s linear infinite; }
.leader-ring--spin-rev { border-color: rgba(11, 60, 93, 0.3); animation: spin-slow-rev 24s linear infinite; }

/* Main photo circle */
.leader-circle {
  width: clamp(180px, 25vw, 240px);
  height: clamp(180px, 25vw, 240px);
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid var(--white);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.leader-circle--orange {
  box-shadow: var(--shadow-lg), 0 0 0 3px var(--secondary);
  background: linear-gradient(135deg, var(--secondary-dark), var(--secondary));
}

.leader-circle--navy {
  box-shadow: var(--shadow-lg), 0 0 0 3px var(--primary);
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

.leader-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  position: relative;
  z-index: 1;
}

/* Fallback avatar – hidden by default, shown via JS onerror */
.leader-avatar-fallback {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  background: inherit;
  z-index: 2;
}

.laf-inner {
  text-align: center;
}

.laf-initials {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: rgba(255,255,255,0.9);
  line-height: 1;
  letter-spacing: 2px;
}

.laf-initials--navy {
  color: rgba(255,255,255,0.85);
}

.laf-name-small {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.55);
  margin: 4px 0 2px;
  letter-spacing: 0.3px;
}

.laf-icon {
  font-size: 1.4rem;
  color: rgba(255,255,255,0.35);
  display: block;
  margin-top: 4px;
}

.laf-icon--navy { color: rgba(255,255,255,0.3); }

/* EST badge */
.leader-est-badge {
  position: absolute;
  top: 6px;
  right: -10px;
  background: var(--primary);
  color: var(--white);
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--white);
  box-shadow: var(--shadow-md);
  line-height: 1.15;
  z-index: 10;
}

.est-label { font-size: 0.5rem; letter-spacing: 0.5px; opacity: 0.7; }
.est-year  { font-family: var(--font-display); font-weight: 800; font-size: 0.95rem; }

/* Vision badge */
.leader-vision-badge {
  position: absolute;
  top: 6px;
  left: -10px;
  background: var(--secondary);
  color: var(--white);
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--white);
  box-shadow: var(--shadow-md);
  line-height: 1.2;
  gap: 2px;
  z-index: 10;
}

.leader-vision-badge i    { font-size: 1.1rem; }
.leader-vision-badge span { font-size: 0.48rem; letter-spacing: 0.4px; opacity: 0.85; }

/* Role badge pill */
.leader-role-badge {
  border-radius: 50px;
  padding: 10px 24px;
  margin-top: 1.2rem;
  display: inline-block;
  text-align: center;
}

.leader-role-badge--orange { background: var(--secondary); box-shadow: var(--shadow-orange); }
.leader-role-badge--navy   { background: var(--primary);   box-shadow: var(--shadow-md); }

.lrb-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--white);
  line-height: 1.2;
}

.lrb-title {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.4px;
  margin-top: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

/* Message column */
.leader-quote-mark {
  font-size: 4rem;
  font-family: Georgia, serif;
  color: var(--secondary);
  opacity: 0.18;
  line-height: 0.5;
  margin-bottom: 0.5rem;
  user-select: none;
}

.leader-headline {
  font-family: var(--font-display);
  color: var(--primary);
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  line-height: 1.35;
  margin-bottom: 1rem;
}

.leader-message-col p {
  color: var(--text-dark);
  line-height: 1.9;
  margin-bottom: 1rem;
  font-size: 0.97rem;
}

/* Signature */
.leader-signature {
  padding: 1rem 1.3rem;
  background: var(--white);
  border-left: 4px solid var(--secondary);
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.2rem;
}

.leader-signature--navy { border-left-color: var(--primary); }

.ls-name {
  font-family: 'Dancing Script', 'Brush Script MT', cursive;
  font-size: 1.8rem;
  color: var(--secondary);
  line-height: 1;
  margin-bottom: 4px;
}

.leader-signature--navy .ls-name { color: var(--primary); }

.ls-title {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.ls-title i { color: var(--secondary); }
.leader-signature--navy .ls-title i { color: var(--primary); }

/* Pills */
.leader-pills {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.lpill {
  padding: 5px 13px;
  border-radius: 50px;
  font-size: 0.76rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.lpill--navy   { background: rgba(11,60,93,0.08);   color: var(--primary); }
.lpill--orange { background: rgba(245,124,0,0.1);   color: var(--secondary-dark); }

/* Divider between leaders */
.leader-divider {
  border: none;
  border-top: 2px dashed var(--border);
  margin: 3rem 0;
}

/* ── Mission & Vision Cards ── */
.mv-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.mv-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.mv-accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.mv-accent--orange  { background: linear-gradient(90deg, var(--secondary), var(--secondary-light)); }
.mv-accent--primary { background: linear-gradient(90deg, var(--primary),   var(--primary-light));   }

.mv-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 1.3rem;
  transition: var(--transition);
}

.mv-icon--orange { background: linear-gradient(135deg, var(--secondary), var(--secondary-light)); }

.mv-card:hover .mv-icon { transform: rotate(6deg) scale(1.1); }

.mv-card h3 {
  color: var(--primary);
  margin-bottom: 0.8rem;
  font-size: 1.3rem;
}

.mv-card p {
  line-height: 1.9;
  color: var(--text-dark);
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
}

.mv-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mv-list li {
  font-size: 0.88rem;
  color: var(--text-dark);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mv-list li i { color: var(--secondary); font-size: 0.9rem; }

/* ── CTA icon row ── */
.cta-icon-row {
  font-size: 2rem;
  color: rgba(255,255,255,0.2);
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

/* ════════════════════════════════════════════
   RESPONSIVE – About Page Tablet (≤992px)
════════════════════════════════════════════ */
@media (max-width: 992px) {
  .leader-card,
  .leader-card--reverse {
    grid-template-columns: 220px 1fr;
    gap: 2rem;
  }

  .leader-card--reverse {
    grid-template-columns: 1fr 220px;
  }

  .leader-circle {
    width: 190px;
    height: 190px;
  }
}

/* ════════════════════════════════════════════
   RESPONSIVE – About Page Mobile (≤768px)
════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Hero */
  .about-hero { padding: 80px 0 52px; }

  .aht-divider { display: none; }
  .about-hero-trust { gap: 0.7rem 1rem; }

  /* Stats grid – 2 cols stays, just reduce padding */
  .stats-grid { gap: 10px; }
  .stat-tile  { padding: 1.2rem 0.8rem; }

  /* Leader cards – stack vertically */
  .leader-card,
  .leader-card--reverse {
    grid-template-columns: 1fr;
    gap: 1.8rem;
    text-align: center;
  }

  /* On reverse card, photo always comes first */
  .leader-card--reverse .leader-photo-col { order: 1; }
  .leader-card--reverse .leader-message-col { order: 2; }

  .leader-photo-col { justify-content: center; }

  .leader-circle {
    width: 180px;
    height: 180px;
  }

  .leader-message-col p { text-align: left; }
  .leader-headline { text-align: left; }
  .section-label  { justify-content: center; }

  .leader-pills { justify-content: center; }

  .leader-signature {
    text-align: left;
  }

  .about-cta-row {
    flex-direction: column;
  }

  .about-cta-row .btn-primary-custom,
  .about-cta-row .btn-dark-custom {
    width: 100%;
    justify-content: center;
  }

  /* Mission Vision */
  .mv-card { padding: 1.5rem; }

  /* CTA section */
  .cta-icon-row { font-size: 1.5rem; gap: 1rem; }
}

/* ════════════════════════════════════════════
   RESPONSIVE – Small phones (≤480px)
════════════════════════════════════════════ */
@media (max-width: 480px) {
  .about-hero { padding: 70px 0 44px; }

  .stats-grid { gap: 8px; }
  .stat-tile { padding: 1rem 0.6rem; }
  .stat-tile-num { font-size: 1.8rem; }
  .stat-tile-label { font-size: 0.76rem; }

  .leader-circle {
    width: 160px;
    height: 160px;
  }

  .leader-est-badge,
  .leader-vision-badge {
    width: 52px;
    height: 52px;
  }

  .lrb-name { font-size: 0.95rem; }
  .leader-role-badge { padding: 8px 18px; }

  .leader-headline { font-size: 1.05rem; }

  .leader-pills { gap: 0.4rem; }
  .lpill { font-size: 0.7rem; padding: 4px 10px; }

  .mv-list { gap: 0.4rem; }

  /* Ensure breadcrumb doesn't overflow */
  .page-hero .breadcrumb { font-size: 0.8rem; }
}


/* ==========================================================
   RK Tour & Travels – Style Additions / Patches
   Add this at the END of your existing style.css
   ========================================================== */


/* ══════════════════════════════════════════════════════════
   1. HERO – MOBILE IMAGE FIX
   Problem: 100vh on iOS includes browser chrome; images crop.
   Fix: Use 100dvh (dynamic viewport height) + safe areas.
   ══════════════════════════════════════════════════════════ */

.hero {
  /* dvh = dynamic viewport height (excludes browser chrome)
     Falls back to svh → vh for older browsers */
  min-height: 100dvh;
  min-height: 100svh; /* fallback */
  min-height: 100vh;  /* oldest fallback */

  /* iOS safe-area support for notched phones */
  padding-bottom: env(safe-area-inset-bottom, 0);
}

/* The hero background slide fills the full section correctly */
.hero-bg-slide {
  background-attachment: scroll; /* NEVER use fixed on mobile — kills perf */
  will-change: opacity;          /* GPU-hint for fade transitions */
}

/* On mobile: shift focus point to center (portrait images look better) */
@media (max-width: 768px) {
  .hero {
    min-height: 100dvh;
    min-height: -webkit-fill-available; /* Safari iOS 12–14 */
  }

  /* Fix: ensure the very first slide is always visible before JS loads */
  .hero-bg-slide:first-child {
    opacity: 1;
  }

  /* Shift the image anchor so landscape shots show the horizon, not the sky */
  .hero-bg-slide {
    background-position: center 60%; /* show lower 60% = people/landscape */
  }

  /* Optional: load a smaller mobile hero image via JS (see JS file additions) */
  .hero-bg-slide[data-mobile-src] {
    /* JS will swap src on load — this is just a marker */
  }

  /* Prevent overflow when address bar hides/shows on scroll */
  .hero .container {
    min-height: inherit;
    padding-top: max(90px, env(safe-area-inset-top, 90px));
  }
}


/* ══════════════════════════════════════════════════════════
   2. HERO – PICTURE ELEMENT SUPPORT (if you switch away from
   CSS background images, use this card image styling)
   ══════════════════════════════════════════════════════════ */

.hero-bg-picture {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  display: block;
}


/* ══════════════════════════════════════════════════════════
   3. GALLERY – ENHANCED PREMIUM DESIGN
   Adds: title + description overlay, smooth animations,
   staggered scroll reveal, shimmer skeleton loader.
   ══════════════════════════════════════════════════════════ */

/* ── Overlay redesign: shows title + description on hover ── */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(7, 31, 46, 0.55) 55%,
    rgba(7, 31, 46, 0.93) 100%
  );
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 1rem 1.1rem;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  color: var(--white);
  z-index: 2;
  pointer-events: none; /* so the lightbox click passes through */
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
  transform: translateY(0);
}

/* Title inside overlay */
.gallery-overlay-title {
  font-family: var(--font-display);
  font-size: clamp(0.85rem, 2vw, 1rem);
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 4px;
  color: var(--white);
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
  /* Slide up on hover */
  transform: translateY(8px);
  transition: transform 0.35s ease 0.05s;
}

.gallery-item:hover .gallery-overlay-title {
  transform: translateY(0);
}

/* Short description */
.gallery-overlay-desc {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.4;
  margin: 0 0 8px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease 0.1s, opacity 0.35s ease 0.1s;
  opacity: 0;
}

.gallery-item:hover .gallery-overlay-desc {
  max-height: 60px;
  opacity: 1;
}

/* Zoom + category row */
.gallery-overlay-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  transform: translateY(6px);
  transition: transform 0.35s ease 0.08s;
}

.gallery-item:hover .gallery-overlay-footer {
  transform: translateY(0);
}

/* The circular zoom icon (refined) */
.gallery-overlay .zoom-icon {
  width: 40px;
  height: 40px;
  background: rgba(245, 124, 0, 0.92);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transform: scale(0.65) rotate(-10deg);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) 0.05s;
  box-shadow: 0 4px 12px rgba(245, 124, 0, 0.45);
  flex-shrink: 0;
}

.gallery-item:hover .gallery-overlay .zoom-icon {
  transform: scale(1) rotate(0deg);
}

/* Category badge in overlay footer */
.gallery-overlay-cat {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.9);
  padding: 3px 10px;
  border-radius: 50px;
  backdrop-filter: blur(4px);
}

/* ── Thin orange accent line at top of each item (always visible) ── */
.gallery-item::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary), var(--secondary-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: 3;
}

.gallery-item:hover::after {
  transform: scaleX(1);
}

/* ── Staggered scroll-reveal for gallery items ── */
.gallery-item {
  opacity: 0;
  transform: translateY(24px) scale(0.97);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.gallery-item.gallery-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Stagger delays */
.gallery-item:nth-child(1)  { transition-delay: 0.00s; }
.gallery-item:nth-child(2)  { transition-delay: 0.06s; }
.gallery-item:nth-child(3)  { transition-delay: 0.12s; }
.gallery-item:nth-child(4)  { transition-delay: 0.18s; }
.gallery-item:nth-child(5)  { transition-delay: 0.22s; }
.gallery-item:nth-child(6)  { transition-delay: 0.26s; }
.gallery-item:nth-child(7)  { transition-delay: 0.30s; }
.gallery-item:nth-child(8)  { transition-delay: 0.34s; }
.gallery-item:nth-child(9)  { transition-delay: 0.38s; }
.gallery-item:nth-child(10) { transition-delay: 0.40s; }

/* ── Lightbox enhancements ── */
#lightbox {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

#lightbox-img {
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
  animation: lightboxIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes lightboxIn {
  from { opacity: 0; transform: scale(0.88); }
  to   { opacity: 1; transform: scale(1); }
}

/* Lightbox caption bar */
#lightbox-caption {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 100000;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
  padding: 2rem 1.5rem 1.2rem;
  color: var(--white);
  text-align: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

#lightbox-caption.visible { opacity: 1; }
#lightbox-caption-title { font-family: var(--font-display); font-size: 1.1rem; margin: 0; }
#lightbox-caption-desc  { font-size: 0.85rem; color: rgba(255,255,255,0.7); margin: 4px 0 0; }

/* Lightbox nav arrows */
#lightbox-prev,
#lightbox-next {
  position: fixed;
  top: 50%; transform: translateY(-50%);
  z-index: 100001;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  transition: background 0.2s ease;
  backdrop-filter: blur(4px);
}
#lightbox-prev { left: 16px; }
#lightbox-next { right: 16px; }
#lightbox-prev:hover,
#lightbox-next:hover { background: rgba(245,124,0,0.7); }


/* ══════════════════════════════════════════════════════════
   4. GALLERY PAGE – Full Page Filter Tabs
   ══════════════════════════════════════════════════════════ */

.gallery-filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2rem;
}

.gallery-filter-tab {
  padding: 8px 20px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.gallery-filter-tab:hover {
  border-color: var(--secondary);
  color: var(--secondary);
}

.gallery-filter-tab.active {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--white);
  box-shadow: var(--shadow-orange);
}


/* ══════════════════════════════════════════════════════════
   5. PACKAGE CARD – Mobile touch feedback
   ══════════════════════════════════════════════════════════ */

@media (hover: none) {
  /* Devices without hover (touchscreens): remove hover lift */
  .package-card:hover,
  .service-card:hover {
    transform: none;
  }

  /* Show active/pressed state instead */
  .package-card:active { transform: scale(0.98); }
  .service-card:active { transform: scale(0.98); }

  /* Gallery overlay: always show title on touch devices */
  .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
    /* Only show the bottom gradient + title, not description */
    background: linear-gradient(to bottom, transparent 55%, rgba(7,31,46,0.85) 100%);
  }

  .gallery-overlay-desc { display: none; }
}


/* ══════════════════════════════════════════════════════════
   6. WEBP / IMAGE LOADING – fade-in on load
   ══════════════════════════════════════════════════════════ */

.img-fade {
  opacity: 0;
  transition: opacity 0.4s ease;
}

.img-fade.loaded {
  opacity: 1;
}


/* ══════════════════════════════════════════════════════════
   7. CONVERSION BOOST – Sticky enquiry bar (mobile)
   Appears at bottom on mobile for easy booking.
   ══════════════════════════════════════════════════════════ */

.sticky-cta-bar {
  display: none;
}

@media (max-width: 768px) {
  .sticky-cta-bar {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 9000;
    background: var(--white);
    border-top: 1px solid var(--border);
    padding: 10px 16px;
    gap: 10px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.12);
    padding-bottom: max(10px, env(safe-area-inset-bottom, 10px));
  }

  .sticky-cta-bar .btn-primary-custom,
  .sticky-cta-bar .btn-outline-call {
    flex: 1;
    justify-content: center;
    font-size: 0.9rem;
    padding: 12px 10px;
    border-radius: 8px;
  }

  .sticky-cta-bar .btn-outline-call {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    transition: var(--transition);
  }

  /* Push footer content above the bar */
  footer { padding-bottom: 72px; }

  /* Hide the old floating buttons on very small screens 
     since sticky bar replaces them */
  .floating-buttons {
    bottom: 90px;
  }
}


/* ══════════════════════════════════════════════════════════
   8. READABILITY IMPROVEMENTS
   ══════════════════════════════════════════════════════════ */

/* Ensure package descriptions don't overflow on small cards */
.package-card p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Slightly larger tap targets for nav links on mobile */
@media (max-width: 992px) {
  .navbar-nav .nav-link {
    padding: 12px 16px !important;
  }
}

/* ── Mobile Navbar Menu Styling ───────────────────────────────── */
@media (max-width: 992px) {
  /* Collapsed menu panel */
  .navbar-collapse {
    background: var(--primary-dark);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 8px 0 16px;
    margin: 0 -12px;
    padding-left: 12px;
    padding-right: 12px;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  }

  /* Smooth collapse transition */
  .navbar-collapse.collapsing {
    transition: height 0.25s ease;
  }

  /* Each nav item full width with divider */
  .navbar-nav .nav-item {
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .navbar-nav .nav-item:last-child {
    border-bottom: none;
  }

  /* CTA button full width on mobile */
  .navbar-cta {
    display: block;
    text-align: center;
    margin-top: 8px;
  }
}

/* WhatsApp float button pulse animation for attention */
@keyframes float-pulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(37,211,102,0.4); }
  50%       { box-shadow: 0 4px 32px rgba(37,211,102,0.7); }
}

.float-whatsapp {
  animation: float-pulse 2.5s ease-in-out infinite;
}


/* ══════════════════════════════════════════════════════════
   9. HERO – MOBILE CONTENT LAYOUT FIX
   When viewport is very short (landscape mobile),
   reduce the hero height gracefully.
   ══════════════════════════════════════════════════════════ */

@media (max-width: 768px) and (max-height: 600px) {
  .hero {
    min-height: auto;
    padding: 70px 0 50px;
  }

  .hero-stats { margin-bottom: 1.2rem; }
  .hero h1   { font-size: 1.6rem; margin-bottom: 0.5rem; }
  .hero .tagline { display: none; } /* hide on landscape to save space */
}
/* ================================================================
   MOBILE OVERFLOW FIX – merged from mobile_overflow_fix.css
   ================================================================ */




@media (max-width: 768px) {

  /* Clip Bootstrap row overflow at the container level */
  .container,
  .container-fluid,
  .container-sm,
  .container-md {
    /* overflow-x: clip;           'clip' doesn't create a scroll context */
    padding-left:  16px;
    padding-right: 16px;
  }

  /* Extra safety: prevent any individual row from overflowing */
  .row {
    margin-left:  0 !important;
    margin-right: 0 !important;
  }

  /* Restore column spacing with padding instead of margin */
  .row > [class*="col"] {
    padding-left:  8px;
    padding-right: 8px;
  }

  /* Sections with g-4 / g-5 gutters – keep visual gap */
  .g-4 > [class*="col"],
  .g-5 > [class*="col"] {
    padding-left:  10px;
    padding-right: 10px;
  }
}



.section-subtitle {
  width: 100%;                 /* add this — safe on all screen sizes */
  max-width: 600px;            /* keeps existing cap on desktop */
}


/* ── FIX 4: Hero section – guaranteed full width, no overflow ─
   The hero uses absolute-positioned bg slides. On mobile, if
   anything inside has implicit width > 100vw it breaks the layout.
   ─────────────────────────────────────────────────────────── */

.hero,
.hero-bg-slider,
.hero-bg-slide,
.hero-bg-overlay {
  max-width: 100vw;
  left: 0;
  right: 0;
}

/* Hero container on mobile must respect the viewport */
@media (max-width: 768px) {
  .hero .container {
    max-width: 100%;
    padding-left:  16px;
    padding-right: 16px;
  }

  /* Hero content full width — no accidental overflow */
  .hero-content,
  .hero h1,
  .hero .tagline,
  .hero-actions {
    max-width: 100%;
    word-break: break-word;
  }

  /* Stats grid must not exceed viewport */
  .hero-stats {
    width: 100%;
    max-width: 100%;
  }
}



.float-btn .tooltip-text {
  right: 68px;
  max-width: calc(100vw - 90px);  /* never wider than screen */
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}


/* ── FIX 6: Service cards – padding can push cards wider ─────── */

@media (max-width: 480px) {
  .service-card {
    padding: 1.25rem;            /* was 2rem, reduces internal width pressure */
  }

  .testimonial-card {
    padding: 1.25rem;
  }

  .contact-card {
    padding: 1.25rem;
  }
}


/* ── FIX 7: CTA Banner – text overflow on tiny phones ─────────
   The h2 inside .cta-banner uses clamp() font-size but the
   emoji "🌏" can behave differently across Android/iOS.
   ─────────────────────────────────────────────────────────── */

@media (max-width: 480px) {
  .cta-banner h2 {
    font-size: clamp(1.4rem, 6vw, 2rem);
    overflow-wrap: break-word;
    word-break: break-word;
  }

  .cta-banner p {
    font-size: 0.88rem;
  }
}


/* ── FIX 8: Gallery grid – nth-child span can overflow ─────────
   .gallery-item:nth-child(3n+1) { grid-column: span 2 } on mobile
   is fine for 2-column grids, but if there's only 1 item on a row
   it can create implicit columns wider than the container.
   ─────────────────────────────────────────────────────────── */

@media (max-width: 768px) {
  .gallery-grid {
    overflow: hidden;           /* clip any grid bleed */
    width: 100%;
  }
}


/* ── FIX 9: Footer quick links – long URLs or words wrap weird ─ */

@media (max-width: 480px) {
  footer ul li a {
    word-break: break-word;
    white-space: normal;
  }

  .footer-contact-item span,
  .footer-contact-item a {
    word-break: break-word;
  }
}


/* ── GLOBAL SAFETY NET ─────────────────────────────────────────
   Catch-all: any element that goes wider than the viewport
   on mobile gets clipped. This is the last line of defence.
   ─────────────────────────────────────────────────────────── */

@media (max-width: 768px) {
  * {
    max-width: 100%;            /* never wider than its parent */
  }

  /* Exceptions: elements that legitimately need to escape parent */
  .hero-bg-slide,
  .hero-bg-overlay,
  .hero::before,
  #lightbox,
  #lightbox-prev,
  #lightbox-next,
  #lightbox-caption,
  .floating-buttons,
  .sticky-cta-bar,
  .modal,
  .modal-dialog,
  .site-header,
  .navbar {
    max-width: none;           /* these are position:fixed/absolute — restore */
  }
}