/* ============================================================
   DESIGN SYSTEM — SAVORE CATERING
   Premium · Warm · Restrained
   ============================================================ */

:root {
  /* Primary palette — Nishant Maroon */
  --primary: #991E5B;
  /* logo maroon */
  --primary-soft: #f5d6e6;
  --primary-light: #fef0f7;
  --accent: #be185d;
  --accent-soft: #f9d0e4;
  --accent-light: #fef0f6;

  /* Neutral tones */
  --bg: #fdfaf7;
  /* warm white */
  --bg-section: #f7f2ed;
  --surface: #ffffff;
  --border: #e8e0d8;
  --border-strong: #d4c8bc;

  /* Text */
  --text: #1c1714;
  --text-muted: #6e6056;
  --text-light: #9e9088;

  /* Status */
  --success: #15803d;
  --success-bg: #dcfce7;
  --warning: #b45309;
  --warning-bg: #fef3c7;
  --danger: #b91c1c;
  --danger-bg: #fee2e2;
  --info: #1d4ed8;
  --info-bg: #dbeafe;

  /* Typography */
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* Shadows */
  --shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.07);
  --shadow-md: 0 6px 24px rgba(0, 0, 0, 0.09);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.11);

  /* Radii */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 24px;
  --r-full: 100px;

  /* Transitions */
  --ease: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-head);
  line-height: 1.2;
  color: var(--text);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--ease);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  font-family: var(--font-body);
  cursor: pointer;
}

input,
select,
textarea {
  font-family: var(--font-body);
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Mobile container */
@media (max-width: 768px) {
  .container {
    width: 90%;
    padding: 0 0.5rem;
  }
}

.section {
  padding: 5rem 0;
}

.section-sm {
  padding: 3rem 0;
}

/* Responsive section padding */
@media (max-width: 768px) {
  .section {
    padding: 3rem 0;
  }

  .section-sm {
    padding: 2rem 0;
  }
}

.section-light {
  background: var(--bg-section);
}

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

.text-primary {
  color: var(--primary);
}

.text-accent {
  color: var(--accent);
}

.text-muted {
  color: var(--text-muted);
}

.flex {
  display: flex;
  align-items: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.gap-1 {
  gap: 0.5rem;
}

.gap-2 {
  gap: 1rem;
}

.gap-3 {
  gap: 1.5rem;
}

.mt-1 {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 2rem;
}

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 2rem;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
  display: block;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text);
}

/* Responsive section titles */
@media (max-width: 1024px) {
  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.6rem;
  }
}

.section-title span {
  color: var(--accent);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
  margin-bottom: 3rem;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.8rem;
  border-radius: var(--r-full);
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--ease);
  white-space: nowrap;
  min-height: 44px;
  /* Accessibility - minimum touch target */
}

/* Mobile button optimization */
@media (max-width: 768px) {
  .btn {
    padding: 0.8rem 1.6rem;
    font-size: 0.95rem;
  }

  .btn-lg {
    padding: 1rem 2rem;
    font-size: 1.05rem;
  }
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 3px 12px rgba(224, 112, 32, 0.28);
}

.btn-primary:hover {
  background: #c85e18;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(224, 112, 32, 0.35);
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent) 0%, #e03080 100%);
  color: #fff;
  box-shadow: 0 3px 12px rgba(190, 24, 93, 0.28);
}

.btn-accent:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(190, 24, 93, 0.38);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border-strong);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-light);
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
}

.btn-ghost:hover {
  background: var(--bg-section);
  color: var(--text);
}

.btn-sm {
  padding: 0.5rem 1.2rem;
  font-size: 0.82rem;
}

.btn-lg {
  padding: 0.9rem 2.4rem;
  font-size: 1rem;
}

.btn-block {
  width: 100%;
}

.btn-white {
  background: #fff;
  color: var(--accent);
  font-weight: 700;
}

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

/* ============================================================
   NAVBAR  — Modern, centred links, floating CTA
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(253, 250, 247, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  /* Mobile Safari: ensure fixed header is tappable immediately (no "scroll-to-activate" quirks) */
  transform: translateZ(0);
  will-change: transform;
  backface-visibility: hidden;
}

/* iOS Safari Fix */
@supports (-webkit-touch-callout: none) {
  @media (max-width: 1024px) {
    .navbar {
      backdrop-filter: none;
      -webkit-backdrop-filter: none;
    }
  }
}

.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.07);
}

.navbar.hidden {
  transform: translateY(-110%);
}

.navbar.hero-top {
  background: transparent;
  border-bottom-color: transparent;
  box-shadow: none;
}

.navbar.hero-top .nav-logo {
  color: #fff;
}

.navbar.hero-top .nav-logo em {
  color: var(--primary);
  font-style: normal;
}

.navbar.hero-top .nav-link {
  color: rgba(255, 255, 255, 0.8);
}

.navbar.hero-top .nav-link:hover {
  color: #fff;
}

.navbar.hero-top .nav-toggle {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
}

/* Tablet/Mobile Navbar Always Visible */
@media (max-width: 1024px) {
  .navbar {
    background: rgba(253, 250, 247, 0.98) !important;
    border-bottom: 1px solid var(--border);
  }

  .navbar.hero-top {
    background: rgba(253, 250, 247, 0.98) !important;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.07);
  }

  .navbar.hero-top .nav-logo {
    color: var(--text) !important;
  }

  .navbar.hero-top .nav-link {
    color: var(--text) !important;
  }

  .navbar.hero-top .nav-toggle {
    color: var(--text) !important;
    border-color: var(--border) !important;
  }
}

.navbar .container {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: 76px;
  gap: 2rem;
}

/* Logo — left column */
.nav-logo {
  display: flex;
  align-items: center;
  justify-self: start;
  height: 100%;
}

.nav-logo img {
  height: 76px;
  width: auto;
  display: block;
  transition: transform 0.3s ease;
}

.nav-logo:hover img {
  transform: scale(1.05);
}

/* Centre links */
.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  list-style: none;
}

/* Mobile drawer CTA container should not affect desktop layout */
.nav-mobile-ctas {
  display: none;
}

.nav-link {
  padding: 0.5rem 1rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--ease);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover {
  color: var(--primary);
  opacity: 1 !important;
}

.nav-link:hover::after {
  width: 20px;
}

.nav-link.active {
  color: var(--primary);
  font-weight: 600;
}

.nav-link.active::after {
  width: 20px;
}

/* Right column — CTA */
.nav-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-self: end;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, var(--accent) 0%, #dc3575 100%);
  color: #fff !important;
  padding: 0.52rem 1.4rem;
  border-radius: var(--r-full);
  font-size: 0.865rem;
  font-weight: 600;
  letter-spacing: 0.1px;
  box-shadow: 0 2px 12px rgba(190, 24, 93, 0.22);
  transition: var(--ease);
  white-space: nowrap;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 5px 18px rgba(190, 24, 93, 0.32);
  color: #fff !important;
}

/* Hidden by default; shown inside the mobile drawer breakpoint */
.nav-cta.mobile-only {
  display: none;
}

/* Mobile toggle */
.nav-toggle,
.nav-close-btn {
  display: none;
}

.nav-toggle {
  width: 44px;
  height: 44px;
  display: none !important;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  background: transparent;
  color: var(--text);
  font-size: 1.4rem;
  cursor: pointer;
  transition: var(--ease);
  flex-shrink: 0;
  z-index: 1002;
}

.nav-toggle:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* mobile overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  backdrop-filter: blur(4px);
}

.nav-overlay.show {
  display: block;
}

/* Mobile drawer */
/* Responsive Breakpoint: 1024px */
@media (max-width: 1024px) {
  .nav-toggle {
    display: flex !important;
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
  }

  .navbar .container {
    grid-template-columns: auto 1fr;
    position: relative;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    /* Full screen width as requested */
    height: 100vh;
    background: var(--surface);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 2rem;
    box-shadow: none;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    overflow-y: auto;
  }

  /* Mobile Branding Header */
  .nav-links::before {
    content: "☰ Nishant Events & Catering";
    display: block;
    font-family: var(--font-head);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--accent-light);
    padding-bottom: 0.5rem;
  }

  .nav-links.show {
    right: 0;
  }

  .nav-link {
    display: block;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-family: var(--font-head);
    color: var(--text);
    border: none;
    text-align: center;
    width: 100%;
  }

  .nav-link:hover {
    color: var(--accent);
    background: var(--bg-section);
  }

  .nav-right {
    display: none !important;
  }

  .nav-mobile-ctas {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 300px;
    margin-top: 1rem;
  }

  .nav-cta.mobile-only {
    display: flex;
    justify-content: center;
    width: 100%;
    font-size: 1rem;
    padding: 0.8rem;
  }
}

/* iPad/Tablet navbar - always visible */
@media (min-width: 769px) and (max-width: 960px) {
  .navbar.hidden {
    transform: translateY(0) !important;
  }
}

/* ============================================================
   PAGE HEADER  (sub-pages)
   ============================================================ */
.page-header {
  background: var(--bg-section);
  border-bottom: 1px solid var(--border);
  padding: 6rem 0 2.5rem;
  text-align: center;
}

.page-header h1 {
  font-size: 2.4rem;
  margin-bottom: 0.5rem;
}

.page-header p {
  color: var(--text-muted);
  font-size: 1rem;
}

.breadcrumb {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.breadcrumb a {
  color: var(--text-muted);
}

.breadcrumb a:hover {
  color: var(--primary);
}

.breadcrumb .sep {
  margin: 0 0.4rem;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #16100c;
  color: #fff;
  overflow: hidden;
}

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

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
  opacity: 0.55;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.3) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding-top: 5rem;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  z-index: 3;
  gap: 0.5rem;
  background: rgba(224, 112, 32, 0.15);
  border: 1px solid rgba(224, 112, 32, 0.35);
  padding: 0.4rem 1rem;
  border-radius: var(--r-full);
  font-size: 0.8rem;
  font-weight: 500;
  color: #f5a870;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
}

/* EXPERTISE SECTION STYLES */
.expertise-container-wrap {
  position: relative;
  margin-top: 3rem;
  padding: 0 2rem;
}

.expertise-scroll-container {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 1rem 0.5rem 2rem;
  scrollbar-width: none;
  /* Firefox */
}

.expertise-scroll-container::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, Opera */
}

.expertise-card-item {
  flex: 0 0 calc(33.333% - 1rem);
  min-width: 300px;
  height: 400px;
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  scroll-snap-align: start;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease;
}

.expertise-card-item:hover {
  transform: translateY(-5px);
}

.expertise-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.expertise-card-item:hover .expertise-img {
  transform: scale(1.05);
}

.expertise-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
}

.expertise-card-title {
  position: absolute;
  bottom: 2rem;
  left: 1.5rem;
  right: 1.5rem;
  color: #fff;
  font-family: var(--font-head);
  font-size: 1.8rem;
  margin: 0;
  z-index: 2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.expertise-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  font-size: 1.2rem;
  transition: var(--ease);
  color: var(--primary);
}

.expertise-nav-btn:hover {
  background: var(--primary);
  color: #fff;
}

.expertise-nav-btn.prev {
  left: -1rem;
}

.expertise-nav-btn.next {
  right: -1rem;
}

@media (max-width: 960px) {
  .expertise-card-item {
    flex: 0 0 calc(50% - 0.75rem);
  }

  .expertise-nav-btn {
    display: none;
  }

  .expertise-container-wrap {
    padding: 0;
  }
}

@media (max-width: 640px) {
  .expertise-card-item {
    flex: 0 0 100%;
  }
}


.hero-content h1 {
  font-size: clamp(2.2rem, 4.5vw, 4.2rem);
  color: #fff;
  margin-bottom: 1.2rem;
  line-height: 1.1;
}

/* Tablet optimization */
@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
  }
}

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

.hero-content p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 2rem;
  line-height: 1.7;
  max-width: 480px;
}

/* Mobile hero optimization */
@media (max-width: 768px) {
  .hero-content {
    padding-top: 4rem;
    text-align: center;
    margin: 0 auto;
  }

  .hero-content h1 {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
  }

  .hero-content p {
    font-size: 0.95rem;
    max-width: 100%;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-stats {
    justify-content: center;
    gap: 1.5rem;
  }

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

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

/* Tablet hero actions */
@media (max-width: 768px) {
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  flex-wrap: wrap;
}

.hero-stat-num {
  font-family: var(--font-head);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
}

.hero-stat-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.52);
  margin-top: 0.1rem;
  display: block;
}

/* ============================================================
   PACKAGE CARDS
   ============================================================ */
.filter-strip {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.filter-btn {
  padding: 0.5rem 1.3rem;
  border-radius: var(--r-full);
  border: 1.5px solid var(--border);
  background: var(--surface);
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--ease);
}

.filter-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

/* Tablet packages grid */
@media (max-width: 1024px) {
  .packages-grid {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.2rem;
  }
}

/* Mobile packages grid */
@media (max-width: 768px) {
  .packages-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0 1rem;
  }
}

.package-card {
  background: var(--surface);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--ease);
  display: flex;
  flex-direction: column;
}

.package-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-strong);
}

.pkg-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}

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

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

.pkg-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  padding: 0.28rem 0.75rem;
  border-radius: var(--r-full);
  font-size: 0.75rem;
  font-weight: 600;
  backdrop-filter: blur(8px);
}

.pkg-badge.veg {
  background: rgba(255, 255, 255, 0.92);
  color: #15803d;
}

.pkg-badge.nonveg {
  background: rgba(255, 255, 255, 0.92);
  color: var(--primary);
}

.pkg-badge.premium {
  background: var(--accent);
  color: #fff;
}

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

.pkg-body h3 {
  font-size: 1.3rem;
  margin-bottom: 0.3rem;
}

.pkg-price {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.pkg-price span {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--text-muted);
}

.pkg-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1rem;
}

.pkg-tags {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
}

.pkg-tag {
  font-size: 0.75rem;
  background: var(--primary-light);
  color: var(--primary);
  padding: 0.25rem 0.65rem;
  border-radius: var(--r-sm);
  font-weight: 500;
}

.pkg-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-top: 1rem;
}

.pkg-actions .btn {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  white-space: nowrap;
  font-size: 0.85rem;
}

/* ============================================================
   FORMS
   ============================================================ */
.form-group {
  margin-bottom: 1.2rem;
}

label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
  letter-spacing: 0.3px;
}

.form-control {
  width: 100%;
  padding: 0.72rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  background: var(--surface);
  color: var(--text);
  font-size: 0.93rem;
  transition: var(--ease);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(190, 24, 93, 0.1);
}

.form-control::placeholder {
  color: var(--text-light);
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  cursor: pointer;
}

textarea.form-control {
  resize: vertical;
  min-height: 90px;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-grid-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
}

.form-grid-2-mobile {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 600px) {

  .form-grid-2,
  .form-grid-3,
  .form-grid-2-mobile {
    grid-template-columns: 1fr;
  }
}

.form-section-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  padding-bottom: 0.6rem;
  margin: 1.8rem 0 1rem;
  border-bottom: 1.5px solid var(--accent-soft);
}

/* ============================================================
   STATUS BADGES
   ============================================================ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.28rem 0.85rem;
  border-radius: var(--r-full);
  font-size: 0.75rem;
  font-weight: 600;
}

.badge-pending {
  background: var(--warning-bg);
  color: var(--warning);
}

.badge-approved {
  background: var(--success-bg);
  color: var(--success);
}

.badge-rejected {
  background: var(--danger-bg);
  color: var(--danger);
}

/* ============================================================
   CARDS / SURFACES
   ============================================================ */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
}

.card-pad {
  padding: 2rem;
}

.card-header {
  padding: 1.25rem 1.75rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-header h3 {
  font-size: 1.1rem;
  font-weight: 600;
}

.card-body {
  padding: 1.75rem;
}

/* ============================================================
   KPI / STAT CARDS
   ============================================================ */
.kpi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.kpi-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.4rem 1.6rem;
  box-shadow: var(--shadow-sm);
}

.kpi-card .kpi-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.kpi-card .kpi-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  display: block;
}

.kpi-card .kpi-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
  display: block;
}

/* ============================================================
   TABLE
   ============================================================ */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  /* Smooth scrolling on iOS */
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  position: relative;
  min-height: 200px;
  /* Ensure enough space for scrolling */
}

/* Scroll indicator shadow */
.table-wrap.has-scroll::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 40px;
  /* Wider indicator for better visibility */
  background: linear-gradient(to left, rgba(255, 255, 255, 0.8), transparent);
  pointer-events: none;
  opacity: 0.7;
  z-index: 10;
  transition: opacity 0.3s ease;
}

/* Hide indicator when scrolled to end */
.table-wrap.scrolled-end::after {
  opacity: 0;
}

/* Ensure table doesn't shrink */
.table-wrap table {
  min-width: 800px;
}

/* Better table cell padding */
.table-wrap th,
.table-wrap td {
  white-space: nowrap;
}

/* Sticky first column for better context */
.table-wrap td:first-child,
.table-wrap th:first-child {
  position: sticky;
  left: 0;
  background: var(--surface);
  z-index: 1;
  font-weight: 600;
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.05);
  /* Subtle shadow for depth */
}

.table-wrap thead th:first-child {
  z-index: 2;
}

/* Scroll hint text */
.table-wrap.has-scroll::before {
  content: 'Scroll horizontally to see more 👉';
  position: absolute;
  top: -28px;
  right: 0;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
  opacity: 0.8;
  pointer-events: none;
  display: block;
  transition: opacity 0.3s ease;
}

/* Hide text hint when scrolled to end */
.table-wrap.scrolled-end::before {
  opacity: 0;
}

/* Custom scrollbar to make scrolling obvious on laptops */
.table-wrap::-webkit-scrollbar {
  height: 8px;
}

.table-wrap::-webkit-scrollbar-track {
  background: var(--bg-section);
  border-radius: 4px;
}

.table-wrap::-webkit-scrollbar-thumb {
  background: var(--border-strong);
  border-radius: 4px;
}

.table-wrap::-webkit-scrollbar-thumb:hover {
  background: var(--text-light);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

thead tr {
  background: var(--bg-section);
}

th {
  padding: 0.85rem 1.1rem;
  text-align: left;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}

td {
  padding: 0.9rem 1.1rem;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

tr:last-child td {
  border-bottom: none;
}

tbody tr:hover {
  background: var(--primary-light);
  transition: var(--ease);
}

/* ============================================================
   GUEST COUNTER
   ============================================================ */
.counter-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.counter-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  color: var(--text-muted);
  transition: var(--ease);
  flex-shrink: 0;
}

.counter-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

#guestsCount {
  max-width: 80px;
  text-align: center;
  font-weight: 600;
}

/* ============================================================
   PACKAGE SELECTOR (booking page)
   ============================================================ */
.pkg-select-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.pkg-opt {
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  padding: 1rem 0.75rem;
  text-align: center;
  cursor: pointer;
  transition: var(--ease);
  background: var(--surface);
}

.pkg-opt:hover {
  border-color: var(--primary);
}

.pkg-opt.active {
  border-color: var(--accent);
  background: var(--accent-light);
}

.pkg-opt .opt-icon {
  font-size: 1.4rem;
  margin-bottom: 0.3rem;
}

.pkg-opt .opt-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
}

.pkg-opt .opt-price {
  font-size: 0.72rem;
  color: var(--primary);
  margin-top: 0.15rem;
}

@media (max-width: 1024px) {
  .pkg-select-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .pkg-select-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   PRICE SUMMARY (booking sidebar)
   ============================================================ */
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.65rem 0;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border);
}

.price-row:last-child {
  border-bottom: none;
}

.price-row.total-row {
  font-weight: 700;
  font-size: 1rem;
  border-top: 2px solid var(--border);
  padding-top: 0.9rem;
  margin-top: 0.2rem;
  border-bottom: none;
}

.grand-box {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: var(--r-lg);
  padding: 1.4rem;
  text-align: center;
  color: #fff;
  margin-top: 1.2rem;
}

.grand-box p {
  font-size: 0.82rem;
  opacity: 0.82;
  margin-bottom: 0.3rem;
}

.grand-box .amount {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 700;
}

/* ============================================================
   BOOKING LAYOUT
   ============================================================ */
.booking-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 2rem;
  align-items: start;
}

@media (max-width: 960px) {
  .booking-layout {
    grid-template-columns: 1fr;
  }
}

/* Mobile booking optimization */
@media (max-width: 768px) {
  .booking-layout {
    gap: 1.5rem;
  }

  .booking-sidebar {
    position: static;
    order: -1;
  }

  .price-summary-card {
    padding: 1.5rem;
  }

  .grand-box .amount {
    font-size: 1.8rem;
  }
}

.booking-sidebar {
  position: sticky;
  top: 80px;
}

.incl-list {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-top: 0.75rem;
}

.incl-list span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.84rem;
  color: var(--text);
  line-height: 1.4;
}


/* ============================================================
   CONFIRMATION PAGE
   ============================================================ */
.confirm-wrap {
  max-width: 640px;
  margin: 0 auto;
  padding: 5rem 1rem 3rem;
  text-align: center;
}

.check-anim {
  width: 88px;
  height: 88px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 1.8rem;
  color: #fff;
  box-shadow: 0 8px 28px rgba(34, 197, 94, 0.28);
  animation: popIn 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes popIn {
  from {
    transform: scale(0);
    opacity: 0;
  }

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

.booking-id-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--accent-light);
  border: 1px solid var(--accent-soft);
  color: var(--accent);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.4rem 1.2rem;
  border-radius: var(--r-full);
  margin-bottom: 2rem;
  letter-spacing: 1px;
}

/* ============================================================
   TIMELINE
   ============================================================ */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.tl-step {
  display: flex;
  gap: 1rem;
}

.tl-left {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tl-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.tl-dot.done {
  background: var(--success-bg);
  color: var(--success);
}

.tl-dot.current {
  background: var(--warning-bg);
  color: var(--warning);
}

.tl-dot.future {
  background: var(--bg-section);
  color: var(--text-light);
}

.tl-line {
  width: 2px;
  flex: 1;
  background: var(--border);
  margin: 4px 0;
  min-height: 28px;
}

.tl-content {
  padding-bottom: 1.2rem;
}

.tl-content strong {
  font-size: 0.9rem;
  display: block;
}

.tl-content span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ============================================================
   INVOICE
   ============================================================ */
.invoice-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 5rem 1rem 3rem;
}

.invoice-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.invoice-logo {
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--text);
}

.invoice-logo em {
  color: var(--accent);
  font-style: normal;
}

.invoice-meta p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.invoice-meta strong {
  color: var(--text);
}

.invoice-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}

.invoice-table th,
.invoice-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  font-size: 0.9rem;
}

.invoice-table th {
  background: var(--bg-section);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: var(--text-muted);
}

.invoice-table tr:not(:last-child) td {
  border-bottom: 1px solid var(--border);
}

.invoice-total-box {
  background: var(--bg-section);
  border-radius: var(--r-lg);
  padding: 1.4rem;
  max-width: 300px;
  margin-left: auto;
}

.inv-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  padding: 0.35rem 0;
}

.inv-row.grand {
  font-weight: 700;
  font-size: 1.05rem;
  border-top: 1.5px solid var(--border-strong);
  margin-top: 0.5rem;
  padding-top: 0.75rem;
  color: var(--accent);
}

.invoice-footer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 0.83rem;
  color: var(--text-muted);
}

/* ============================================================
   ADMIN SIDEBAR LAYOUT
   ============================================================ */
/* ============================================================
   ADMIN SIDEBAR LAYOUT
   ============================================================ */
.admin-shell {
  display: flex;
  min-height: 100vh;
  background: var(--bg-section);
}

.sidebar {
  width: 270px;
  flex-shrink: 0;
  background: linear-gradient(180deg, #130d09 0%, #201018 100%);
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  z-index: 100;
  overflow-y: auto;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.sidebar-logo {
  padding: 2rem 1.8rem 1.5rem;
  font-family: var(--font-head);
  font-size: 1.6rem;
  color: #fff;
  flex-shrink: 0;
}

.sidebar-logo em {
  color: var(--accent);
  font-style: normal;
}

.sidebar-logo small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
  margin-top: 0.25rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.sidebar-nav {
  padding: 1.5rem 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border-radius: var(--r-md);
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.sidebar-nav a:hover {
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.95);
  transform: translateX(4px);
}

.sidebar-nav a.active {
  background: linear-gradient(90deg, rgba(190, 24, 93, 0.15) 0%, transparent 100%);
  color: #fff;
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--r-md) var(--r-md) 0;
}

.sidebar-nav a .icon {
  font-size: 1.15rem;
  width: 24px;
  text-align: center;
  filter: grayscale(100%) opacity(0.7);
  transition: var(--ease);
}

.sidebar-nav a.active .icon,
.sidebar-nav a:hover .icon {
  filter: grayscale(0%) opacity(1);
}

.sidebar-footer {
  padding: 1.5rem 1rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
}

.sidebar-footer a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.45);
  padding: 0.75rem 1rem;
  border-radius: var(--r-md);
  transition: var(--ease);
  font-weight: 500;
}

.sidebar-footer a:hover {
  color: #f87171;
  background: rgba(239, 68, 68, 0.08);
}

.admin-main {
  margin-left: 270px;
  flex: 1;
  min-height: 100vh;
  background: #fdfaf7;
  min-width: 0;
  /* CRITICAL: Allows flex child to shrink below its content size so .table-wrap can scroll */
}

.admin-topbar {
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 0 2.5rem;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

/* Admin menu toggle button (mobile) */
.admin-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  background: transparent;
  color: var(--text);
  font-size: 1.3rem;
  cursor: pointer;
  transition: var(--ease);
  margin-right: 0.5rem;
}

.admin-menu-toggle:hover {
  border-color: var(--primary);
  color: var(--primary);
}

@media (max-width: 900px) {
  .admin-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* Close button inside admin sidebar */
.sidebar-close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--r-md);
  background: transparent;
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  transition: var(--ease);
  z-index: 10;
}

.sidebar-close-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(190, 24, 93, 0.1);
}

@media (max-width: 900px) {
  .sidebar-close-btn {
    display: flex;
  }
}

.admin-topbar h1 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
}

.admin-content {
  padding: 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .sidebar {
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    width: 280px;
  }

  .sidebar.open {
    transform: none;
    box-shadow: 10px 0 40px rgba(0, 0, 0, 0.3);
  }

  .admin-main {
    margin-left: 0;
  }

  .admin-topbar {
    padding: 0 1.5rem;
  }

  .admin-content {
    padding: 1.5rem;
  }
}

/* Mobile admin optimizations */
@media (max-width: 768px) {
  .sidebar {
    width: 100%;
    height: auto;
    position: fixed;
  }

  .admin-two-col {
    grid-template-columns: 1fr;
  }

  .kpi-grid {
    grid-template-columns: 1fr;
  }

  .table-wrap {
    font-size: 0.8rem;
  }

  table th,
  table td {
    padding: 0.6rem 0.8rem;
  }
}

/* Admin panel responsive improvements for phones and tablets */
@media (max-width: 900px) {

  /* Compact filter bar on mobile */
  .filter-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .filter-bar .search-wrap {
    max-width: 100% !important;
  }

  .filter-bar select,
  .filter-bar input,
  .filter-bar button {
    width: 100%;
  }

  /* Topbar adjustments */
  .admin-topbar {
    padding: 0 1rem;
    height: 60px;
  }

  .admin-topbar h1 {
    font-size: 1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .admin-topbar .btn {
    padding: 0.5rem 0.85rem;
    font-size: 0.8rem;
  }

  /* Content padding */
  .admin-content {
    padding: 1rem;
  }

  /* Card spacing */
  .card {
    margin-bottom: 1rem;
  }
}

/* iPad-specific optimizations (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
  .table-wrap table {
    min-width: 650px;
    /* Slightly smaller for iPad */
  }

  .table-wrap th,
  .table-wrap td {
    padding: 0.7rem 0.9rem;
    font-size: 0.85rem;
  }

  /* Reduce number of visible columns on iPad portrait */
  @media (orientation: portrait) {
    .table-wrap table {
      min-width: 750px;
    }
  }
}

/* Extra compact for phones < 480px */
@media (max-width: 480px) {
  .table-wrap table {
    min-width: 650px;
    font-size: 0.75rem;
  }

  .table-wrap th,
  .table-wrap td {
    padding: 0.6rem 0.75rem;
  }

  .admin-topbar h1 {
    font-size: 0.9rem;
  }
}

/* ============================================================
   SEARCH BAR
   ============================================================ */
.search-wrap {
  position: relative;
  max-width: 360px;
}

.search-wrap input {
  padding-left: 2.4rem;
}

.search-icon {
  position: absolute;
  left: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
  font-size: 0.9rem;
}

/* ============================================================
   FOOTER (Professional Redesign)
   ============================================================ */
.site-footer {
  background: #110c08;
  color: #fff;
  padding: 5rem 0 2rem;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(224, 112, 32, 0.08), transparent 70%);
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 4rem 2rem;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

@media (max-width: 960px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .footer-brand p {
    max-width: 100%;
  }
}

/* Tablet footer */
@media (max-width: 768px) {
  .site-footer {
    padding: 3rem 0 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-brand .logo {
    display: flex;
    justify-content: center;
  }

  .footer-brand p {
    margin: 0 auto 1.5rem;
  }

  .social-links {
    justify-content: center;
  }

  .footer-col ul li {
    display: flex;
    justify-content: center;
  }

  .footer-col .contact-info li {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-brand .logo {
  margin-bottom: 1.5rem;
}

.footer-brand .logo img {
  height: 120px;
  width: auto;
  filter: brightness(0) invert(1);
  /* White logo for dark footer */
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  max-width: 320px;
  margin-bottom: 2rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: var(--ease);
}

.social-links a:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(224, 112, 32, 0.3);
}

.footer-col h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #fff;
  letter-spacing: 0.5px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 1rem;
}

.footer-col ul a,
.footer-col ul span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--ease);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-col ul a:hover {
  color: var(--accent);
  transform: translateX(3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 600px) {
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.2s;
}

.footer-bottom-links a:hover {
  color: #fff;
}

/* ============================================================
   WHY SECTION CARDS
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
}

/* Service cards sliding section */
.service-cards-scroll {
  overflow: hidden;
  padding: 1rem 0;
}

.service-cards-scroll::-webkit-scrollbar {
  display: none;
}

.service-card-item {
  scroll-snap-align: start;
  flex-shrink: 0;
}

/* Our Expertise — seamless marquee track (no blank gap) */
.expertise-track {
  display: flex;
  width: max-content;
}

.expertise-track.is-ready {
  animation: expertise-marquee 120s linear infinite;
}

.expertise-group {
  display: flex;
  align-items: stretch;
  width: max-content;
  gap: var(--marquee-gap);
  /* Creates the same spacing between the duplicated groups */
  padding-right: var(--marquee-gap);
}

.service-cards-scroll .testimonials-marquee-wrap:hover .expertise-track.is-ready {
  animation-play-state: paused;
}

@keyframes expertise-marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .service-cards-scroll {
    padding: 1rem 1rem;
    margin: 0 -1rem;
  }
}

.why-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.8rem 1.6rem;
  transition: var(--ease);
}

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

.why-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
}

.why-card h4 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.why-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============================================================
   TESTIMONIALS (Scrollable)
   ============================================================ */
.testimonials-container-wrap {
  position: relative;
  margin-top: 3rem;
  padding: 0 2rem;
}

.testimonials-scroll-container {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 1rem 0.5rem 2rem;
  scrollbar-width: none;
  /* Firefox */
}

.testimonials-scroll-container::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, Opera */
}

.t-card {
  flex: 0 0 380px;
  scroll-snap-align: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2.2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.t-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  font-style: italic;
  flex: 1;
  margin-bottom: 1.8rem;
}

.t-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.t-avatar {
  width: 48px;
  height: 48px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-head);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.t-author div strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 0.15rem;
}

.t-author div span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

@media (max-width: 960px) {
  .testimonials-container-wrap {
    padding: 0;
  }
}

@media (max-width: 600px) {
  .t-card {
    flex: 0 0 280px;
    padding: 1.5rem;
  }
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, #1a0e08, #2d1020);
  color: #fff;
  padding: 5rem 0;
  text-align: center;
}

.cta-banner h2 {
  color: #fff;
  font-size: 2.4rem;
  margin-bottom: 0.75rem;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1rem;
  margin-bottom: 2rem;
}

/* ============================================================
   CATEGORY CHIPS
   ============================================================ */
.chips-wrap {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.2rem;
  border: 1.5px solid var(--border);
  border-radius: var(--r-full);
  background: var(--surface);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--ease);
  color: var(--text-muted);
}

.chip:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-1px);
}

.chip .chip-icon {
  font-size: 1.1rem;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.94);
  }

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

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

  100% {
    background-position: 200% 0;
  }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.stagger-ch>* {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.stagger-ch.visible>*:nth-child(1) {
  transition-delay: 0.04s;
  opacity: 1;
  transform: none;
}

.stagger-ch.visible>*:nth-child(2) {
  transition-delay: 0.1s;
  opacity: 1;
  transform: none;
}

.stagger-ch.visible>*:nth-child(3) {
  transition-delay: 0.16s;
  opacity: 1;
  transform: none;
}

.stagger-ch.visible>*:nth-child(4) {
  transition-delay: 0.22s;
  opacity: 1;
  transform: none;
}

.stagger-ch.visible>*:nth-child(5) {
  transition-delay: 0.28s;
  opacity: 1;
  transform: none;
}

.stagger-ch.visible>*:nth-child(6) {
  transition-delay: 0.34s;
  opacity: 1;
  transform: none;
}

/* Hero entrance */
.h-lbl {
  animation: fadeInDown 0.6s ease 0.15s both;
}

.h-head {
  animation: fadeInUp 0.7s ease 0.3s both;
}

.h-para {
  animation: fadeInUp 0.6s ease 0.5s both;
}

.h-acts {
  animation: fadeInUp 0.6s ease 0.65s both;
}

.h-stat {
  animation: fadeInUp 0.6s ease 0.8s both;
}

/* ============================================================
   UTILITY MISC
   ============================================================ */
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2rem 0;
}

.tag-orange {
  background: var(--primary-light);
  color: var(--primary);
  padding: 0.2rem 0.6rem;
  border-radius: var(--r-sm);
  font-size: 0.78rem;
  font-weight: 600;
}

.tag-pink {
  background: var(--accent-light);
  color: var(--accent);
  padding: 0.2rem 0.6rem;
  border-radius: var(--r-sm);
  font-size: 0.78rem;
  font-weight: 600;
}

.empty-state {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--text-muted);
}

.empty-state .icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.empty-state p {
  font-size: 0.9rem;
}

.alert {
  padding: 0.9rem 1.2rem;
  border-radius: var(--r-md);
  font-size: 0.88rem;
  margin-bottom: 1rem;
}

.alert-info {
  background: var(--info-bg);
  color: var(--info);
}

.alert-warn {
  background: var(--warning-bg);
  color: var(--warning);
}

.alert-success {
  background: var(--success-bg);
  color: var(--success);
}

.alert-danger {
  background: var(--danger-bg);
  color: var(--danger);
}

/* Print styles for invoice */
@media print {

  .navbar,
  .site-footer,
  .no-print {
    display: none;
  }

  body {
    background: #fff;
  }

  .invoice-wrap {
    padding-top: 1rem;
  }
}

/* ============================================================
   ADMIN — SHARED COMPONENT LIBRARY
   ============================================================ */

/* SVG icon helper (used in sidebar nav) */
.icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ── Card ─────────────────────────────────────────────────── */
.card {
  background: var(--surface);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.card-pad {
  padding: 1.75rem;
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.75rem;
  border-bottom: 1px solid var(--border);
}

.card-header h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}

/* ── KPI Cards ────────────────────────────────────────────── */
.kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}

@media (max-width: 1100px) {
  .kpi-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .kpi-grid {
    grid-template-columns: 1fr;
  }
}

.kpi-card {
  background: var(--surface);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  padding: 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  transition: var(--ease);
}

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

.kpi-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
}

.kpi-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}

.kpi-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ── Dashboard Two-Column Grid ────────────────────────────── */
.admin-two-col {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 1.5rem;
  align-items: start;
}

@media (max-width: 1100px) {
  .admin-two-col {
    grid-template-columns: 1fr;
  }
}

/* ── Badges ───────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.22rem 0.75rem;
  border-radius: var(--r-full);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: capitalize;
  white-space: nowrap;
}

.badge-pending {
  background: var(--warning-bg);
  color: var(--warning);
}

.badge-approved {
  background: var(--success-bg);
  color: var(--success);
}

.badge-rejected {
  background: var(--danger-bg);
  color: var(--danger);
}

.badge-cancelled {
  background: #f1f5f9;
  color: #64748b;
}

/* ── Table ────────────────────────────────────────────────── */
.table-wrap {
  width: 100%;
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
}

.table-wrap table,
.card .table-wrap table,
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

table thead {
  background: var(--bg-section);
}

table th {
  padding: 0.85rem 1rem;
  text-align: left;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}

table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  vertical-align: middle;
}

table tbody tr:last-child td {
  border-bottom: none;
}

table tbody tr:hover {
  background: var(--bg-section);
}

/* ── Form Controls ────────────────────────────────────────── */
.form-group {
  margin-bottom: 1.1rem;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-control {
  width: 100%;
  padding: 0.65rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  font-size: 0.9rem;
  font-family: var(--font-body);
  background: var(--surface);
  color: var(--text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}

.form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(190, 24, 93, 0.1);
}

.form-control::placeholder {
  color: var(--text-light);
}

textarea.form-control {
  resize: vertical;
  min-height: 90px;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 600px) {
  .form-grid-2 {
    grid-template-columns: 1fr;
  }
}

/* ── Sidebar Logo fix for new SVG viewBox ─────────────────── */
.sidebar-logo img {
  display: block;
  height: 48px;
  width: auto;
  object-fit: contain;
}

/* ============================================================
   RESPONSIVE UTILITIES & IMPROVEMENTS
   ============================================================ */

/* Hide elements on mobile */
@media (max-width: 768px) {
  .hide-mobile {
    display: none !important;
  }
}

/* Show elements only on mobile */
.show-mobile-only {
  display: none;
}

@media (max-width: 768px) {
  .show-mobile-only {
    display: block !important;
  }
}

/* Prevent horizontal scroll */
html,
body {
  overflow-x: hidden;
  max-width: 100%;
}

/* Ensure images don't overflow */
img {
  max-width: 100%;
  height: auto;
}

/* Better spacing for stacked elements on mobile */
@media (max-width: 768px) {
  .stack-mobile>*+* {
    margin-top: 1rem;
  }
}

/* Improve form input touch targets */
@media (max-width: 768px) {

  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="password"],
  input[type="number"],
  select,
  textarea {
    min-height: 44px;
    font-size: 16px;
    /* Prevents zoom on iOS */
  }
}

/* Smooth animations for all transitions */
* {
  transition-duration: 0.2s;
  transition-timing-function: ease;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  /* Keep marquee sections visible when motion is reduced */
  .testimonials-grid {
    animation: none !important;
    transform: none !important;
  }

  .expertise-track {
    animation: none !important;
    transform: none !important;
  }
}

/* ============================================================
   PRINT STYLES
   ============================================================ */
@media print {

  /* Hide non-essential elements */
  .navbar,
  .nav-right,
  .site-footer,
  .btn,
  button:not([class*="inv"]),
  nav,
  header,
  aside,
  .sidebar,
  .admin-topbar,
  .filter-bar,
  .search-wrap,
  #printBar,
  .print-bar,
  .no-print {
    display: none !important;
  }

  /* Ensure clean page */
  html,
  body {
    margin: 0 !important;
    padding: 0 !important;
    background: white !important;
    font-size: 12pt;
    color: black;
    width: 100% !important;
    height: auto !important;
  }

  /* Invoice card - remove shadows and borders */
  .inv-card,
  .invoice-wrap {
    box-shadow: none !important;
    border: none !important;
    margin: 0 !important;
    padding: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
  }

  /* Invoice header */
  .inv-top {
    background: linear-gradient(135deg, #18120e, #2d1020) !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
    padding: 2rem !important;
    margin-bottom: 1rem !important;
  }

  /* Invoice body */
  .inv-body {
    page-break-inside: avoid;
    padding: 1rem 2rem !important;
  }

  /* Information grid */
  .info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    page-break-inside: avoid;
  }

  /* Tables */
  table {
    page-break-inside: auto;
    width: 100% !important;
    margin-bottom: 1.5rem !important;
  }

  tr {
    page-break-inside: avoid;
    page-break-after: auto;
  }

  thead {
    display: table-header-group;
  }

  tfoot {
    display: table-footer-group;
  }

  /* Totals section */
  .tot-wrap,
  .totals-wrap {
    max-width: 260px !important;
    margin-left: auto !important;
    page-break-inside: avoid;
  }

  /* Footer notes */
  .inv-footer-note {
    page-break-inside: avoid;
    margin-top: 2rem !important;
    padding-top: 1rem !important;
  }

  /* Approved stamp */
  .approved-stamp {
    page-break-inside: avoid;
    border: 2px solid var(--success) !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  /* Links - show URLs */
  a[href]:after {
    content: " (" attr(href) ")";
    font-size: 0.8em;
    font-weight: normal;
  }

  /* Prevent orphans */
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    page-break-after: avoid;
    page-break-inside: avoid;
  }

  /* Images */
  img {
    max-width: 100% !important;
    height: auto !important;
    page-break-inside: avoid;
  }
}

/* Mobile print optimization */
@media print and (max-width: 768px) {

  html,
  body {
    font-size: 11pt;
  }

  .inv-top {
    padding: 1.5rem !important;
  }

  .inv-body {
    padding: 1rem !important;
  }

  .info-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  .tot-wrap,
  .totals-wrap {
    max-width: 100% !important;
    margin: 1rem 0 !important;
  }

  table {
    font-size: 10pt;
  }
}

/* ============================================================
   BOOKING PAGE RESPONSIVE STYLES
   ============================================================ */

@media (max-width: 768px) {

  /* Wizard container */
  .wizard-wrap {
    padding: 1rem 1rem 3rem;
  }

  /* Step bar - make more compact */
  .step-bar {
    margin-bottom: 1.5rem;
  }

  .step-item {
    font-size: 0.75rem;
  }

  .step-num {
    width: 26px;
    height: 26px;
    font-size: 0.7rem;
  }

  .step-line {
    width: 40px;
  }

  /* Package cards - single column on mobile */
  .pkg-cards {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  /* Form layout improvements */
  .form-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  /* Make buttons full width on mobile */
  .btn-block-mobile {
    width: 100%;
    display: block;
  }

  /* Price summary card */
  .price-summary-card {
    margin-top: 1rem;
  }

  /* Guest count input */
  #guestsCount {
    font-size: 16px;
    /* Prevent zoom */
  }
}

/* Extra small phones */
@media (max-width: 480px) {
  .wizard-wrap {
    padding: 0.5rem 0.75rem 2rem;
  }

  .step-item span {
    display: none;
    /* Hide text labels, show only numbers */
  }

  .step-line {
    width: 30px;
  }
}

/* ============================================================
   ABOUT US SECTION
   ============================================================ */
.about-us {
  background-color: var(--surface);
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image-container {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-team-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-image-container:hover .about-team-img {
  transform: scale(1.03);
}

.about-content {
  padding: 1rem 0;
}

.about-para {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.about-stats {
  display: flex;
  gap: 3rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.5rem;
}

@media (max-width: 960px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-content {
    text-align: center;
  }

  .about-stats {
    justify-content: center;
  }

  .about-image-container {
    max-width: 600px;
    margin: 0 auto;
  }
}

/* ============================================================
   SERVICES PAGE ENHANCEMENTS
   ============================================================ */
.service-hero {
  position: relative;
  padding: 170px 0 120px;
  text-align: center;
  background-color: #000;
  overflow: hidden;
  color: #fff;
  min-height: 540px;
  display: flex;
  align-items: center;
}

.service-hero .hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.service-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7));
  z-index: 2;
}

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

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  margin: 4rem 0;
}

.s-item {
  background: var(--surface);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--ease);
  display: flex;
  flex-direction: column;
}

.s-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-light);
}

.s-img {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.s-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

.s-content {
  padding: 2rem;
  flex-grow: 1;
}

.s-title {
  font-family: var(--font-head);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text);
}

.s-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.s-cta {
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.s-cta:hover {
  gap: 0.75rem;
}