/* =========================================================
   RK Tour & Travels – Premium Design System
   Color: #0B3C5D (Navy) + #F57C00 (Orange) + White/Light Grey
   ========================================================= */

@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; }

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

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); }

/* ── Navbar ── */
.navbar {
  background: var(--primary);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  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;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  transform: scale(1.05);
  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(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 60, 93, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  color: var(--white);
  font-size: 1.5rem;
}

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

/* ── 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 ── */
  .hero {
    min-height: 100svh;
    padding: 0;
    align-items: flex-end;
  }

  /* Stronger overlay on mobile for readability */
  .hero-bg-overlay {
    background:
      linear-gradient(
        to bottom,
        rgba(7,31,46,0.35) 0%,
        rgba(7,31,46,0.55) 40%,
        rgba(7,31,46,0.92) 75%,
        rgba(7,31,46,1.00) 100%
      );
  }

  /* Hero content sits at bottom, centred */
  .hero .container {
    padding-bottom: 80px;
    padding-top: 100px;
  }

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

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

  /* 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.75);
  }

  /* 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: 52px;
  }

  .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; }

  /* Gallery grid 2 cols */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}