/* ============================================================
   Royal Feast Catering — Premium Frontend Stylesheet
   Stack: Bootstrap 5 + Custom Design System
   Fonts: Playfair Display (headings) + Plus Jakarta Sans (body)
   ============================================================ */

/* ════════════════════════════════════════════════════════════
   1. CSS DESIGN TOKENS
════════════════════════════════════════════════════════════ */
:root {
  /* Brand */
  --primary:        #c9940e;
  --primary-dark:   #a87a0a;
  --primary-light:  #e8b83a;
  --primary-rgb:    201, 148, 14;
  --secondary:      #16192e;
  --secondary-light:#1f2340;

  /* Neutrals */
  --dark:           #0f1117;
  --text:           #3a3d4a;
  --text-muted:     #6b7280;
  --text-light:     #9ca3af;
  --white:          #ffffff;
  --bg:             #f9f9fb;
  --bg-light:       #f4f5f8;
  --bg-warm:        #fdf9f0;
  --border:         #e5e7ef;
  --border-light:   #f0f1f6;

  /* Radii */
  --radius-sm:  6px;
  --radius:     10px;
  --radius-md:  14px;
  --radius-lg:  20px;
  --radius-xl:  28px;

  /* Shadows */
  --shadow-xs: 0 1px 4px rgba(0,0,0,.06);
  --shadow:    0 4px 20px rgba(0,0,0,.08);
  --shadow-md: 0 8px 32px rgba(0,0,0,.11);
  --shadow-lg: 0 16px 52px rgba(0,0,0,.15);
  --shadow-xl: 0 28px 80px rgba(0,0,0,.18);

  /* Transitions */
  --ease:      cubic-bezier(.4,0,.2,1);
  --transition: all .28s var(--ease);
  --transition-fast: all .18s var(--ease);

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Plus Jakarta Sans', system-ui, sans-serif;

  /* Z-index scale */
  --z-sticky:   1000;
  --z-dropdown: 1020;
  --z-overlay:  1040;
  --z-modal:    1060;
  --z-float:    9000;
}

/* ════════════════════════════════════════════════════════════
   2. BASE & RESETS
════════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; }

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

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "kern" 1, "liga" 1;
}

/* Headings */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-heading);
  color: var(--dark);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.01em;
}

a { color: var(--primary); text-decoration: none; transition: var(--transition-fast); }
a:hover { color: var(--primary-dark); }

img { max-width: 100%; height: auto; }
p { margin-bottom: 1rem; }

/* Brand selection color */
::selection { background: rgba(var(--primary-rgb), .18); color: var(--dark); }

/* Smooth focus rings */
:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

/* ════════════════════════════════════════════════════════════
   3. LAYOUT UTILITIES
════════════════════════════════════════════════════════════ */
.section-padding   { padding: 96px 0; }
.section-padding-sm{ padding: 64px 0; }

/* ════════════════════════════════════════════════════════════
   4. TYPOGRAPHY SCALE
════════════════════════════════════════════════════════════ */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(var(--primary-rgb), .1);
  color: var(--primary-dark);
  border: 1px solid rgba(var(--primary-rgb), .2);
  padding: .3rem 1rem;
  border-radius: 50px;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 1rem;
  font-family: var(--font-body);
}
.section-tag::before {
  content: '';
  display: inline-block;
  width: 5px; height: 5px;
  background: var(--primary);
  border-radius: 50%;
}

.section-title {
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  margin-bottom: 1rem;
  line-height: 1.2;
  letter-spacing: -.02em;
}

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

/* ════════════════════════════════════════════════════════════
   5. BUTTONS
════════════════════════════════════════════════════════════ */
.btn {
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: .01em;
  transition: var(--transition);
  border-radius: var(--radius);
}

.btn-primary {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  padding: .6rem 1.7rem;
  box-shadow: 0 4px 14px rgba(var(--primary-rgb), .3);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(var(--primary-rgb), .42);
}
.btn-primary:active { transform: translateY(0); }

.btn-outline-primary {
  border-color: var(--primary);
  color: var(--primary);
  padding: .6rem 1.7rem;
}
.btn-outline-primary:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(var(--primary-rgb), .35);
}

.btn-outline-light:hover { color: var(--dark); }

/* Social share buttons */
.btn-facebook  { background: #1877f2; border-color: #1877f2; color: #fff; }
.btn-twitter   { background: #1da1f2; border-color: #1da1f2; color: #fff; }
.btn-whatsapp  { background: #25d366; border-color: #25d366; color: #fff; }
.btn-facebook:hover,.btn-twitter:hover,.btn-whatsapp:hover {
  opacity: .88; color: #fff; transform: translateY(-1px);
}

/* ════════════════════════════════════════════════════════════
   6. TOP BAR
════════════════════════════════════════════════════════════ */
.topbar {
  background: var(--secondary);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.topbar-link {
  color: rgba(255,255,255,.72);
  font-size: .82rem;
  letter-spacing: .01em;
  transition: var(--transition-fast);
}
.topbar-link:hover { color: var(--primary-light); }
.topbar-link i { opacity: .8; }

.topbar .social-link {
  width: 28px; height: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.7);
  font-size: .72rem;
  transition: var(--transition-fast);
}
.topbar .social-link:hover { background: var(--primary); color: #fff; }

/* ════════════════════════════════════════════════════════════
   7. NAVIGATION
════════════════════════════════════════════════════════════ */
.site-header {
  background: rgba(255,255,255,.98);
  box-shadow: 0 1px 0 var(--border), 0 4px 24px rgba(0,0,0,.06);
  z-index: var(--z-sticky);
  transition: box-shadow .3s var(--ease), background .3s var(--ease);
}
.site-header.scrolled {
  box-shadow: 0 2px 0 var(--border), 0 8px 32px rgba(0,0,0,.1);
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.site-header .navbar { background: transparent !important; }

.site-header .nav-link {
  color: var(--text) !important;
  font-weight: 500;
  font-size: .9rem;
  padding: 1.5rem .9rem !important;
  position: relative;
  letter-spacing: .01em;
  transition: color .2s var(--ease);
}
.site-header .nav-link::after {
  content: '';
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 0; height: 2.5px;
  background: var(--primary);
  border-radius: 2px;
  transition: width .25s var(--ease);
}
.site-header .nav-link:hover::after,
.site-header .nav-link.active::after { width: 65%; }
.site-header .nav-link:hover,
.site-header .nav-link.active { color: var(--primary) !important; }

.nav-cta {
  padding: .5rem 1.4rem !important;
  font-size: .88rem !important;
  border-radius: 50px !important;
  margin-left: .5rem;
  font-weight: 700 !important;
}
.nav-cta::after { display: none !important; }

/* Logo text */
.text-logo { display: flex; flex-direction: column; line-height: 1.1; }
.logo-primary {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -.01em;
}
.logo-secondary {
  font-family: var(--font-body);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* Dropdown */
.dropdown-menu {
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-md);
  padding: .4rem;
  margin-top: .5rem !important;
}
.dropdown-item {
  border-radius: var(--radius-sm);
  padding: .55rem 1rem;
  font-size: .88rem;
  color: var(--text);
  font-weight: 500;
  transition: var(--transition-fast);
}
.dropdown-item:hover { background: rgba(var(--primary-rgb), .08); color: var(--primary); }
.dropdown-item i { width: 18px; opacity: .7; }
.dropdown-divider { margin: .3rem .4rem; border-color: var(--border-light); }
.dropdown-menu-animated { animation: fadeInDown .18s ease; }
@keyframes fadeInDown { from{opacity:0;transform:translateY(-6px)} to{opacity:1;transform:translateY(0)} }

/* Mobile nav */
.mobile-nav { width: 300px !important; }
.mobile-nav-links .nav-link {
  padding: .9rem 1.2rem;
  border-bottom: 1px solid var(--border-light);
  color: var(--dark);
  font-size: .93rem;
  font-weight: 500;
}
.mobile-nav-links .nav-link.active,
.mobile-nav-links .nav-link:hover { color: var(--primary); }
.mobile-nav-links .nav-link i { width: 22px; opacity: .7; }
.mobile-social { padding-top: 1rem; border-top: 1px solid var(--border-light); }

/* Search overlay */
.search-toggle { color: var(--text); font-size: 1rem; cursor: pointer; padding: .35rem; }
.search-overlay {
  position: fixed; inset: 0;
  background: rgba(10,10,26,.94);
  z-index: var(--z-overlay);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .28s var(--ease);
  backdrop-filter: blur(8px);
}
.search-overlay.active { opacity: 1; pointer-events: auto; }
.search-form { width: 100%; max-width: 560px; }
.search-input {
  background: transparent;
  border: none;
  border-bottom: 2px solid rgba(255,255,255,.35);
  border-radius: 0;
  color: #fff;
  font-size: 1.6rem;
  font-family: var(--font-body);
  padding: 1rem .25rem;
  width: 100%;
}
.search-input:focus { box-shadow: none; background: transparent; color: #fff; border-color: var(--primary); }
.search-input::placeholder { color: rgba(255,255,255,.38); }
.search-close {
  position: absolute; top: 24px; right: 28px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%; width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1rem; cursor: pointer;
  transition: var(--transition-fast);
}
.search-close:hover { background: rgba(255,255,255,.2); }

/* ════════════════════════════════════════════════════════════
   8. HERO SLIDER
════════════════════════════════════════════════════════════ */
.hero-slider { position: relative; height: 100vh; min-height: 600px; max-height: 960px; overflow: hidden; }
.hero-swiper, .hero-slide { height: 100% !important; }
.hero-bg-image {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 6.5s var(--ease);
}
.swiper-slide-active .hero-bg-image { transform: scale(1.05); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    155deg,
    rgba(10,10,26,.78) 0%,
    rgba(10,10,26,.45) 55%,
    rgba(10,10,26,.68) 100%
  );
}
.hero-content { position: relative; z-index: 2; max-width: 720px; }

.hero-subtitle {
  display: inline-flex; align-items: center; gap: .5rem;
  color: var(--primary-light);
  font-size: .78rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  margin-bottom: 1rem;
  font-family: var(--font-body);
}
.hero-subtitle::before {
  content: ''; display: inline-block;
  width: 24px; height: 1.5px;
  background: var(--primary-light);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  color: #fff; font-weight: 800;
  line-height: 1.07; letter-spacing: -.02em;
  margin-bottom: 1.25rem;
}

.hero-desc {
  color: rgba(255,255,255,.82);
  font-size: 1.08rem;
  margin-bottom: 2.2rem;
  max-width: 500px;
  line-height: 1.75;
}

.btn-hero {
  padding: .85rem 2.4rem;
  font-size: .98rem;
  border-radius: 50px;
  font-weight: 700;
}

/* Swiper controls */
.hero-pagination { bottom: 34px !important; }
.hero-pagination .swiper-pagination-bullet {
  width: 8px; height: 8px;
  background: rgba(255,255,255,.5); opacity: 1;
  transition: all .3s;
}
.hero-pagination .swiper-pagination-bullet-active {
  background: var(--primary); width: 32px; border-radius: 4px;
}
.hero-prev, .hero-next {
  color: #fff !important;
  background: rgba(255,255,255,.12) !important;
  border: 1px solid rgba(255,255,255,.2) !important;
  border-radius: 50% !important;
  width: 50px !important; height: 50px !important;
  backdrop-filter: blur(8px);
  transition: background .2s !important;
}
.hero-prev:hover, .hero-next:hover { background: rgba(var(--primary-rgb), .7) !important; }
.hero-prev::after, .hero-next::after { display: none; }
.hero-prev i, .hero-next i { font-size: 1rem; }
.hero-prev { left: 24px !important; }
.hero-next { right: 24px !important; }

.scroll-down-arrow {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  width: 44px; height: 44px; border: 2px solid rgba(255,255,255,.4); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; z-index: 10; animation: bounceDown 1.8s ease infinite;
}
.scroll-down-arrow:hover { border-color: var(--primary); color: var(--primary); }
@keyframes bounceDown {
  0%,100%{ transform: translateX(-50%) translateY(0); }
  50%    { transform: translateX(-50%) translateY(10px); }
}

/* ════════════════════════════════════════════════════════════
   9. WELCOME / ABOUT SECTION
════════════════════════════════════════════════════════════ */
.welcome-image-wrapper { position: relative; padding: 20px 20px 40px; }
.welcome-img-main img {
  width: 100%; border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.experience-badge {
  position: absolute; bottom: 0; right: -5px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff; border-radius: var(--radius-md);
  padding: 1.1rem 1.6rem; text-align: center;
  box-shadow: 0 10px 30px rgba(var(--primary-rgb), .45);
  min-width: 110px;
}
.experience-badge .years { display: block; font-size: 2.2rem; font-weight: 800; line-height: 1; font-family: var(--font-heading); }
.experience-badge .label { display: block; font-size: .68rem; font-weight: 600; letter-spacing: .06em; opacity: .88; margin-top: .2rem; }

.stat-box {
  padding: 1.3rem 1rem;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  text-align: center;
  border: 1px solid var(--border-light);
  transition: var(--transition);
}
.stat-box:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.stat-number {
  font-family: var(--font-heading);
  font-size: 2.1rem; font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.stat-label {
  font-size: .68rem; color: var(--text-muted); font-weight: 600;
  text-transform: uppercase; letter-spacing: .1em; margin-top: .35rem;
}

/* About image placeholder */
.about-img-placeholder {
  width: 100%; min-height: 380px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--bg-warm) 0%, #fff 100%);
  border: 2px dashed var(--border);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
}
.about-img-placeholder .placeholder-logo-img { max-height: 140px; max-width: 80%; object-fit: contain; }
.about-img-placeholder .placeholder-text-logo { text-align: center; padding: 2rem; }
.about-img-placeholder .placeholder-text-logo .logo-primary { display: block; font-size: clamp(2rem,5vw,3.5rem); }
.about-img-placeholder .placeholder-text-logo .logo-secondary { display: block; font-size: .8rem; font-weight: 700; letter-spacing: .2em; color: var(--text-light); text-transform: uppercase; margin-top: .4rem; }

/* ════════════════════════════════════════════════════════════
   10. FEATURES / WHY CHOOSE US
════════════════════════════════════════════════════════════ */
.bg-light-pattern { background: var(--bg-light); }

.feature-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.75rem;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}
.feature-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); border-color: rgba(var(--primary-rgb),.2); }
.feature-icon-wrap {
  width: 76px; height: 76px;
  background: rgba(var(--primary-rgb), .1);
  border-radius: 22px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.35rem;
  font-size: 1.7rem; color: var(--primary);
  transition: var(--transition);
  border: 1px solid rgba(var(--primary-rgb), .15);
}
.feature-card:hover .feature-icon-wrap { background: var(--primary); color: #fff; transform: scale(1.08) rotate(-4deg); border-color: transparent; }
.feature-title { font-size: 1.08rem; margin-bottom: .55rem; color: var(--dark); }
.feature-desc { color: var(--text-muted); font-size: .88rem; line-height: 1.65; margin: 0; }

/* ════════════════════════════════════════════════════════════
   11. SERVICE CARDS
════════════════════════════════════════════════════════════ */
.service-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
  border: 1px solid var(--border-light);
  transition: var(--transition);
}
.service-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); }

.service-img-wrap { position: relative; overflow: hidden; aspect-ratio: 4/3; }
.service-img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ease); }
.service-card:hover .service-img { transform: scale(1.07); }

.service-overlay {
  position: absolute; inset: 0;
  background: rgba(10,10,26,.55);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .28s var(--ease);
}
.service-card:hover .service-overlay { opacity: 1; }

.service-cat-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--primary); color: #fff;
  padding: .22rem .85rem; border-radius: 50px; font-size: .72rem; font-weight: 700;
  letter-spacing: .04em;
}
.service-body { padding: 1.5rem 1.6rem; }
.service-icon {
  width: 44px; height: 44px;
  background: rgba(var(--primary-rgb), .1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); font-size: 1rem; margin-bottom: .9rem;
}
.service-title { font-size: 1.12rem; margin-bottom: .5rem; color: var(--dark); }
.service-desc { color: var(--text-muted); font-size: .88rem; margin-bottom: 1rem; line-height: 1.65; }
.service-link { color: var(--primary); font-weight: 700; font-size: .88rem; display: inline-flex; align-items: center; gap: .35rem; }
.service-link:hover { color: var(--primary-dark); gap: .55rem; }

/* ════════════════════════════════════════════════════════════
   12. PACKAGES / PRICING
════════════════════════════════════════════════════════════ */
.bg-dark-pattern { background: linear-gradient(155deg, #12152a 0%, #1a1d38 100%); }

.package-card, .package-card-full {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
}
.package-card:hover, .package-card-full:hover { transform: translateY(-7px); box-shadow: var(--shadow-xl); }
.package-featured {
  border: 2.5px solid var(--primary);
  transform: scale(1.03);
  box-shadow: 0 12px 40px rgba(var(--primary-rgb), .22);
}

.package-badge {
  position: absolute; top: 16px; right: 16px; z-index: 2;
  background: var(--primary); color: #fff; padding: .25rem 1rem; border-radius: 50px;
  font-size: .7rem; font-weight: 800; letter-spacing: .05em;
}

.package-header {
  background: linear-gradient(135deg, var(--pkg-color, var(--primary)) 0%, color-mix(in srgb, var(--pkg-color, var(--primary)) 65%, black) 100%);
  color: #fff; padding: 2.5rem 1.75rem; text-align: center;
}
.package-name { color: #fff; font-size: 1.3rem; margin-bottom: .9rem; letter-spacing: -.01em; }
.package-price { display: flex; align-items: baseline; justify-content: center; gap: .1rem; }
.package-price .currency { font-size: 1.4rem; font-weight: 700; opacity: .88; }
.package-price .amount { font-size: 3.2rem; font-weight: 800; font-family: var(--font-heading); line-height: 1; }
.package-unit { color: rgba(255,255,255,.72); font-size: .78rem; margin-top: .4rem; }
.package-body { padding: 1.6rem; }

.package-features, .package-features-list { list-style: none; padding: 0; margin: 0; }
.package-features li, .package-features-list li {
  display: flex; align-items: center; gap: .65rem;
  padding: .55rem 0; border-bottom: 1px solid var(--border-light); font-size: .9rem;
}
.package-features li:last-child, .package-features-list li:last-child { border-bottom: none; }
.package-features .included { color: var(--text); }
.package-features .excluded { color: var(--text-light); text-decoration: line-through; }
.package-features .included .fa-check-circle { color: #22c55e; }
.package-features .excluded .fa-times-circle { color: #ef4444; }

/* ════════════════════════════════════════════════════════════
   13. ENQUIRY SECTION
════════════════════════════════════════════════════════════ */
.enquiry-section { background: var(--bg-light); }
.enquiry-box { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-xl); }
.enquiry-info-col { background: linear-gradient(155deg, var(--primary) 0%, var(--primary-dark) 100%); }
.enquiry-info-list { list-style: none; padding: 0; }
.enquiry-info-list li { display: flex; align-items: flex-start; gap: .8rem; margin-bottom: 1.1rem; color: rgba(255,255,255,.9); font-size: .95rem; }
.enquiry-info-list .fa-check-circle { color: rgba(255,255,255,.65); font-size: 1.1rem; margin-top: .15rem; flex-shrink: 0; }
.enquiry-form-col { background: #fff; }

/* ════════════════════════════════════════════════════════════
   14. TESTIMONIALS
════════════════════════════════════════════════════════════ */
.testimonials-swiper { padding-bottom: 56px !important; }

.testimonial-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.1rem;
  box-shadow: var(--shadow-md);
  margin: 10px;
  height: auto !important;
  position: relative;
  border: 1px solid var(--border-light);
  transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.testimonial-card::before {
  content: '\201C'; font-family: Georgia;
  font-size: 5.5rem; color: var(--primary);
  position: absolute; top: -8px; left: 18px;
  opacity: .15; line-height: 1; pointer-events: none;
}
.testimonial-stars { color: #f59e0b; margin-bottom: 1rem; font-size: .95rem; letter-spacing: .05em; }
.testimonial-text { font-style: italic; color: var(--text); margin-bottom: 1.6rem; line-height: 1.8; font-size: .95rem; }
.testimonial-client { display: flex; align-items: center; gap: 1rem; padding-top: 1.1rem; border-top: 1px solid var(--border-light); }
.client-avatar { width: 52px; height: 52px; border-radius: 50%; overflow: hidden; flex-shrink: 0; border: 2px solid rgba(var(--primary-rgb), .2); }
.client-avatar img { width: 100%; height: 100%; object-fit: cover; }
.avatar-initial {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 1.2rem; font-family: var(--font-heading);
}
.client-name { font-weight: 700; color: var(--dark); font-size: .95rem; }
.client-role { font-size: .8rem; color: var(--text-muted); margin-top: .1rem; }
.client-event { font-size: .75rem; color: var(--primary); margin-top: .25rem; font-weight: 600; }
.testimonials-pagination .swiper-pagination-bullet { background: var(--border); opacity: 1; }
.testimonials-pagination .swiper-pagination-bullet-active { background: var(--primary) !important; width: 24px; border-radius: 3px; }

/* ════════════════════════════════════════════════════════════
   15. BLOG CARDS
════════════════════════════════════════════════════════════ */
.blog-card {
  border-radius: var(--radius-lg); overflow: hidden; background: #fff;
  box-shadow: var(--shadow); border: 1px solid var(--border-light); transition: var(--transition);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-img-wrap { position: relative; overflow: hidden; aspect-ratio: 16/9; }
.blog-img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.blog-card:hover .blog-img { transform: scale(1.06); }
.blog-category {
  position: absolute; top: 14px; left: 14px;
  background: var(--primary); color: #fff; padding: .22rem .9rem; border-radius: 50px; font-size: .72rem; font-weight: 700;
}
.blog-body { padding: 1.5rem; }
.blog-meta { display: flex; gap: 1rem; font-size: .78rem; color: var(--text-light); margin-bottom: .8rem; flex-wrap: wrap; }
.blog-meta i { color: var(--primary); opacity: .75; }
.blog-title { font-size: 1.05rem; margin-bottom: .55rem; line-height: 1.4; }
.blog-title a { color: var(--dark); }
.blog-title a:hover { color: var(--primary); }
.blog-excerpt { font-size: .87rem; color: var(--text-muted); margin-bottom: 1rem; line-height: 1.65; }
.blog-read-more { color: var(--primary); font-weight: 700; font-size: .87rem; display: inline-flex; align-items: center; gap: .35rem; }
.blog-read-more:hover { color: var(--primary-dark); gap: .55rem; }

/* Blog list (listing page) */
.blog-list-card {
  background: #fff; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid var(--border-light);
  transition: var(--transition);
}
.blog-list-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.blog-list-img-wrap { flex-shrink: 0; width: 260px; overflow: hidden; }
.blog-list-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s var(--ease); }
.blog-list-card:hover .blog-list-img-wrap img { transform: scale(1.05); }
.blog-list-body { padding: 1.6rem; display: flex; flex-direction: column; }
.blog-list-title { font-size: 1.15rem; margin-bottom: .6rem; line-height: 1.35; }
.blog-list-title a { color: var(--dark); }
.blog-list-title a:hover { color: var(--primary); }
.blog-list-excerpt { color: var(--text-muted); font-size: .9rem; line-height: 1.65; }
.blog-cat-tag { background: rgba(var(--primary-rgb),.1); color: var(--primary); padding: .18rem .75rem; border-radius: 50px; font-size: .72rem; font-weight: 700; }
.blog-stats { font-size: .8rem; color: var(--text-light); }
@media(max-width:768px){
  .blog-list-img-wrap { width: 100%; height: 200px; }
  .blog-list-card { flex-direction: column !important; }
}

/* ════════════════════════════════════════════════════════════
   16. TEAM CARDS
════════════════════════════════════════════════════════════ */
.team-card { border-radius: var(--radius-lg); overflow: hidden; background: #fff; box-shadow: var(--shadow); border: 1px solid var(--border-light); transition: var(--transition); }
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-img-wrap { position: relative; overflow: hidden; aspect-ratio: 3/4; }
.team-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.team-card:hover .team-img-wrap img { transform: scale(1.06); }
.team-avatar-placeholder { width: 100%; height: 100%; background: var(--bg-light); display: flex; align-items: center; justify-content: center; font-size: 4rem; color: var(--text-light); }
.team-social-overlay {
  position: absolute; inset: 0;
  background: rgba(var(--primary-rgb), .92);
  display: flex; align-items: center; justify-content: center; gap: .85rem;
  opacity: 0; transition: opacity .3s var(--ease);
}
.team-card:hover .team-social-overlay { opacity: 1; }
.team-social-overlay a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.9); display: flex; align-items: center; justify-content: center;
  color: var(--primary); font-size: .9rem; transition: var(--transition-fast);
  transform: translateY(8px); opacity: 0;
}
.team-card:hover .team-social-overlay a { transform: translateY(0); opacity: 1; }
.team-social-overlay a:hover { background: var(--dark); color: #fff; }
.team-info { padding: 1.3rem; text-align: center; }
.team-name { font-size: 1.02rem; margin-bottom: .25rem; color: var(--dark); }
.team-role { font-size: .8rem; color: var(--primary); font-weight: 700; letter-spacing: .03em; }

/* ════════════════════════════════════════════════════════════
   17. FAQ ACCORDION
════════════════════════════════════════════════════════════ */
.faq-accordion .faq-item { border: none; border-bottom: 1px solid var(--border-light); }
.faq-accordion .faq-item:first-child { border-top: 1px solid var(--border-light); }
.faq-accordion .accordion-button {
  font-family: var(--font-body); font-weight: 600; font-size: .95rem;
  color: var(--dark); background: #fff; box-shadow: none !important;
  padding: 1.2rem 1rem; gap: .75rem;
}
.faq-accordion .accordion-button:not(.collapsed) { color: var(--primary); background: rgba(var(--primary-rgb),.04); }
.faq-accordion .accordion-button::after { opacity: .5; }
.faq-accordion .accordion-button:not(.collapsed)::after { filter: invert(55%) sepia(90%) hue-rotate(15deg) saturate(120%); opacity: 1; }
.faq-accordion .accordion-body { font-size: .93rem; color: var(--text-muted); line-height: 1.75; padding: .75rem 1rem 1.25rem 3.6rem; }
.faq-num { flex-shrink: 0; width: 28px; height: 28px; background: var(--primary); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .72rem; font-weight: 800; }

/* ════════════════════════════════════════════════════════════
   18. PAGE BANNERS
════════════════════════════════════════════════════════════ */
.page-banner {
  position: relative; padding: 110px 0 70px;
  background-size: cover; background-position: center;
  min-height: 280px; display: flex; align-items: center;
}
.page-banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(155deg, rgba(10,10,26,.84) 0%, rgba(10,10,26,.62) 100%);
}
.page-banner .container { position: relative; z-index: 2; }
.page-banner-title { font-size: clamp(2rem, 5vw, 3.2rem); color: #fff; margin-bottom: .75rem; font-weight: 800; }
.page-breadcrumb { margin: 0; }
.page-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.4); }
.page-breadcrumb .breadcrumb-item a { color: rgba(255,255,255,.75); }
.page-breadcrumb .breadcrumb-item a:hover { color: var(--primary-light); }
.page-breadcrumb .breadcrumb-item.active { color: var(--primary-light); }

/* ════════════════════════════════════════════════════════════
   19. GALLERY
════════════════════════════════════════════════════════════ */
.gallery-tabs-nav { border-bottom: 1px solid var(--border); background: #fff; }
.gallery-nav-link { font-weight: 700; color: var(--text-muted); padding: .65rem 0; border-bottom: 2.5px solid transparent; font-size: .9rem; transition: var(--transition-fast); }
.gallery-nav-link:hover { color: var(--dark); }
.gallery-nav-link.active { color: var(--primary); border-bottom-color: var(--primary); }

.album-card-link { display: block; text-decoration: none; }
.album-card { border-radius: var(--radius-lg); overflow: hidden; background: #fff; box-shadow: var(--shadow); border: 1px solid var(--border-light); transition: var(--transition); }
.album-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.album-img-wrap { position: relative; overflow: hidden; aspect-ratio: 4/3; }
.album-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.album-card:hover .album-img-wrap img { transform: scale(1.06); }
.album-placeholder { width: 100%; height: 100%; background: var(--bg-light); display: flex; align-items: center; justify-content: center; font-size: 3rem; color: var(--text-light); }
.album-overlay { position: absolute; inset: 0; background: rgba(var(--primary-rgb), .88); opacity: 0; transition: opacity .3s var(--ease); display: flex; align-items: center; justify-content: center; }
.album-card:hover .album-overlay { opacity: 1; }
.album-overlay-content { text-align: center; color: #fff; }
.album-count-badge { position: absolute; top: 12px; right: 12px; background: rgba(10,10,26,.65); color: #fff; padding: .22rem .85rem; border-radius: 50px; font-size: .72rem; font-weight: 600; backdrop-filter: blur(4px); }
.album-info { padding: 1.1rem 1.2rem; }
.album-name { font-size: 1rem; margin-bottom: .3rem; color: var(--dark); font-weight: 700; }
.album-meta { display: flex; flex-wrap: wrap; gap: .4rem; }

/* Masonry */
.gallery-masonry { columns: 3; gap: .85rem; }
.masonry-item { break-inside: avoid; margin-bottom: .85rem; }
.masonry-img-wrap { position: relative; overflow: hidden; border-radius: var(--radius-md); }
.masonry-img { width: 100%; height: auto; display: block; transition: transform .42s var(--ease); }
.masonry-overlay { position: absolute; inset: 0; background: rgba(10,10,26,.45); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity .28s; color: #fff; font-size: 1.5rem; }
.masonry-img-wrap:hover .masonry-img { transform: scale(1.04); }
.masonry-img-wrap:hover .masonry-overlay { opacity: 1; }
@media(max-width:768px){ .gallery-masonry { columns: 2; } }
@media(max-width:480px){ .gallery-masonry { columns: 1; } }

/* Thumb grid */
.gallery-thumb-wrap { position: relative; overflow: hidden; border-radius: var(--radius-md); aspect-ratio: 1; }
.gallery-thumb { width: 100%; height: 100%; object-fit: cover; transition: transform .42s var(--ease); display: block; }
.gallery-thumb-overlay { position: absolute; inset: 0; background: rgba(10,10,26,.45); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity .28s; color: #fff; font-size: 1.2rem; }
.gallery-thumb-wrap:hover .gallery-thumb { transform: scale(1.05); }
.gallery-thumb-wrap:hover .gallery-thumb-overlay { opacity: 1; }

/* Video cards */
.video-card { border-radius: var(--radius-lg); overflow: hidden; background: #fff; box-shadow: var(--shadow); border: 1px solid var(--border-light); transition: var(--transition); }
.video-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.video-thumb-wrap { position: relative; aspect-ratio: 16/9; overflow: hidden; background: var(--dark); }
.video-thumb { width: 100%; height: 100%; object-fit: cover; opacity: .85; transition: opacity .3s; }
.video-card:hover .video-thumb { opacity: 1; }
.video-play-btn { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.video-play-btn i {
  width: 64px; height: 64px; background: rgba(255,255,255,.92); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: #ff0000;
  transition: transform .25s, box-shadow .25s;
  box-shadow: 0 4px 20px rgba(0,0,0,.25);
}
.video-play-btn:hover i { transform: scale(1.12); box-shadow: 0 8px 30px rgba(0,0,0,.35); }
.video-duration-badge { position: absolute; top: 12px; right: 12px; background: rgba(10,10,26,.7); color: #fff; padding: .22rem .85rem; border-radius: 50px; font-size: .72rem; font-weight: 600; backdrop-filter: blur(4px); }
.video-info { padding: 1.1rem 1.2rem; }
.video-title { font-size: .97rem; color: var(--dark); font-weight: 700; margin-bottom: .4rem; }
.video-desc { font-size: .84rem; color: var(--text-muted); margin: 0; }

/* ════════════════════════════════════════════════════════════
   20. CONTACT PAGE
════════════════════════════════════════════════════════════ */
.contact-info-section { background: #fff; }
.contact-info-card {
  background: #fff; border-radius: var(--radius-lg); padding: 2.1rem;
  box-shadow: var(--shadow); border: 1px solid var(--border-light); transition: var(--transition);
}
.contact-info-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(var(--primary-rgb),.2); }
.ci-icon { width: 64px; height: 64px; background: rgba(var(--primary-rgb),.1); border-radius: 18px; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.1rem; font-size: 1.5rem; color: var(--primary); }
.ci-title { font-size: 1.02rem; margin-bottom: .5rem; color: var(--dark); }
.ci-value { color: var(--text-muted); font-size: .9rem; }
a.ci-value { color: var(--primary); font-weight: 600; }
a.ci-value:hover { color: var(--primary-dark); }

.map-embed { background: var(--bg-light); border-radius: var(--radius-lg); overflow: hidden; }
.map-embed iframe { width: 100%; height: 100%; border: none; display: block; }

/* Contact form */
.contact-form-wrap .form-control,
.contact-form-wrap .form-select {
  border-color: var(--border);
  border-radius: var(--radius-md);
  padding: .75rem 1rem;
  font-size: .9rem;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg-light);
  transition: var(--transition-fast);
}
.contact-form-wrap .form-control:focus,
.contact-form-wrap .form-select:focus {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb),.13);
}
.contact-form-wrap .form-label { font-weight: 600; font-size: .85rem; color: var(--text); margin-bottom: .45rem; }
.business-hours-box { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow); border: 1px solid var(--border-light); }
.hours-row { font-size: .9rem; color: var(--text-muted); }

/* ════════════════════════════════════════════════════════════
   21. BLOG SIDEBAR WIDGETS
════════════════════════════════════════════════════════════ */
.sidebar-widget { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow); overflow: hidden; border: 1px solid var(--border-light); }
.widget-header { background: var(--secondary); color: #fff; padding: .95rem 1.3rem; }
.widget-header h5 { margin: 0; font-size: .92rem; color: #fff; font-family: var(--font-body); font-weight: 700; }
.widget-body { padding: 1.2rem; }

.sidebar-cat-list { list-style: none; padding: 0; margin: 0; }
.sidebar-cat-list li a {
  display: flex; justify-content: space-between; align-items: center;
  padding: .65rem .5rem; border-bottom: 1px solid var(--border-light);
  color: var(--text); font-size: .88rem; font-weight: 500;
  transition: var(--transition-fast);
}
.sidebar-cat-list li:last-child a { border-bottom: none; }
.sidebar-cat-list li a:hover, .sidebar-cat-list li a.active { color: var(--primary); padding-left: .8rem; }

.recent-post-item .rp-img { width: 72px; height: 56px; border-radius: var(--radius-sm); overflow: hidden; flex-shrink: 0; }
.recent-post-item .rp-img img { width: 100%; height: 100%; object-fit: cover; }
.rp-title { font-size: .84rem; font-weight: 700; color: var(--dark); display: block; line-height: 1.38; }
.rp-title:hover { color: var(--primary); }
.rp-date { font-size: .74rem; color: var(--text-light); margin-top: .25rem; }

.tag-pill { background: var(--bg-light); color: var(--text-muted); border-radius: 50px; padding: .28rem .9rem; font-size: .76rem; font-weight: 600; border: 1px solid var(--border); transition: var(--transition-fast); }
.tag-pill:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ════════════════════════════════════════════════════════════
   22. BLOG DETAIL
════════════════════════════════════════════════════════════ */
.blog-detail-meta { font-size: .84rem; color: var(--text-muted); }
.blog-detail-meta span { display: inline-flex; align-items: center; gap: .3rem; }
.blog-detail-meta i { color: var(--primary); }

.rich-content { font-size: 1.02rem; line-height: 1.88; color: var(--text); }
.rich-content > *:first-child { margin-top: 0; }
.rich-content h2, .rich-content h3, .rich-content h4 { margin-top: 2.2rem; margin-bottom: .75rem; color: var(--dark); }
.rich-content h2 { font-size: 1.65rem; }
.rich-content h3 { font-size: 1.3rem; }
.rich-content p { margin-bottom: 1.1rem; }
.rich-content ul, .rich-content ol { padding-left: 1.5rem; margin-bottom: 1.1rem; }
.rich-content li { margin-bottom: .4rem; }
.rich-content img { border-radius: var(--radius-md); margin: 1.2rem 0; box-shadow: var(--shadow); width: 100%; }
.rich-content blockquote {
  border-left: 4px solid var(--primary);
  padding: 1rem 1.5rem;
  margin: 1.8rem 0;
  background: rgba(var(--primary-rgb),.06);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic; color: var(--text-muted);
}
.rich-content a { color: var(--primary); text-decoration: underline; text-underline-offset: 3px; }
.rich-content a:hover { color: var(--primary-dark); }
.rich-content hr { border-color: var(--border); margin: 2rem 0; }

/* Like button */
.like-btn.liked { background: var(--primary); color: #fff; border-color: var(--primary); }
.like-btn.liked:hover { background: var(--primary-dark); }

/* Comment items */
.comment-item .comment-avatar .avatar-initial { font-size: .95rem; width: 44px; height: 44px; }
.comment-text { font-size: .92rem; color: var(--text); line-height: 1.7; }

/* ════════════════════════════════════════════════════════════
   23. CTA SECTION
════════════════════════════════════════════════════════════ */
.cta-section {
  position: relative; padding: 110px 0;
  background: url('../images/cta-bg.jpg') center/cover no-repeat;
  background-color: var(--secondary);
}
.cta-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(155deg, rgba(10,10,26,.91) 0%, rgba(10,10,26,.75) 100%);
}
.cta-title { font-size: clamp(1.9rem, 4vw, 3rem); color: #fff; }
.cta-subtitle { color: rgba(255,255,255,.72); font-size: 1rem; }

/* ════════════════════════════════════════════════════════════
   24. NEWSLETTER
════════════════════════════════════════════════════════════ */
.newsletter-section { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); }
.newsletter-title { color: #fff; font-size: 1.55rem; font-family: var(--font-heading); font-weight: 700; }
.newsletter-subtitle { color: rgba(255,255,255,.82); font-size: .95rem; }
.newsletter-input {
  border-radius: var(--radius) 0 0 var(--radius);
  border: 1.5px solid rgba(255,255,255,.35);
  background: rgba(255,255,255,.15);
  color: #fff;
  padding: .75rem 1.1rem;
  font-family: var(--font-body);
}
.newsletter-input:focus { background: rgba(255,255,255,.22); box-shadow: none; border-color: rgba(255,255,255,.6); color: #fff; }
.newsletter-input::placeholder { color: rgba(255,255,255,.55); }
.newsletter-btn { border-radius: 0 var(--radius) var(--radius) 0; font-weight: 700; padding: .75rem 1.5rem; }

/* ════════════════════════════════════════════════════════════
   25. FOOTER
════════════════════════════════════════════════════════════ */
.site-footer { background: var(--secondary); color: rgba(255,255,255,.65); }
.footer-top { border-bottom: 1px solid rgba(255,255,255,.07); }
.footer-brand { margin-bottom: .6rem; }
.footer-brand .logo-primary { font-size: 1.65rem; color: var(--primary); }
.footer-brand .logo-secondary { color: rgba(255,255,255,.4); }
.footer-tagline { color: rgba(255,255,255,.55); font-size: .88rem; font-style: italic; }
.footer-about { color: rgba(255,255,255,.55); font-size: .87rem; line-height: 1.75; }
.footer-widget-title {
  color: #fff; font-size: .95rem; margin-bottom: 1.3rem;
  font-family: var(--font-body); font-weight: 700;
  position: relative; padding-bottom: .75rem;
}
.footer-widget-title::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 32px; height: 2px; background: var(--primary); border-radius: 2px;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .55rem; }
.footer-links a {
  color: rgba(255,255,255,.55); font-size: .87rem;
  transition: var(--transition-fast);
  display: inline-flex; align-items: center; gap: .4rem;
}
.footer-links a::before {
  content: '→'; opacity: 0; transform: translateX(-6px);
  transition: var(--transition-fast); font-size: .75rem; color: var(--primary);
}
.footer-links a:hover { color: var(--primary-light); }
.footer-links a:hover::before { opacity: 1; transform: translateX(0); }

.footer-contact-list { list-style: none; padding: 0; }
.footer-contact-list li { display: flex; align-items: flex-start; gap: .85rem; margin-bottom: 1rem; }
.footer-contact-list li i { color: var(--primary); margin-top: .2rem; width: 16px; flex-shrink: 0; }
.footer-contact-list a, .footer-contact-list span { color: rgba(255,255,255,.6); font-size: .87rem; transition: var(--transition-fast); }
.footer-contact-list a:hover { color: var(--primary-light); }

.footer-social { display: flex; gap: .55rem; flex-wrap: wrap; }
.footer-social-link {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.65); font-size: .85rem; transition: var(--transition-fast);
}
.footer-social-link:hover { background: var(--primary); color: #fff; border-color: var(--primary); transform: translateY(-2px); }

.footer-bottom { background: rgba(0,0,0,.25); }
.footer-copyright { font-size: .82rem; color: rgba(255,255,255,.45); }
.footer-bottom-links a { color: rgba(255,255,255,.4); font-size: .82rem; margin-left: 1.2rem; transition: var(--transition-fast); }
.footer-bottom-links a:hover { color: var(--primary-light); }

/* ════════════════════════════════════════════════════════════
   26. FLOATING ELEMENTS
════════════════════════════════════════════════════════════ */
/* WhatsApp button */
.whatsapp-float {
  position: fixed; bottom: 88px; right: 24px; z-index: var(--z-float);
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 1.65rem;
  box-shadow: 0 6px 22px rgba(37,211,102,.45);
  animation: pulseWA 2.5s ease infinite;
  transition: transform .2s var(--ease), box-shadow .2s;
}
.whatsapp-float:hover { color: #fff; transform: scale(1.1); box-shadow: 0 8px 28px rgba(37,211,102,.6); }
.wa-tooltip {
  position: absolute; right: 68px; top: 50%; transform: translateY(-50%);
  background: var(--dark); color: #fff; padding: .35rem 1rem; border-radius: 8px;
  font-size: .78rem; font-weight: 600; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: opacity .2s;
}
.wa-tooltip::after {
  content: ''; position: absolute; right: -6px; top: 50%; transform: translateY(-50%);
  border: 6px solid transparent; border-left-color: var(--dark); border-right-width: 0;
}
.whatsapp-float:hover .wa-tooltip { opacity: 1; }
@keyframes pulseWA {
  0%,100% { box-shadow: 0 6px 22px rgba(37,211,102,.45); }
  50%      { box-shadow: 0 6px 32px rgba(37,211,102,.65); }
}

/* Back to top */
.back-to-top {
  position: fixed; bottom: 24px; right: 24px; z-index: var(--z-float);
  width: 46px; height: 46px; border-radius: 12px; border: none;
  background: var(--primary); color: #fff; font-size: .9rem;
  box-shadow: 0 4px 16px rgba(var(--primary-rgb),.38); cursor: pointer;
  opacity: 0; visibility: hidden; transform: translateY(16px); transition: var(--transition);
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--primary-dark); transform: translateY(-3px); box-shadow: 0 8px 22px rgba(var(--primary-rgb),.45); }

/* ════════════════════════════════════════════════════════════
   27. PAGINATION
════════════════════════════════════════════════════════════ */
.pagination .page-link {
  color: var(--primary); border-color: var(--border);
  border-radius: var(--radius-sm) !important;
  margin: 0 2px; font-weight: 600; font-size: .88rem;
  padding: .42rem .78rem; transition: var(--transition-fast);
}
.pagination .page-item.active .page-link { background: var(--primary); border-color: var(--primary); color: #fff; box-shadow: 0 4px 12px rgba(var(--primary-rgb),.3); }
.pagination .page-link:hover { background: rgba(var(--primary-rgb),.1); color: var(--primary); }
.pagination .page-item.disabled .page-link { color: var(--text-light); }

/* ════════════════════════════════════════════════════════════
   28. UTILITY / SMALL COMPONENTS
════════════════════════════════════════════════════════════ */
/* Highlight items */
.highlight-item { background: var(--bg-light); border-radius: var(--radius-md); padding: .85rem 1.1rem; border: 1px solid var(--border-light); }
.highlight-icon { color: var(--primary); font-size: 1.1rem; flex-shrink: 0; }

/* About vision cards */
.about-vision-card {
  background: var(--bg-warm); border-radius: var(--radius-lg);
  padding: 2rem 1.8rem; border-left: 4px solid var(--primary);
  box-shadow: var(--shadow); border-top: 1px solid var(--border-light);
  border-right: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light);
}

/* Enquiry strip */
.enquiry-strip { }

/* ════════════════════════════════════════════════════════════
   29. SERVICE DETAIL — STICKY ENQUIRY WIDGET
════════════════════════════════════════════════════════════ */
.svc-enq-sticky { position: sticky; top: 92px; z-index: 100; }

.svc-enq-card {
  border-radius: 22px; overflow: hidden;
  box-shadow: 0 14px 48px rgba(0,0,0,.14), 0 2px 8px rgba(0,0,0,.06);
  background: #fff; transition: box-shadow .3s;
}
.svc-enq-card:hover { box-shadow: 0 20px 60px rgba(0,0,0,.17), 0 4px 12px rgba(0,0,0,.07); }

.svc-enq-head {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 1.8rem 1.5rem 1.6rem; text-align: center; position: relative; overflow: hidden;
}
.svc-enq-head::before { content:''; position:absolute; top:-30px; right:-30px; width:110px; height:110px; border-radius:50%; background:rgba(255,255,255,.08); }
.svc-enq-head::after  { content:''; position:absolute; bottom:-20px; left:-20px; width:80px; height:80px; border-radius:50%; background:rgba(255,255,255,.06); }
.svc-enq-head-icon { width:58px; height:58px; background:rgba(255,255,255,.22); border-radius:16px; display:flex; align-items:center; justify-content:center; font-size:1.4rem; color:#fff; margin:0 auto .9rem; backdrop-filter:blur(6px); border:1.5px solid rgba(255,255,255,.3); }
.svc-enq-head-title { color:#fff; font-size:1.15rem; font-weight:700; margin:0 0 .2rem; font-family:var(--font-heading); }
.svc-enq-head-sub { color:rgba(255,255,255,.82); font-size:.8rem; margin:0; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }

.svc-enq-body { padding: 1.35rem 1.35rem .75rem; }
.svc-enq-field { position: relative; margin-bottom: .85rem; }
.svc-enq-field-icon { position: absolute; top: 50%; left: 14px; transform: translateY(-50%); color: var(--primary); font-size: .85rem; pointer-events: none; z-index: 2; }
.svc-enq-input { width: 100%; padding: .72rem .9rem .72rem 2.5rem; border: 1.8px solid var(--border); border-radius: 10px; font-size: .87rem; font-family: var(--font-body); color: var(--text); background: #fafbff; outline: none; transition: border-color .2s, box-shadow .2s, background .2s; resize: vertical; line-height: 1.5; }
.svc-enq-input:focus { border-color: var(--primary); background: #fff; box-shadow: 0 0 0 3px rgba(var(--primary-rgb),.14); }
.svc-enq-input::placeholder { color: #b0b8c8; }

.svc-enq-btn { width: 100%; padding: .88rem 1.5rem; background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); color: #fff; border: none; border-radius: 11px; font-weight: 700; font-size: .92rem; font-family: var(--font-body); cursor: pointer; transition: all .25s var(--ease); box-shadow: 0 4px 18px rgba(var(--primary-rgb),.35); letter-spacing: .02em; }
.svc-enq-btn:hover { background: linear-gradient(135deg, var(--primary-dark) 0%, #8a5e08 100%); box-shadow: 0 7px 24px rgba(var(--primary-rgb),.5); transform: translateY(-1px); }
.svc-enq-btn:active { transform: translateY(0); }
.svc-enq-btn:disabled { opacity: .7; cursor: not-allowed; transform: none; }

.svc-enq-msg { margin-top: .7rem; padding: .65rem 1rem; border-radius: 9px; font-size: .84rem; font-weight: 600; }
.svc-enq-msg-ok  { background: rgba(34,197,94,.1);  color: #14532d; border: 1px solid rgba(34,197,94,.28); }
.svc-enq-msg-err { background: rgba(239,68,68,.09); color: #7f1d1d; border: 1px solid rgba(239,68,68,.24); }

.svc-enq-footer { padding: .9rem 1.35rem 1.2rem; border-top: 1px solid var(--border-light); background: #fafbff; }
.svc-enq-footer-label { display: block; font-size: .72rem; color: var(--text-muted); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; margin-bottom: .6rem; }
.svc-enq-quick-btns { display: flex; gap: .55rem; }
.svc-enq-quick-btn { flex: 1; display: flex; align-items: center; justify-content: center; gap: .4rem; padding: .55rem .5rem; border-radius: 9px; font-size: .8rem; font-weight: 700; text-decoration: none; transition: var(--transition-fast); }
.svc-enq-quick-call { background: rgba(var(--primary-rgb),.1); color: var(--primary-dark); border: 1.5px solid rgba(var(--primary-rgb),.28); }
.svc-enq-quick-call:hover { background: var(--primary); color: #fff; border-color: var(--primary); box-shadow: 0 4px 14px rgba(var(--primary-rgb),.4); }
.svc-enq-quick-wa { background: rgba(37,211,102,.1); color: #166534; border: 1.5px solid rgba(37,211,102,.28); }
.svc-enq-quick-wa:hover { background: #25d366; color: #fff; border-color: #25d366; box-shadow: 0 4px 14px rgba(37,211,102,.38); }

.svc-share-card { background: #fff; border-radius: 16px; padding: 1.1rem 1.25rem; box-shadow: var(--shadow); border: 1px solid var(--border-light); }
.svc-share-label { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; color: var(--text-muted); margin-bottom: .75rem; display: block; }
.svc-share-btns { display: flex; gap: .5rem; }
.svc-share-btn { flex: 1; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1rem; color: #fff; text-decoration: none; transition: transform .2s, box-shadow .2s; }
.svc-share-btn:hover { transform: translateY(-2px); color: #fff; box-shadow: 0 6px 18px rgba(0,0,0,.22); }
.svc-share-fb { background: #1877f2; }
.svc-share-tw { background: #1da1f2; }
.svc-share-wa { background: #25d366; }
.svc-share-li { background: #0a66c2; }

@media (max-width:991px) { .svc-enq-sticky { position: static; top: auto; } }

/* ════════════════════════════════════════════════════════════
   30. SERVICE DETAIL — FULL PAGE STYLES
════════════════════════════════════════════════════════════ */
.svc-hero { position: relative; min-height: 440px; display: flex; align-items: flex-end; padding: 90px 0 64px; background-color: var(--secondary); background-size: cover; background-position: center; overflow: hidden; }
.svc-hero--no-img { background: linear-gradient(135deg, #12152a 0%, #1a1d38 100%); }
.svc-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(10,10,26,.52) 0%, rgba(10,10,26,.82) 60%, rgba(10,10,26,.97) 100%); }
.svc-hero-breadcrumb { margin-bottom: 1.5rem; }
.svc-hero-cat { display: inline-flex; align-items: center; background: rgba(var(--primary-rgb),.2); border: 1px solid rgba(var(--primary-rgb),.4); color: var(--primary-light); font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; padding: .35rem 1rem; border-radius: 50px; margin-bottom: .9rem; backdrop-filter: blur(4px); }
.svc-hero-title { font-family: var(--font-heading); font-size: clamp(2rem,5vw,3.6rem); font-weight: 800; color: #fff; line-height: 1.08; margin-bottom: 1rem; max-width: 720px; letter-spacing: -.02em; }
.svc-hero-desc { color: rgba(255,255,255,.78); font-size: 1.05rem; max-width: 580px; margin-bottom: 1.8rem; line-height: 1.75; }
.svc-hero-ctas { display: flex; flex-wrap: wrap; gap: .75rem; }
.svc-hero-cta-primary { display: inline-flex; align-items: center; background: var(--primary); color: #fff; font-weight: 700; font-size: .95rem; padding: .82rem 2rem; border-radius: 50px; text-decoration: none; transition: var(--transition); box-shadow: 0 6px 24px rgba(var(--primary-rgb),.45); }
.svc-hero-cta-primary:hover { background: var(--primary-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 10px 32px rgba(var(--primary-rgb),.55); }
.svc-hero-cta-secondary { display: inline-flex; align-items: center; background: rgba(255,255,255,.1); color: #fff; font-weight: 600; font-size: .9rem; padding: .82rem 1.75rem; border-radius: 50px; border: 1.5px solid rgba(255,255,255,.3); text-decoration: none; transition: var(--transition); backdrop-filter: blur(6px); }
.svc-hero-cta-secondary:hover { background: rgba(255,255,255,.2); color: #fff; border-color: rgba(255,255,255,.6); }

.svc-detail-wrap { padding: 72px 0 48px; }
.svc-section { margin-bottom: 3.5rem; padding-bottom: 3.5rem; border-bottom: 1px solid var(--border-light); }
.svc-section:last-child { border-bottom: none; margin-bottom: 0; }
.svc-section-label { margin-bottom: .55rem; }
.svc-section-title { font-family: var(--font-heading); font-size: clamp(1.65rem,3vw,2.25rem); font-weight: 700; color: var(--dark); margin-bottom: 1.4rem; line-height: 1.2; letter-spacing: -.02em; }
.svc-section-head { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.75rem; }
.svc-section-head-icon { width: 50px; height: 50px; min-width: 50px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.svc-section-head-title { font-size: 1.3rem; font-weight: 700; color: var(--dark); margin: 0 0 .2rem; }
.svc-section-head-sub { font-size: .84rem; color: var(--text-muted); margin: 0; }

.svc-rich-content { font-size: 1.02rem; line-height: 1.88; color: var(--text); }
.svc-rich-content h2,.svc-rich-content h3 { font-family: var(--font-heading); margin-top: 2rem; margin-bottom: .8rem; color: var(--dark); }
.svc-rich-content p { margin-bottom: 1rem; }
.svc-rich-content ul,.svc-rich-content ol { padding-left: 1.4rem; margin-bottom: 1rem; }
.svc-rich-content li { margin-bottom: .4rem; }
.svc-rich-content blockquote { border-left: 4px solid var(--primary); padding: .75rem 1.25rem; margin: 1.5rem 0; background: rgba(var(--primary-rgb),.06); border-radius: 0 var(--radius-md) var(--radius-md) 0; font-style: italic; color: var(--text-muted); }
.svc-lead-text { font-size: 1.05rem; color: var(--text); line-height: 1.8; }

.svc-highlights-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px,1fr)); gap: .8rem; }
.svc-hl-item { display: flex; align-items: center; gap: .9rem; padding: .9rem 1.1rem; background: #f0fdf4; border: 1.5px solid rgba(34,197,94,.16); border-radius: var(--radius-md); transition: var(--transition-fast); }
.svc-hl-item:hover { background: #fff; border-color: rgba(34,197,94,.4); transform: translateY(-2px); box-shadow: 0 4px 16px rgba(34,197,94,.12); }
.svc-hl-icon { width: 34px; height: 34px; min-width: 34px; background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: .78rem; box-shadow: 0 3px 10px rgba(34,197,94,.3); }
.svc-hl-text { font-size: .9rem; font-weight: 600; color: var(--dark); line-height: 1.35; }

.svc-gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); grid-auto-rows: 180px; gap: .75rem; }
.svc-gallery-item { display: block; border-radius: var(--radius-md); overflow: hidden; position: relative; background: var(--bg-light); }
.svc-gallery-item--large { grid-column: span 2; grid-row: span 2; }
.svc-gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .45s var(--ease); }
.svc-gallery-item:hover img { transform: scale(1.07); }
.svc-gallery-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(var(--primary-rgb),.72) 0%, rgba(168,122,10,.88) 100%); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity .3s; }
.svc-gallery-item:hover .svc-gallery-overlay { opacity: 1; }
.svc-gallery-expand { width: 54px; height: 54px; background: rgba(255,255,255,.22); border: 2px solid rgba(255,255,255,.55); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.1rem; backdrop-filter: blur(4px); transform: scale(.8); transition: transform .3s; }
.svc-gallery-item:hover .svc-gallery-expand { transform: scale(1); }
@media(max-width:576px) { .svc-gallery-grid { grid-template-columns: repeat(2,1fr); grid-auto-rows: 140px; } .svc-gallery-item--large { grid-column: span 2; grid-row: span 1; } }

.svc-faq-list { display: flex; flex-direction: column; gap: .55rem; }
.svc-faq-item { border: 1.5px solid var(--border); border-radius: var(--radius-md); overflow: hidden; transition: border-color .2s; }
.svc-faq-item--open { border-color: var(--primary); box-shadow: 0 4px 18px rgba(var(--primary-rgb),.11); }
.svc-faq-q { width: 100%; display: flex; align-items: center; gap: 1rem; padding: 1.1rem 1.25rem; background: none; border: none; text-align: left; cursor: pointer; color: var(--dark); font-family: var(--font-body); font-size: .94rem; font-weight: 600; line-height: 1.4; transition: background .15s; }
.svc-faq-item--open .svc-faq-q { background: rgba(var(--primary-rgb),.05); }
.svc-faq-q:hover { background: var(--bg-light); }
.svc-faq-num { flex-shrink: 0; width: 28px; height: 28px; background: var(--primary); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .72rem; font-weight: 800; }
.svc-faq-item--open .svc-faq-num { background: var(--primary-dark); }
.svc-faq-q-text { flex: 1; }
.svc-faq-arrow { flex-shrink: 0; width: 28px; height: 28px; background: var(--bg-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .72rem; color: var(--text-muted); transition: transform .3s, background .2s; }
.svc-faq-item--open .svc-faq-arrow { transform: rotate(180deg); background: rgba(var(--primary-rgb),.12); color: var(--primary); }
.svc-faq-a { border-top: 1px solid var(--border-light); background: rgba(var(--primary-rgb),.03); }
.svc-faq-a-inner { padding: 1rem 1.25rem 1.1rem 3.3rem; font-size: .9rem; color: var(--text-muted); line-height: 1.75; }

.svc-why-strip { display: grid; grid-template-columns: repeat(2,1fr); gap: .8rem; margin-top: .5rem; }
.svc-why-item { display: flex; align-items: flex-start; gap: .9rem; padding: 1.1rem 1.15rem; background: #fff; border-radius: var(--radius-md); border: 1px solid var(--border-light); box-shadow: var(--shadow-xs); transition: var(--transition-fast); }
.svc-why-item:hover { border-color: rgba(var(--primary-rgb),.3); box-shadow: var(--shadow); transform: translateY(-2px); }
.svc-why-icon { width: 42px; height: 42px; min-width: 42px; background: rgba(var(--primary-rgb),.1); color: var(--primary); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.05rem; }
.svc-why-title { font-weight: 700; font-size: .88rem; color: var(--dark); line-height: 1.3; }
.svc-why-sub   { font-size: .77rem; color: var(--text-muted); margin-top: .15rem; }
@media(max-width:480px){ .svc-why-strip { grid-template-columns: 1fr; } }

.svc-trust-card { display: flex; background: #fff; border-radius: var(--radius-md); box-shadow: var(--shadow); overflow: hidden; margin: 1rem 0; border: 1px solid var(--border-light); }
.svc-trust-item { flex: 1; display: flex; align-items: center; gap: .6rem; padding: 1rem .8rem; justify-content: center; }
.svc-trust-icon { font-size: 1.3rem; color: var(--primary); }
.svc-trust-val { font-weight: 800; font-size: 1.05rem; color: var(--dark); line-height: 1; }
.svc-trust-lbl { font-size: .68rem; color: var(--text-muted); margin-top: .18rem; }
.svc-trust-divider { width: 1px; background: var(--border-light); margin: .75rem 0; }

.svc-related-section { padding: 72px 0; background: var(--bg-light); }
.svc-related-card { display: block; background: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--border-light); text-decoration: none; transition: var(--transition); }
.svc-related-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); }
.svc-related-img { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.svc-related-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .45s var(--ease); }
.svc-related-card:hover .svc-related-img img { transform: scale(1.06); }
.svc-related-overlay { position: absolute; inset: 0; background: rgba(var(--primary-rgb),.85); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: .95rem; opacity: 0; transition: opacity .3s; }
.svc-related-card:hover .svc-related-overlay { opacity: 1; }
.svc-related-cat { position: absolute; top: 12px; left: 12px; background: var(--primary); color: #fff; padding: .2rem .85rem; border-radius: 50px; font-size: .7rem; font-weight: 700; }
.svc-related-body { padding: 1.4rem; }
.svc-related-icon { width: 42px; height: 42px; background: rgba(var(--primary-rgb),.1); color: var(--primary); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: .95rem; margin-bottom: .9rem; }
.svc-related-name { font-size: 1.05rem; font-weight: 700; color: var(--dark); margin-bottom: .5rem; }
.svc-related-desc { font-size: .86rem; color: var(--text-muted); margin-bottom: 1rem; line-height: 1.65; }
.svc-related-link { font-size: .86rem; font-weight: 700; color: var(--primary); display: inline-flex; align-items: center; gap: .35rem; }
.svc-related-card:hover .svc-related-link { color: var(--primary-dark); gap: .55rem; }

.svc-bottom-cta { position: relative; padding: 96px 0; background: url('../images/cta-bg.jpg') center/cover no-repeat; background-color: var(--secondary); }
.svc-bottom-cta-overlay { position: absolute; inset: 0; background: linear-gradient(155deg, rgba(10,10,26,.93) 0%, rgba(10,10,26,.8) 100%); }
.svc-bottom-cta-tag { font-size: .72rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--primary-light); margin-bottom: .6rem; }
.svc-bottom-cta-title { font-family: var(--font-heading); font-size: clamp(1.85rem,4vw,2.9rem); color: #fff; font-weight: 800; margin-bottom: .85rem; letter-spacing: -.02em; }
.svc-bottom-cta-sub { color: rgba(255,255,255,.68); font-size: 1rem; max-width: 560px; margin: 0 auto 2rem; line-height: 1.75; }
.svc-bottom-cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.svc-bottom-cta-btn-primary { display: inline-flex; align-items: center; background: var(--primary); color: #fff; font-weight: 700; padding: .9rem 2.3rem; border-radius: 50px; text-decoration: none; box-shadow: 0 6px 24px rgba(var(--primary-rgb),.45); transition: var(--transition); }
.svc-bottom-cta-btn-primary:hover { background: var(--primary-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 10px 32px rgba(var(--primary-rgb),.55); }
.svc-bottom-cta-btn-secondary { display: inline-flex; align-items: center; background: transparent; color: #fff; font-weight: 600; padding: .9rem 2rem; border-radius: 50px; text-decoration: none; border: 2px solid rgba(255,255,255,.38); transition: var(--transition); }
.svc-bottom-cta-btn-secondary:hover { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.65); }

/* ════════════════════════════════════════════════════════════
   31. CLIENT LOGOS
════════════════════════════════════════════════════════════ */
.logos-section { background: var(--bg-light); padding: 52px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); overflow: hidden; }
.logos-section-label { text-align: center; font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--text-light); margin-bottom: 2rem; }
.logos-track-wrap { position: relative; overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.logos-track { display: flex; align-items: center; animation: logoScroll 32s linear infinite; width: max-content; }
.logos-track:hover { animation-play-state: paused; }
@keyframes logoScroll { 0%{ transform: translateX(0); } 100%{ transform: translateX(-50%); } }
.logo-slide-item { flex-shrink: 0; width: 165px; padding: 0 2rem; display: flex; align-items: center; justify-content: center; }
.logo-slide-item img { max-height: 54px; max-width: 120px; object-fit: contain; filter: grayscale(100%) opacity(.5); transition: filter .35s; }
.logo-slide-item img:hover { filter: grayscale(0%) opacity(1); }
.logo-slide-item .logo-text-fallback { font-weight: 700; font-size: .85rem; color: var(--text-muted); text-align: center; white-space: nowrap; }

/* ════════════════════════════════════════════════════════════
   32. ACHIEVEMENTS
════════════════════════════════════════════════════════════ */
.achievements-section { background: var(--secondary); padding: 96px 0; }
.ach-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-lg); padding: 2rem 1.5rem; text-align: center; transition: var(--transition); height: 100%; }
.ach-card:hover { background: rgba(255,255,255,.1); border-color: var(--primary); transform: translateY(-7px); box-shadow: 0 14px 40px rgba(0,0,0,.32); }
.ach-img-wrap { width: 82px; height: 82px; border-radius: 20px; background: rgba(var(--primary-rgb),.18); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; overflow: hidden; border: 2px solid rgba(var(--primary-rgb),.28); }
.ach-img-wrap img { width: 100%; height: 100%; object-fit: contain; padding: .5rem; }
.ach-icon { font-size: 2.1rem; color: var(--primary); }
.ach-title { color: #fff; font-size: 1rem; font-weight: 700; margin-bottom: .4rem; font-family: var(--font-heading); }
.ach-org   { color: var(--primary-light); font-size: .76rem; font-weight: 700; margin-bottom: .3rem; }
.ach-date  { color: rgba(255,255,255,.4); font-size: .74rem; margin-bottom: .6rem; }
.ach-desc  { color: rgba(255,255,255,.6); font-size: .83rem; line-height: 1.65; margin: 0; }

/* ════════════════════════════════════════════════════════════
   33. SCROLL / ANCHOR
════════════════════════════════════════════════════════════ */
section[id], div[id] { scroll-margin-top: 82px; }
.site-header .dropdown-menu { z-index: var(--z-dropdown); }

/* ════════════════════════════════════════════════════════════
   34. ANIMATIONS
════════════════════════════════════════════════════════════ */
[data-aos] { transition-duration: .65s !important; }

/* ════════════════════════════════════════════════════════════
   35. RESPONSIVE
════════════════════════════════════════════════════════════ */
@media (max-width:1199px) {
  .section-padding { padding: 80px 0; }
}
@media (max-width:991px) {
  .section-padding { padding: 64px 0; }
  .hero-slider { height: 72vh; min-height: 480px; }
  .svc-enq-sticky { position: static; }
}
@media (max-width:767px) {
  .section-padding { padding: 52px 0; }
  .hero-slider { height: 88vh; min-height: 420px; }
  .hero-title { font-size: 2.1rem; }
  .hero-desc { font-size: 1rem; }
  .enquiry-info-col { display: none; }
  .svc-hero { min-height: 360px; padding: 70px 0 50px; }
  .svc-hero-title { font-size: 1.95rem; }
  .svc-gallery-grid { grid-template-columns: repeat(2,1fr); grid-auto-rows: 130px; }
}
@media (max-width:575px) {
  .section-padding { padding: 44px 0; }
  .stat-box { padding: .9rem .75rem; }
  .stat-number { font-size: 1.7rem; }
  .hero-prev { left: 12px !important; }
  .hero-next { right: 12px !important; }
}

/* ════════════════════════════════════════════════════════════
   36. THEME TOGGLE BUTTON
════════════════════════════════════════════════════════════ */
.theme-toggle-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--bg-light);
  color: var(--text-muted);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: .9rem;
  transition: var(--transition-fast);
  flex-shrink: 0;
}
.theme-toggle-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: scale(1.1);
}

/* ════════════════════════════════════════════════════════════
   37. DARK MODE
════════════════════════════════════════════════════════════ */

/* Token overrides */
[data-theme="dark"] {
  --dark:          #f1f5f9;
  --text:          #9ca3af;
  --text-muted:    #6b7280;
  --text-light:    #4b5563;
  --white:         #0f172a;
  --bg:            #0f172a;
  --bg-light:      #1e293b;
  --bg-warm:       #1e293b;
  --border:        #334155;
  --border-light:  #1e293b;
  --shadow-xs:     0 1px 4px rgba(0,0,0,.3);
  --shadow:        0 4px 20px rgba(0,0,0,.35);
  --shadow-md:     0 8px 32px rgba(0,0,0,.42);
  --shadow-lg:     0 16px 52px rgba(0,0,0,.52);
}

/* Global */
[data-theme="dark"] body { background: #0f172a; color: var(--text); }
[data-theme="dark"] h1,[data-theme="dark"] h2,[data-theme="dark"] h3,
[data-theme="dark"] h4,[data-theme="dark"] h5,[data-theme="dark"] h6 { color: #e2e8f0; }
[data-theme="dark"] a { color: var(--primary-light); }
[data-theme="dark"] a:hover { color: var(--primary); }

/* Navbar */
[data-theme="dark"] .site-header {
  background: rgba(15,23,42,.97);
  box-shadow: 0 1px 0 #334155, 0 4px 24px rgba(0,0,0,.4);
}
[data-theme="dark"] .site-header.scrolled { background: rgba(15,23,42,.95); }
[data-theme="dark"] .site-header .nav-link { color: #94a3b8 !important; }
[data-theme="dark"] .site-header .nav-link:hover,
[data-theme="dark"] .site-header .nav-link.active { color: var(--primary-light) !important; }
[data-theme="dark"] .dropdown-menu { background: #1e293b; border-color: #334155; }
[data-theme="dark"] .dropdown-item { color: #94a3b8; }
[data-theme="dark"] .dropdown-item:hover { background: rgba(201,148,14,.12); color: var(--primary-light); }
[data-theme="dark"] .logo-primary { color: var(--primary-light); }
[data-theme="dark"] .logo-secondary { color: #64748b; }
[data-theme="dark"] .theme-toggle-btn { background: #1e293b; border-color: #334155; color: #94a3b8; }
[data-theme="dark"] .search-toggle { color: #94a3b8; }

/* Topbar */
[data-theme="dark"] .topbar { background: #070b14; }

/* Cards + Sections */
[data-theme="dark"] .service-card,
[data-theme="dark"] .blog-card,
[data-theme="dark"] .team-card,
[data-theme="dark"] .album-card,
[data-theme="dark"] .video-card,
[data-theme="dark"] .feature-card,
[data-theme="dark"] .testimonial-card,
[data-theme="dark"] .contact-info-card,
[data-theme="dark"] .sidebar-widget,
[data-theme="dark"] .svc-share-card,
[data-theme="dark"] .svc-enq-card,
[data-theme="dark"] .svc-trust-card,
[data-theme="dark"] .svc-why-item,
[data-theme="dark"] .stat-box,
[data-theme="dark"] .blog-list-card {
  background: #1e293b;
  border-color: #334155;
}
[data-theme="dark"] .service-body,
[data-theme="dark"] .blog-body { color: #94a3b8; }
[data-theme="dark"] .service-title a,
[data-theme="dark"] .blog-title a { color: #e2e8f0; }
[data-theme="dark"] .service-desc,
[data-theme="dark"] .blog-excerpt,
[data-theme="dark"] .feature-desc,
[data-theme="dark"] .team-name { color: #6b7280; }

/* Sections bg */
[data-theme="dark"] .bg-light-pattern,
[data-theme="dark"] .section-padding.bg-light,
[data-theme="dark"] .testimonials-section.bg-light,
[data-theme="dark"] .svc-related-section,
[data-theme="dark"] .packages-listing { background: #1e293b !important; }
[data-theme="dark"] .enquiry-section { background: #1e293b; }
[data-theme="dark"] .enquiry-box { box-shadow: var(--shadow-lg); }
[data-theme="dark"] .enquiry-form-col { background: #1e293b; }

/* Form inputs */
[data-theme="dark"] .form-control,
[data-theme="dark"] .form-select,
[data-theme="dark"] .svc-enq-input {
  background: #0f172a;
  border-color: #334155;
  color: #e2e8f0;
}
[data-theme="dark"] .form-control:focus,
[data-theme="dark"] .form-select:focus,
[data-theme="dark"] .svc-enq-input:focus {
  background: #1e293b;
  border-color: var(--primary);
  color: #e2e8f0;
  box-shadow: 0 0 0 3px rgba(201,148,14,.18);
}
[data-theme="dark"] .form-control::placeholder,
[data-theme="dark"] .svc-enq-input::placeholder { color: #475569; }
[data-theme="dark"] .form-label { color: #94a3b8; }
[data-theme="dark"] .form-text { color: #4b5563; }
[data-theme="dark"] .input-group-text { background: #1e293b; border-color: #334155; color: #94a3b8; }

/* Page banners */
[data-theme="dark"] .page-banner,
[data-theme="dark"] .svc-hero { background-color: #070b14; }
[data-theme="dark"] .page-banner-overlay { background: linear-gradient(155deg, rgba(5,8,20,.92) 0%, rgba(5,8,20,.72) 100%); }

/* FAQ */
[data-theme="dark"] .faq-accordion .accordion-button { background: #1e293b; color: #e2e8f0; }
[data-theme="dark"] .faq-accordion .accordion-button:not(.collapsed) { background: #1e293b; color: var(--primary-light); }
[data-theme="dark"] .faq-accordion .faq-item { border-color: #334155; }
[data-theme="dark"] .faq-accordion .accordion-body { background: #0f172a; color: #6b7280; }
[data-theme="dark"] .svc-faq-item { border-color: #334155; }
[data-theme="dark"] .svc-faq-q { background: #1e293b; color: #e2e8f0; }
[data-theme="dark"] .svc-faq-item--open .svc-faq-q { background: rgba(201,148,14,.08); }
[data-theme="dark"] .svc-faq-a { background: rgba(201,148,14,.04); border-color: #334155; }
[data-theme="dark"] .svc-faq-a-inner { color: #6b7280; }
[data-theme="dark"] .svc-faq-arrow { background: #334155; color: #64748b; }

/* Blog sidebar */
[data-theme="dark"] .widget-header { background: #070b14; }
[data-theme="dark"] .widget-body { background: #1e293b; }
[data-theme="dark"] .sidebar-cat-list li a { color: #6b7280; border-color: #334155; }
[data-theme="dark"] .tag-pill { background: #1e293b; border-color: #334155; color: #6b7280; }

/* Rich content */
[data-theme="dark"] .rich-content { color: #94a3b8; }
[data-theme="dark"] .rich-content h2,[data-theme="dark"] .rich-content h3 { color: #e2e8f0; }
[data-theme="dark"] .rich-content blockquote { background: rgba(201,148,14,.08); color: #6b7280; }

/* Footer */
[data-theme="dark"] .site-footer { background: #070b14; }
[data-theme="dark"] .footer-bottom { background: rgba(0,0,0,.4); }
[data-theme="dark"] .newsletter-input { background: rgba(255,255,255,.08); color: #fff; }

/* Misc */
[data-theme="dark"] .mobile-nav { background: #1e293b; }
[data-theme="dark"] .mobile-nav-links .nav-link { color: #94a3b8; border-color: #334155; }
[data-theme="dark"] .mobile-nav-links .nav-link.active { color: var(--primary-light); }
[data-theme="dark"] .svc-hl-item { background: #1b2a1f; border-color: rgba(34,197,94,.2); }
[data-theme="dark"] .svc-hl-item:hover { background: #1e293b; }
[data-theme="dark"] .svc-enq-footer { background: #141f2e; border-color: #334155; }
[data-theme="dark"] .about-img-placeholder { background: linear-gradient(135deg,#1e293b 0%,#0f172a 100%); border-color: #334155; }
[data-theme="dark"] hr { border-color: #334155; }
[data-theme="dark"] .border-bottom,[data-theme="dark"] .border-top { border-color: #334155 !important; }
[data-theme="dark"] .bg-white,[data-theme="dark"] .bg-light { background-color: #1e293b !important; }
[data-theme="dark"] .text-dark,[data-theme="dark"] .text-body { color: #e2e8f0 !important; }
[data-theme="dark"] .text-muted { color: #6b7280 !important; }
[data-theme="dark"] .border { border-color: #334155 !important; }

/* Smooth theme transition */
html {
  transition: background-color .3s var(--ease), color .3s var(--ease);
}
body, .site-header, .service-card, .blog-card, .team-card, .feature-card,
.testimonial-card, .stat-box, .sidebar-widget, .svc-enq-card {
  transition: background-color .3s var(--ease), border-color .3s var(--ease),
              color .3s var(--ease), box-shadow .3s var(--ease);
}
