/* ==============================================
   Classic Caterers & Wedding Planners
   style.css — Complete Stylesheet
   ============================================== */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* --- CSS Variables --- */
:root {
  --primary:       #8B0000;
  --primary-dark:  #5C0000;
  --primary-light: #C0392B;
  --gold:          #C9A84C;
  --gold-light:    #E8C97A;
  --dark:          #0D0D0D;
  --dark-2:        #1A1A1A;
  --dark-3:        #222222;
  --white:         #FFFFFF;
  --off-white:     #F9F5F0;
  --text-dark:     #1C1C1C;
  --text-muted:    #6B6B6B;
  --text-light:    #E0E0E0;
  --border-light:  rgba(201,168,76,0.25);
  --font-heading:  'Playfair Display', Georgia, serif;
  --font-body:     'Inter', system-ui, sans-serif;
  --radius-sm:     6px;
  --radius-md:     12px;
  --radius-lg:     20px;
  --radius-pill:   999px;
  --shadow-card:   0 8px 32px rgba(0,0,0,0.18);
  --shadow-hover:  0 20px 60px rgba(139,0,0,0.25);
  --shadow-gold:   0 0 30px rgba(201,168,76,0.3);
  --transition:    all 0.35s cubic-bezier(0.16,1,0.3,1);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); font-weight: 400; color: var(--text-dark); background: var(--white); overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* --- Utility --- */
.container { max-width: 1240px; margin: 0 auto; padding: 0 20px; }
.section-pad { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }
.text-center { text-align: center; }
.mt-2 { margin-top: 20px; }
.no-scroll { overflow: hidden; }

/* --- Section Labels & Headings --- */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-title.white { color: var(--white); }
.section-title.dark  { color: var(--text-dark); }
.section-sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.7;
}
.section-sub.white { color: rgba(255,255,255,0.75); }

/* --- Heading Gold Shimmer --- */
.heading-gold {
  background: linear-gradient(90deg, var(--gold), #fff8e7, var(--gold));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* --- Buttons --- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  border: 2px solid var(--primary);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: transparent;
  color: var(--white);
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  border: 2px solid var(--gold);
  transition: var(--transition);
}
.btn-secondary:hover {
  background: var(--gold);
  color: var(--dark);
  transform: translateY(-2px);
}
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 40px;
  background: var(--gold);
  color: var(--dark);
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.5px;
  border: 2px solid var(--gold);
  transition: var(--transition);
}
.btn-gold:hover {
  background: var(--gold-light);
  box-shadow: var(--shadow-gold);
  transform: translateY(-3px);
}
.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 40px;
  background: transparent;
  color: var(--white);
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 15px;
  border: 2px solid var(--white);
  transition: var(--transition);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--dark);
}
.btn-outline-crimson {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 30px;
  background: transparent;
  color: var(--primary);
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 14px;
  border: 2px solid var(--primary);
  transition: var(--transition);
}
.btn-outline-crimson:hover {
  background: var(--primary);
  color: var(--white);
}

/* =======================================
   HEADER
   ======================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}
.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: transparent;
  backdrop-filter: blur(0px);
  transition: background 0.4s ease, backdrop-filter 0.4s ease;
  z-index: -1;
}
.site-header.scrolled {
  padding: 10px 0;
  box-shadow: 0 2px 30px rgba(0,0,0,0.4);
}
.site-header.scrolled::before {
  background: rgba(13,13,13,0.97);
  backdrop-filter: blur(10px);
}
.header-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-logo {
  height: 60px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(201,168,76,0.4));
  transition: filter 0.3s ease;
}
.site-logo:hover { filter: drop-shadow(0 4px 16px rgba(201,168,76,0.7)); }

.main-nav { display: flex; }
.nav-list { display: flex; gap: 4px; align-items: center; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s ease;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 14px;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-link:hover { color: var(--gold); }
.nav-link:hover::after, .nav-link.active::after { width: calc(100% - 28px); }
.nav-link.active { color: var(--gold); }

/* Mega Menu */
.has-dropdown { position: relative; }
.mega-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  width: 460px;
  background: rgba(13,13,13,0.97);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  transform: translateX(-50%) translateY(8px);
}
.has-dropdown:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
/* Invisible bridge so the pointer never leaves the hoverable area while
   moving diagonally from the nav link down into the menu (fixes the menu
   closing before the cursor reaches it). */
.mega-menu::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}
.mega-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.mega-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  color: var(--text-light);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  transition: var(--transition);
}
.mega-item i { color: var(--gold); font-size: 18px; }
.mega-item:hover { background: rgba(201,168,76,0.12); color: var(--gold); }

/* Book Now Button */
.btn-book-now {
  padding: 10px 24px;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-book-now:hover { background: var(--gold); color: var(--dark); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(13,13,13,0.98);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  padding: 80px 32px 32px;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
  overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 24px;
  color: var(--white);
  font-size: 30px;
  line-height: 1;
}
.mobile-nav-list { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav-list > li > a {
  display: block;
  padding: 14px 0;
  color: var(--white);
  font-size: 22px;
  font-family: var(--font-heading);
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.3s ease;
}
.mobile-nav-list > li > a:hover { color: var(--gold); }
.mobile-sub {
  padding: 8px 0 8px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mobile-sub li a {
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  transition: color 0.3s;
}
.mobile-sub li a:hover { color: var(--gold); }
.mobile-sub li a i { color: var(--gold); }
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1099;
}

/* =======================================
   HERO SECTION
   ======================================= */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-slider { position: absolute; inset: 0; }
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  background-size: cover;
  background-position: center;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  animation: kenburns 6s ease-in-out infinite alternate;
}
@keyframes kenburns {
  from { transform: scale(1) translateX(0); }
  to   { transform: scale(1.12) translateX(-3%); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.72) 0%, rgba(139,0,0,0.42) 100%);
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 20px;
  max-width: 860px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  border: 1px solid var(--gold);
  border-radius: var(--radius-pill);
  background: rgba(201,168,76,0.1);
  color: var(--gold);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 28px;
  backdrop-filter: blur(4px);
  animation: fadeInDown 1s ease 0.3s both;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 5vw, 54px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  text-shadow: 2px 4px 0 rgba(139,0,0,0.5), 4px 8px 0 rgba(0,0,0,0.3);
}
.hero-title .word {
  display: inline-block;
  animation: wordSlideUp 0.8s cubic-bezier(0.16,1,0.3,1) both;
}
.hero-title .word:nth-child(1) { animation-delay: 0.5s; }
.hero-title .word:nth-child(2) { animation-delay: 0.7s; }
.hero-title .word:nth-child(3) { animation-delay: 0.9s; }
.hero-title .word:nth-child(4) { animation-delay: 1.1s; }
@keyframes wordSlideUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-sub {
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 300;
  color: rgba(255,255,255,0.88);
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.7;
  animation: fadeInUp 1s ease 1.2s both;
}
.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 1.4s both;
}

/* Hero decorative shapes */
.hero-shape {
  position: absolute;
  z-index: 3;
  pointer-events: none;
}
.hero-shape-1 {
  top: 15%;
  right: 8%;
  width: 60px; height: 60px;
  border: 2px solid rgba(201,168,76,0.5);
  transform: rotate(45deg);
  animation: float 4s ease-in-out infinite;
}
.hero-shape-2 {
  bottom: 20%;
  left: 6%;
  width: 40px; height: 40px;
  border: 2px solid rgba(201,168,76,0.4);
  transform: rotate(45deg);
  animation: float 5s ease-in-out infinite reverse;
}
@keyframes float {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50%       { transform: rotate(45deg) translateY(-18px); }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: var(--gold);
  animation: bounce 2s ease-in-out infinite;
}
.scroll-indicator svg { width: 30px; height: 30px; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* Slider Dots */
.slider-dots {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 10px;
}
.slider-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: transparent;
  cursor: pointer;
  transition: background 0.3s ease;
}
.slider-dot.active { background: var(--gold); }

/* Fade animations */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =======================================
   STATS BAR
   ======================================= */
.stats-bar {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 50px 0;
}
.stats-grid {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 0;
}
.stat-item {
  flex: 1;
  min-width: 160px;
  text-align: center;
  padding: 24px 20px;
  position: relative;
}
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: rgba(201,168,76,0.35);
}
.stat-icon {
  font-size: 32px;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}
.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 14px;
  color: rgba(255,255,255,0.82);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* =======================================
   ABOUT SECTION (WHO WE ARE)
   ======================================= */
.about-section { background: var(--off-white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.about-images {
  position: relative;
  height: 480px;
  perspective: 1000px;
}
.about-img-main {
  position: absolute;
  left: 0; top: 0;
  width: 82%;
  height: 90%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: transform 0.5s ease;
}
.about-img-secondary {
  position: absolute;
  right: 0; bottom: 0;
  width: 55%;
  height: 55%;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  border: 4px solid var(--white);
  transform: rotate(-3deg);
  transition: transform 0.5s ease;
}
.about-images:hover .about-img-secondary { transform: rotate(0deg) scale(1.05); }
.about-images:hover .about-img-main { transform: scale(1.03); }
.about-badge-est {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gold);
  color: var(--dark);
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 14px;
  z-index: 2;
  box-shadow: var(--shadow-gold);
}
.about-content {}
.about-content .section-label { font-style: italic; }
.about-body {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.about-body p + p { margin-top: 14px; }
.feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}
.feature-pill {
  padding: 8px 16px;
  border: 1.5px solid var(--primary);
  color: var(--primary);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
}
.link-gold {
  color: var(--gold);
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s ease;
}
.link-gold:hover { gap: 12px; text-decoration: underline; }

/* =======================================
   SERVICES SECTION
   ======================================= */
.services-section { background: var(--dark); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}
.service-card {
  position: relative;
  height: 380px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s ease;
  transform-style: preserve-3d;
}
.service-card:hover {
  transform: translateY(-12px) rotateX(4deg) scale(1.02);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}
.service-card-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-card-img { transform: scale(1.08); }
.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
  transition: background 0.4s ease;
}
.service-card:hover .service-card-overlay {
  background: linear-gradient(to top, rgba(139,0,0,0.85) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
}
.service-card-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px;
}
.service-card-icon {
  font-size: 32px;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}
.service-card-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.service-card-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 12px;
}
.service-card-link {
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.3s;
}
.service-card-link:hover { gap: 10px; }
.services-cta { text-align: center; margin-top: 44px; }

/* =======================================
   PROCESS SECTION (HOW WE WORK)
   ======================================= */
.process-section {
  background:
    linear-gradient(rgba(250,248,244,0.94), rgba(250,248,244,0.94)),
    url('../images/process-bg-pattern.webp');
  background-size: auto, 260px;
  background-repeat: repeat, repeat;
  background-position: center, center;
  position: relative;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 60px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 38px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--gold) 0, var(--gold) 8px, transparent 8px, transparent 16px);
  opacity: 0.5;
  pointer-events: none;
}
.process-step { text-align: center; position: relative; }
.step-number-badge {
  width: 76px; height: 76px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(201,168,76,0.4);
  position: relative;
  z-index: 2;
}
.step-icon {
  font-size: 28px;
  color: var(--primary);
  margin-bottom: 14px;
  display: block;
}
.step-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.step-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* =======================================
   WHY CHOOSE US SECTION
   ======================================= */
.why-section {
  position: relative;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}
.why-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.85);
}
.why-inner {
  position: relative;
  z-index: 2;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.why-left .section-sub { margin-bottom: 30px; }
.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.why-feature-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 20px;
  backdrop-filter: blur(4px);
  transition: var(--transition);
}
.why-feature-card:hover {
  border-color: var(--border-light);
  background: rgba(201,168,76,0.08);
  transform: translateY(-4px);
}
.why-feature-card i {
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}
.why-feature-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.why-feature-card p { font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.5; }

/* =======================================
   GALLERY SECTION (MASONRY)
   ======================================= */
.gallery-section { background: var(--dark-2); }
.gallery-masonry {
  columns: 3;
  column-gap: 16px;
  margin-top: 50px;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}
.gallery-item:hover .gallery-item-overlay { background: rgba(0,0,0,0.5); }
.gallery-zoom-icon {
  color: var(--white);
  font-size: 36px;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.gallery-item:hover .gallery-zoom-icon { opacity: 1; transform: scale(1); }
.gallery-cta-card {
  break-inside: avoid;
  margin-bottom: 16px;
  background: var(--primary);
  border-radius: var(--radius-md);
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 200px;
}
.gallery-cta-card h3 {
  font-family: var(--font-heading);
  color: var(--white);
  font-size: 22px;
  margin-bottom: 16px;
}

/* =======================================
   LIGHTBOX
   ======================================= */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox-content {
  max-width: 90vw;
  max-height: 88vh;
  position: relative;
}
.lightbox-content img {
  max-width: 100%;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius-md);
}
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: fixed;
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: background 0.3s ease;
  z-index: 9001;
}
.lightbox-close { top: 20px; right: 20px; }
.lightbox-prev  { left: 20px;  top: 50%; transform: translateY(-50%); }
.lightbox-next  { right: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: var(--primary); }

/* =======================================
   VIDEO SECTION
   ======================================= */
/* =======================================
   SOCIAL VIDEO SECTION
   ======================================= */
.social-video-section { background: var(--off-white); }
.social-video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}
.social-video-card {
  text-decoration: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
  display: block;
}
.social-video-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.social-video-thumb {
  position: relative;
  height: 220px;
  background-size: cover;
  background-position: center;
}
.social-video-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.38);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s;
}
.social-video-card:hover .social-video-overlay { background: rgba(139,0,0,0.55); }
.play-btn {
  width: 64px; height: 64px;
  background: rgba(255,255,255,0.92);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s, background 0.3s;
}
.play-btn i { font-size: 28px; color: var(--primary); margin-left: 4px; }
.social-video-card:hover .play-btn { transform: scale(1.12); background: var(--white); }
.social-video-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: rgba(0,0,0,0.65);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
  display: flex; align-items: center; gap: 5px;
  backdrop-filter: blur(4px);
}
.facebook-badge { background: rgba(24,119,242,0.80); }
.social-video-meta {
  padding: 18px 20px 20px;
}
.social-video-meta h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}
.social-video-meta p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}
/* Follow CTA */
.social-follow-cta {
  text-align: center;
  border-top: 1px solid rgba(0,0,0,0.08);
  padding-top: 36px;
}
.social-follow-cta > p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.social-follow-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.social-follow-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s, opacity 0.2s;
}
.social-follow-btn:hover { transform: translateY(-2px); opacity: 0.9; }
.insta-btn {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #fff;
}
.fb-btn { background: #1877f2; color: #fff; }

.video-section { background: var(--off-white); }
.video-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  margin-top: 50px;
}
.yt-frame-wrapper { border-radius: var(--radius-lg); overflow: hidden; }
.yt-frame-wrapper iframe { display: block; }
.video-sidebar { display: flex; flex-direction: column; gap: 24px; }
.video-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid transparent;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.video-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.video-card-title {
  padding: 12px 16px;
  font-weight: 600;
  font-size: 14px;
  color: var(--text-dark);
  background: var(--white);
}

/* =======================================
   TESTIMONIALS
   ======================================= */
.testimonials-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
}
.testimonial-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 20px 0 30px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.testimonial-track::-webkit-scrollbar { display: none; }
.testimonial-card {
  flex: 0 0 calc(33.333% - 16px);
  min-width: 280px;
  scroll-snap-align: start;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
}
.quote-mark {
  font-family: var(--font-heading);
  font-size: 80px;
  color: var(--gold);
  line-height: 0.6;
  margin-bottom: 20px;
  display: block;
}
.testimonial-text {
  font-style: italic;
  color: rgba(255,255,255,0.9);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
}
.star-row { display: flex; gap: 4px; margin-bottom: 20px; }
.star-row i { color: var(--gold); font-size: 16px; }
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 50px; height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}
.author-avatar-placeholder {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
}
.author-name {
  font-weight: 700;
  color: var(--white);
  font-size: 15px;
  margin-bottom: 2px;
}
.author-event {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
}

/* =======================================
   BLOG SECTION
   ======================================= */
.blog-section { background: var(--off-white); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 28px;
  margin-top: 50px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.35s ease, border-bottom 0.35s ease;
  border-bottom: 3px solid transparent;
}
.blog-card:hover {
  transform: translateY(-8px);
  border-bottom-color: var(--gold);
}
.blog-card-thumb {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-card-thumb { transform: scale(1.04); }
.blog-thumb-wrap { overflow: hidden; }
.blog-card-body { padding: 22px; }
.blog-cat-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.blog-date {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.blog-title {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.4;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-excerpt {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 16px;
}
.blog-read-more {
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.3s;
}
.blog-read-more:hover { gap: 10px; text-decoration: underline; }
.blog-cta { text-align: center; margin-top: 44px; }

/* =======================================
   COVERAGE MAP SECTION
   ======================================= */
/* =======================================
   ABOUT — TRUSTED / KEY VALUES / CITIES
   ======================================= */
.about-intro-section { background: var(--off-white); }

.trusted-section { background: var(--white); }
.trusted-inner { max-width: 820px; margin: 0 auto 56px; text-align: center; }
.trusted-body { margin-top: 20px; }
.trusted-body p { color: var(--text-muted); font-size: 16px; line-height: 1.8; }
.trusted-body p + p { margin-top: 14px; }

/* 4-column key values grid */
.key-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 0;
}
.key-value-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.07);
  transition: box-shadow 0.3s, transform 0.3s;
}
.key-value-card:hover { box-shadow: var(--shadow-card); transform: translateY(-4px); }
.key-value-icon {
  width: 64px; height: 64px;
  background: var(--primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.key-value-icon i { font-size: 28px; color: var(--white); }
.key-value-card h3 { font-family: var(--font-heading); font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.key-value-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin: 0; }

/* Coverage / Cities */
.coverage-section { background: var(--cream); }
.cities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.city-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  border-left: 4px solid var(--primary);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s, transform 0.3s;
}
.city-card:hover { box-shadow: var(--shadow-card); transform: translateY(-3px); }
.city-card i { font-size: 28px; color: var(--primary); margin-bottom: 10px; display: block; }
.city-card h4 { font-family: var(--font-heading); font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.city-card p { font-size: 13px; color: var(--text-muted); margin: 0; }

/* Responsive for new about sections */
@media (max-width: 1024px) {
  .key-values-grid { grid-template-columns: repeat(2, 1fr); }
  .cities-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .key-values-grid { grid-template-columns: 1fr; }
  .cities-grid { grid-template-columns: 1fr; }
}

.map-section { background: var(--dark); }
.map-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 50px;
  align-items: start;
}
.city-list { display: flex; flex-direction: column; gap: 14px; margin-top: 10px; }
.city-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.city-item:hover {
  border-color: var(--border-light);
  background: rgba(201,168,76,0.06);
}
.city-name {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-weight: 500;
}
.city-name i { color: var(--gold); font-size: 20px; }
.city-badge {
  font-size: 11px;
  padding: 3px 10px;
  background: rgba(46,204,113,0.2);
  border: 1px solid rgba(46,204,113,0.4);
  color: #2ecc71;
  border-radius: var(--radius-pill);
  font-weight: 600;
}
.city-hq { color: var(--gold); font-size: 11px; font-weight: 600; margin-left: 4px; }
.map-embed { border-radius: var(--radius-lg); overflow: hidden; }
.map-embed iframe { display: block; }

/* =======================================
   FINAL CTA SECTION
   ======================================= */
.final-cta {
  position: relative;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  perspective: 1000px;
}
.final-cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(139,0,0,0.88);
}
.final-cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 100px 20px;
}
.ornament-svg { margin: 0 auto 30px; display: block; }
.final-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
}
.final-cta-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.82);
  margin-bottom: 40px;
}
.final-cta-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.final-cta-phone {
  color: var(--white);
  font-size: 22px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}
.final-cta-phone i { color: var(--gold); font-size: 26px; }
.cta-wa-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: var(--white);
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  transition: var(--transition);
}
.cta-wa-badge:hover { background: #1DA851; transform: translateY(-3px); }

/* =======================================
   PAGE BANNER
   ======================================= */
.page-banner {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
  animation: kenburns 8s ease-in-out infinite alternate;
}
.banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
}
.banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 20px 40px;
}
.breadcrumb {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { margin: 0 8px; }
.banner-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(32px, 6vw, 60px);
  font-weight: 900;
  color: var(--white);
  text-shadow: 2px 4px 0 rgba(0,0,0,0.4);
}

/* =======================================
   ABOUT PAGE EXTRAS
   ======================================= */
.team-section { background: var(--off-white); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  text-align: center;
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.team-card-img { width: 100%; height: 280px; object-fit: cover; }
.team-card-body { padding: 20px; }
.team-name { font-family: var(--font-heading); font-size: 20px; font-weight: 700; margin-bottom: 4px; }
.team-role { color: var(--gold); font-size: 14px; font-weight: 600; }

.values-section { background: var(--dark); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
}
.value-card {
  text-align: center;
  padding: 36px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.value-card:hover {
  background: rgba(201,168,76,0.08);
  transform: translateY(-6px);
}
.value-card i { font-size: 40px; color: var(--gold); margin-bottom: 16px; display: block; }
.value-card h4 { font-family: var(--font-heading); font-size: 18px; color: var(--white); margin-bottom: 10px; }
.value-card p { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.6; }

/* =======================================
   SERVICES PAGE EXTRAS
   ======================================= */
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.service-row:last-child { border-bottom: none; }
.service-row.reverse { direction: rtl; }
.service-row.reverse > * { direction: ltr; }
.service-row-img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.service-row-img:hover { transform: scale(1.03); box-shadow: var(--shadow-hover); }
.service-row-icon {
  font-size: 44px;
  color: var(--primary);
  margin-bottom: 14px;
  display: block;
}
.service-row-title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 14px;
}
.service-row-desc { font-size: 15px; line-height: 1.8; color: var(--text-muted); margin-bottom: 24px; }

/* =======================================
   GALLERY PAGE EXTRAS
   ======================================= */
.filter-tabs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 10px 24px;
  border: 2px solid var(--primary);
  border-radius: var(--radius-pill);
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
  background: transparent;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--primary);
  color: var(--white);
}
.instagram-cta {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}
.instagram-cta h3 {
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--white);
  margin-bottom: 8px;
}
.instagram-cta p { color: rgba(255,255,255,0.75); margin-bottom: 20px; }

/* =======================================
   CONTACT PAGE
   ======================================= */
.contact-section { background: var(--off-white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: start;
}
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-card);
}
.form-title {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 28px;
  color: var(--text-dark);
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-dark);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #e0e0e0;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color 0.3s ease;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--primary); }
.form-group textarea { height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.btn-submit {
  width: 100%;
  padding: 15px;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-pill);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-family: var(--font-body);
}
.btn-submit:hover { background: var(--primary-dark); transform: translateY(-2px); }
.alert-success {
  padding: 14px 20px;
  background: rgba(46,204,113,0.12);
  border: 1px solid rgba(46,204,113,0.4);
  border-radius: var(--radius-md);
  color: #1a7a3a;
  margin-bottom: 20px;
  font-weight: 500;
}
.alert-error {
  padding: 14px 20px;
  background: rgba(139,0,0,0.08);
  border: 1px solid rgba(139,0,0,0.3);
  border-radius: var(--radius-md);
  color: var(--primary-dark);
  margin-bottom: 20px;
  font-weight: 500;
}
/* ── Contact Form: new AJAX enhancements ── */
/* honeypot — handled via inline style on the element for position:fixed escape */
.req { color: var(--primary); }

/* Field-level errors */
.cf-field-error {
  display: block;
  font-size: 12px;
  color: #c0392b;
  margin-top: 5px;
}
.cf-field-error[hidden] { display: none !important; }
.form-group input.cf-invalid,
.form-group select.cf-invalid,
.form-group textarea.cf-invalid {
  border-color: #c0392b;
  background: rgba(192,57,43,0.03);
}

/* Error banner (general) */
.cf-banner-error {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 18px;
  background: rgba(192,57,43,0.08);
  border: 1px solid rgba(192,57,43,0.3);
  border-radius: var(--radius-md);
  color: #a93226;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
}
.cf-banner-error i { font-size: 18px; flex-shrink: 0; }

/* Submit button spinner */
.btn-submit .cf-spinner { display: none; }
.btn-submit.cf-loading .cf-btn-text { display: none; }
.btn-submit.cf-loading .cf-spinner {
  display: inline-block;
  width: 20px; height: 20px;
  border: 3px solid rgba(255,255,255,0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: cf-spin 0.7s linear infinite;
}
.btn-submit.cf-loading { opacity: 0.85; cursor: not-allowed; }
@keyframes cf-spin { to { transform: rotate(360deg); } }

/* Success screen */
.cf-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 48px 24px 40px;
  gap: 16px;
}
.cf-success.cf-success--show {
  display: flex;
  animation: cf-fade-up 0.5s cubic-bezier(0.16,1,0.3,1) both;
}
@keyframes cf-fade-up {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Animated check circle */
.cf-success-check {
  position: relative;
  width: 80px; height: 80px;
  margin-bottom: 8px;
}
.cf-check-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--gold);
}
.cf-ring-1 {
  animation: cf-ring-pulse 1.8s ease-out infinite;
}
.cf-ring-2 {
  animation: cf-ring-pulse 1.8s ease-out 0.6s infinite;
}
@keyframes cf-ring-pulse {
  0%   { transform: scale(0.8); opacity: 0.8; }
  100% { transform: scale(1.6); opacity: 0; }
}
.cf-check-icon {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cf-check-pop 0.4s 0.1s cubic-bezier(0.34,1.56,0.64,1) both;
}
.cf-check-icon i { color: #fff; font-size: 34px; }
@keyframes cf-check-pop {
  from { transform: scale(0); }
  to   { transform: scale(1); }
}

.cf-success-title {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  color: var(--text-dark);
}
.cf-success-sub {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 340px;
}
.cf-success-ref {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--gold);
  text-transform: uppercase;
  background: rgba(201,168,76,0.1);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
}
.cf-success-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}
.cf-btn-home, .cf-btn-again {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
  border: none;
  text-decoration: none;
}
.cf-btn-home {
  background: var(--primary);
  color: #fff;
}
.cf-btn-home:hover { background: var(--primary-dark); transform: translateY(-2px); }
.cf-btn-again {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}
.cf-btn-again:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }

.contact-info-cards { display: flex; flex-direction: column; gap: 16px; }
.info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transition: var(--transition);
}
.info-card:hover { transform: translateX(4px); box-shadow: var(--shadow-card); }
.info-card-icon {
  width: 46px; height: 46px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-card-icon i { font-size: 22px; color: var(--white); }
.info-card-content h4 { font-weight: 700; font-size: 15px; margin-bottom: 4px; }
.info-card-content p, .info-card-content a {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}
.info-card-content a:hover { color: var(--primary); }
.contact-map { border-radius: var(--radius-lg); overflow: hidden; margin-top: 20px; }

/* =======================================
   BLOG PAGE EXTRAS
   ======================================= */
.blog-page-section { background: var(--off-white); }

/* ── Reading Progress Bar ── */
.bs-progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  z-index: 9999;
  transition: width 0.1s linear;
}

/* ── Hero ── */
.bs-hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.bs-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,5,5,0.20) 0%,
    rgba(10,5,5,0.55) 40%,
    rgba(10,5,5,0.88) 100%
  );
}
.bs-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  padding: 60px 24px 64px;
}
.bs-hero-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}
.bs-back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.bs-back-link:hover { color: var(--gold-light); }
.bs-cat-pill {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 999px;
  background: var(--gold);
  color: #1a0a00;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.bs-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 900;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 18px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.5);
}
.bs-hero-excerpt {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,0.78);
  max-width: 720px;
  margin-bottom: 30px;
}
.bs-hero-byline {
  display: flex;
  align-items: center;
  gap: 14px;
}
.bs-author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--gold));
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 20px;
  flex-shrink: 0;
  border: 2px solid rgba(255,255,255,0.3);
}
.bs-byline-info { display: flex; flex-direction: column; gap: 3px; }
.bs-author-name {
  font-weight: 600;
  font-size: 14px;
  color: #fff;
}
.bs-byline-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  display: flex; align-items: center; gap: 6px;
}

/* ── Body Layout ── */
.bs-body-section { background: #f4efe8; padding: 0 0 80px; }
.bs-body-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
  padding-top: 48px;
}

/* ── Article ── */
.bs-article {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 40px rgba(0,0,0,0.08);
  overflow: hidden;
}

/* Share strip */
.bs-share-strip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: #faf8f5;
  border-bottom: 1px solid rgba(201,168,76,0.18);
  flex-wrap: wrap;
}
.bs-share-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-right: 4px;
}
.bs-share-btn {
  width: 34px; height: 34px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 16px;
  color: #fff;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  border: none;
}
.bs-share-btn:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.18); }
.bs-share-wa   { background: #25D366; }
.bs-share-fb   { background: #1877f2; }
.bs-share-tw   { background: #000; }
.bs-share-copy { background: var(--text-muted); }
.bs-copy-toast {
  font-size: 11px; font-weight: 600;
  color: var(--gold);
  opacity: 0; transition: opacity 0.3s;
  pointer-events: none;
}
.bs-copy-toast.show { opacity: 1; }

/* Article content */
.bs-content {
  padding: 44px 48px 36px;
  font-size: 16.5px;
  line-height: 1.9;
  color: #2c2c2c;
}
.bs-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  color: var(--text-dark);
  margin: 44px 0 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
  position: relative;
}
.bs-content h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
  margin: 32px 0 12px;
}
.bs-content p { margin-bottom: 20px; }
.bs-content p:first-child::first-letter {
  float: left;
  font-family: var(--font-heading);
  font-size: 72px;
  font-weight: 900;
  line-height: 0.8;
  color: var(--primary);
  padding: 8px 12px 0 0;
}
.bs-content a { color: var(--primary); border-bottom: 1px solid rgba(139,0,0,0.3); transition: border-color 0.2s; }
.bs-content a:hover { border-color: var(--primary); }
.bs-content ul, .bs-content ol {
  margin: 0 0 20px 20px;
}
.bs-content ul li, .bs-content ol li {
  margin-bottom: 8px;
  padding-left: 6px;
}
.bs-content ul { list-style: none; margin-left: 0; }
.bs-content ul li::before {
  content: '◆';
  color: var(--gold);
  font-size: 10px;
  margin-right: 10px;
  vertical-align: middle;
}
.bs-content img {
  width: 100%;
  border-radius: 14px;
  margin: 30px 0;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
.bs-content blockquote {
  margin: 36px 0;
  padding: 28px 36px;
  background: linear-gradient(135deg, #fdf9f3, #faf5ec);
  border-left: 4px solid var(--gold);
  border-radius: 0 14px 14px 0;
  font-family: var(--font-heading);
  font-size: 19px;
  font-style: italic;
  color: var(--text-dark);
  position: relative;
}
.bs-content blockquote::before {
  content: '\201C';
  position: absolute;
  top: -10px; left: 24px;
  font-size: 80px;
  color: var(--gold);
  font-family: var(--font-heading);
  line-height: 1;
  opacity: 0.4;
}
.bs-content strong { color: var(--text-dark); font-weight: 700; }

/* Tags row */
.bs-tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 48px 28px;
}
.bs-tag-item {
  display: inline-block;
  padding: 5px 16px;
  border-radius: 999px;
  border: 1px solid rgba(201,168,76,0.4);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  background: #fdf9f3;
}

/* Author card */
.bs-author-card {
  display: flex;
  gap: 20px;
  padding: 32px 48px;
  margin: 0;
  border-top: 1px solid rgba(0,0,0,0.06);
  background: linear-gradient(135deg, #1a0505, #2d0808);
  align-items: flex-start;
}
.bs-author-card-avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--primary));
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 28px;
  flex-shrink: 0;
  border: 3px solid rgba(201,168,76,0.4);
}
.bs-author-card-body { flex: 1; }
.bs-author-card-label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.bs-author-card-name { font-family: var(--font-heading); font-size: 20px; color: #fff; margin: 4px 0 8px; }
.bs-author-card-bio { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.65); margin-bottom: 14px; }
.bs-author-card-cta {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 22px;
  border-radius: 999px;
  background: var(--gold);
  color: #1a0a00;
  font-size: 13px;
  font-weight: 700;
  transition: background 0.2s, transform 0.2s;
}
.bs-author-card-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

/* ── Sidebar ── */
.bs-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.bs-sidebar-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  overflow: hidden;
}
.bs-sidebar-card-head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* TOC */
.bs-toc-card { }
.bs-toc-nav { padding: 16px 20px; }
.bs-toc-list { list-style: none; margin: 0; padding: 0; }
.bs-toc-item { margin-bottom: 4px; }
.bs-toc-sub { padding-left: 14px; }
.bs-toc-link {
  display: block;
  font-size: 13px;
  line-height: 1.4;
  color: var(--text-muted);
  padding: 5px 10px;
  border-radius: 6px;
  border-left: 2px solid transparent;
  transition: all 0.2s;
}
.bs-toc-link:hover, .bs-toc-link.active {
  color: var(--primary);
  background: #fdf5f5;
  border-left-color: var(--primary);
  padding-left: 14px;
}
.bs-toc-empty { font-size: 13px; color: var(--text-muted); padding: 4px 0; }

/* Sidebar share */
.bs-sidebar-share { display: flex; flex-direction: column; gap: 8px; padding: 16px 20px; }
.bs-sidebar-share-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  transition: opacity 0.2s, transform 0.2s;
  cursor: pointer;
  border: none;
  font-family: inherit;
  width: 100%;
}
.bs-sidebar-share-btn:hover { opacity: 0.88; transform: translateX(3px); }
.bs-sidebar-share-btn.bs-share-wa { background: #25D366; }
.bs-sidebar-share-btn.bs-share-fb { background: #1877f2; }
.bs-sidebar-share-btn.bs-share-tw { background: #111; }
.bs-sidebar-share-btn.bs-share-copy { background: #555; }

/* Sidebar CTA */
.bs-cta-card {
  background: linear-gradient(145deg, #1a0505 0%, #3d0c0c 100%) !important;
  padding: 30px 24px;
  text-align: center;
}
.bs-cta-icon {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: rgba(201,168,76,0.15);
  border: 2px solid rgba(201,168,76,0.4);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  color: var(--gold);
  margin: 0 auto 16px;
}
.bs-cta-heading { font-family: var(--font-heading); font-size: 20px; color: #fff; margin-bottom: 10px; }
.bs-cta-text { font-size: 13px; line-height: 1.6; color: rgba(255,255,255,0.65); margin-bottom: 20px; }
.bs-cta-btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #1a0a00;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.3px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.bs-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201,168,76,0.4); }

/* ── FAQ Accordion ── */
.bs-faq-section {
  margin: 0 48px 32px;
  border-top: 2px solid rgba(201,168,76,0.25);
  padding-top: 36px;
}
.bs-faq-head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}
.bs-faq-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), #6b0000);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.bs-faq-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.bs-faq-sub {
  font-size: 13px;
  color: var(--text-muted);
}
.bs-faq-list { display: flex; flex-direction: column; gap: 10px; }
.bs-faq-item {
  border: 1.5px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.bs-faq-item.open {
  border-color: rgba(201,168,76,0.5);
  box-shadow: 0 4px 18px rgba(201,168,76,0.12);
}
.bs-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: #faf8f5;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: background 0.2s;
}
.bs-faq-q:hover { background: #f5f0e8; }
.bs-faq-item.open .bs-faq-q { background: linear-gradient(135deg, #fdf9f2, #faf4e5); }
.bs-faq-q-num {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--gold);
  color: #1a0a00;
  font-size: 12px;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.bs-faq-q-text {
  flex: 1;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
}
.bs-faq-chevron {
  font-size: 20px;
  color: var(--text-muted);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.bs-faq-item.open .bs-faq-chevron { transform: rotate(180deg); color: var(--gold); }
.bs-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.bs-faq-a-inner {
  padding: 16px 20px 18px 60px;
  font-size: 15px;
  line-height: 1.75;
  color: #4a4a4a;
}
@media (max-width: 640px) {
  .bs-faq-section { margin: 0 22px 24px; }
  .bs-faq-a-inner { padding-left: 20px; }
}

/* ── Related Posts ── */
.bs-related-section {
  background: #fff;
  padding: 80px 0 90px;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.bs-related-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.bs-related-head { text-align: center; margin-bottom: 48px; }
.bs-related-title {
  font-family: var(--font-heading);
  font-size: clamp(26px, 4vw, 38px);
  color: var(--text-dark);
  margin-top: 8px;
}
.bs-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.bs-rel-card {
  display: flex;
  flex-direction: column;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 6px 30px rgba(0,0,0,0.09);
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), box-shadow 0.35s;
  color: inherit;
}
.bs-rel-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,0.14); }
.bs-rel-img-wrap {
  position: relative;
  overflow: hidden;
  height: 200px;
}
.bs-rel-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.bs-rel-card:hover .bs-rel-img-wrap img { transform: scale(1.06); }
.bs-rel-cat {
  position: absolute;
  top: 14px; left: 14px;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--gold);
  color: #1a0a00;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.bs-rel-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.bs-rel-date { font-size: 11px; color: var(--text-muted); margin-bottom: 10px; display: flex; align-items: center; gap: 5px; }
.bs-rel-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text-dark);
  margin-bottom: 10px;
  flex: 1;
}
.bs-rel-excerpt { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }
.bs-rel-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  margin-top: auto;
  transition: gap 0.2s;
}
.bs-rel-card:hover .bs-rel-link { gap: 10px; }

.bs-all-posts-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  border-radius: 999px;
  border: 2px solid var(--primary);
  color: var(--primary);
  font-weight: 700;
  font-size: 15px;
  transition: all 0.25s;
}
.bs-all-posts-btn:hover {
  background: var(--primary);
  color: #fff;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .bs-body-container { grid-template-columns: 1fr; }
  .bs-sidebar { position: static; }
  .bs-related-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .bs-hero { min-height: 440px; background-attachment: scroll; }
  .bs-hero-title { font-size: 26px; }
  .bs-content { padding: 28px 22px 20px; font-size: 15px; }
  .bs-content p:first-child::first-letter { font-size: 52px; }
  .bs-tags-row { padding: 0 22px 20px; }
  .bs-author-card { flex-direction: column; padding: 24px 22px; }
  .bs-share-strip { padding: 12px 22px; }
  .bs-related-grid { grid-template-columns: 1fr; }
}

/* =======================================
   SERVICE SUB-PAGES
   ======================================= */
.service-sub-hero {
  background: var(--off-white);
}
.service-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.service-details-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.service-details-img:hover { transform: scale(1.03); box-shadow: var(--shadow-hover); }

/* Generic hover-zoom utility for standalone images site-wide */
.img-hover-zoom {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.img-hover-zoom:hover { transform: scale(1.03); box-shadow: var(--shadow-hover); }
.service-features-list { margin-top: 20px; display: flex; flex-direction: column; gap: 12px; }
.service-features-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-muted);
}
.service-features-list li i { color: var(--primary); font-size: 20px; flex-shrink: 0; }

/* =======================================
   SERVICE EXPLAINER (feature cards + why grid)
   ======================================= */
.service-explainer-intro { max-width: 760px; margin: 0 auto 48px; text-align: center; }
.service-explainer-intro p { font-size: 15px; line-height: 1.8; color: var(--text-muted); margin-top: 12px; }

.service-feature-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}
.service-feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.service-feature-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.service-feature-card-img-wrap { overflow: hidden; height: 220px; }
.service-feature-card-img-wrap img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.5s ease;
}
.service-feature-card:hover .service-feature-card-img-wrap img { transform: scale(1.08); }
.service-feature-card-body { padding: 26px 24px; }
.service-feature-card-body h3 {
  font-family: var(--font-heading); font-size: 20px; margin-bottom: 10px; color: var(--text-dark);
}
.service-feature-card-body p { font-size: 14.5px; line-height: 1.75; color: var(--text-muted); }

.service-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  margin-top: 8px;
}
.service-why-point {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 24px;
  background: var(--off-white);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--gold);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-why-point:hover { transform: translateX(4px); box-shadow: var(--shadow-card); }
.service-why-point i { font-size: 26px; color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.service-why-point h4 { font-family: var(--font-heading); font-size: 17px; margin-bottom: 6px; color: var(--text-dark); }
.service-why-point p { font-size: 14px; line-height: 1.7; color: var(--text-muted); }

@media (max-width: 700px) {
  .service-feature-cards, .service-why-grid { grid-template-columns: 1fr; }
}

/* =======================================
   CATERING TYPES (ANIMATED ICONS)
   ======================================= */
.catering-types-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
}
.catering-type-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 34px 22px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.catering-type-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.catering-type-icon {
  display: inline-block;
  font-size: 44px;
  line-height: 1;
  margin-bottom: 18px;
}
.catering-type-card h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.catering-type-card p {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--text-muted);
}

/* 💍 Wedding Catering — ring rotate */
@keyframes ringRotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.icon-ring { animation: ringRotate 4s linear infinite; transform-origin: 50% 50%; }

/* 💼 Corporate Catering — briefcase open */
@keyframes briefcaseOpen {
  0%, 100% { transform: rotateX(0deg) scale(1); }
  50%      { transform: rotateX(35deg) scale(1.08); }
}
.icon-briefcase { display: inline-block; animation: briefcaseOpen 2.2s ease-in-out infinite; transform-origin: 50% 85%; }

/* 🎂 Birthday — candle glow */
@keyframes candleGlow {
  0%, 100% { filter: drop-shadow(0 0 2px rgba(255,190,60,0.35)) drop-shadow(0 0 0 rgba(255,120,0,0)); }
  50%      { filter: drop-shadow(0 0 10px rgba(255,190,60,0.95)) drop-shadow(0 0 20px rgba(255,120,0,0.7)); }
}
.icon-cake { animation: candleGlow 1.5s ease-in-out infinite; }

/* 🔥 Live Counter — flame flicker */
@keyframes flameFlicker {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 1; }
  25%      { transform: scale(1.1) rotate(-4deg); opacity: 0.85; }
  50%      { transform: scale(0.92) rotate(3deg); opacity: 1; }
  75%      { transform: scale(1.06) rotate(-2deg); opacity: 0.9; }
}
.icon-flame { display: inline-block; animation: flameFlicker 0.9s ease-in-out infinite; }

/* =======================================
   KITCHEN → EVENT TRUCK ROUTE
   ======================================= */
.truck-route-section { background: var(--off-white); overflow: hidden; }
.truck-route {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 720px;
  margin: 0 auto;
}
.truck-route-label {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  white-space: nowrap;
  flex-shrink: 0;
}
.truck-route-track {
  position: relative;
  flex: 1;
  height: 40px;
  min-width: 0;
}
.truck-route-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  transform: translateY(-50%);
  background: repeating-linear-gradient(90deg, var(--gold) 0, var(--gold) 10px, transparent 10px, transparent 20px);
  opacity: 0.6;
}
.truck-route-truck {
  position: absolute;
  top: 50%;
  left: 0;
  font-size: 26px;
  transform: translateY(-50%);
  animation: truckMove 4.5s ease-in-out infinite;
}
@keyframes truckMove {
  0%   { left: 0%; transform: translateY(-50%) scaleX(1); }
  48%  { left: calc(100% - 30px); transform: translateY(-50%) scaleX(1); }
  50%  { left: calc(100% - 30px); transform: translateY(-50%) scaleX(-1); }
  98%  { left: 0%; transform: translateY(-50%) scaleX(-1); }
  100% { left: 0%; transform: translateY(-50%) scaleX(1); }
}

@media (max-width: 1024px) {
  .catering-types-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .catering-types-grid { grid-template-columns: 1fr; }
  .truck-route { gap: 12px; }
  .truck-route-label { font-size: 12.5px; }
  .truck-route-truck { font-size: 20px; }
}
@media (prefers-reduced-motion: reduce) {
  .icon-ring, .icon-briefcase, .icon-cake, .icon-flame, .truck-route-truck {
    animation: none;
  }
}

/* =======================================
   WHATSAPP FLOAT
   ======================================= */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  background: #25D366;
  color: var(--white);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.whatsapp-float:hover { transform: scale(1.12); box-shadow: 0 10px 32px rgba(37,211,102,0.6); }

.book-now-float {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
  box-shadow: 0 6px 24px rgba(139,21,29,0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  animation: bookPulse 2.4s ease-in-out infinite;
}
.book-now-float i { font-size: 18px; }
.book-now-float:hover {
  background: var(--gold);
  color: var(--dark);
  transform: scale(1.06);
  box-shadow: 0 10px 32px rgba(201,168,76,0.55);
  animation-play-state: paused;
}
@keyframes bookPulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(139,21,29,0.45); }
  50%      { box-shadow: 0 6px 30px rgba(139,21,29,0.75), 0 0 0 6px rgba(139,21,29,0.12); }
}
@media (max-width: 600px) {
  .book-now-float { bottom: 20px; left: 16px; padding: 12px 16px; font-size: 13px; }
  .book-now-float span { display: none; }
  .book-now-float i { font-size: 20px; }
}
@media (prefers-reduced-motion: reduce) {
  .book-now-float { animation: none; }
}

/* =======================================
   FOOTER
   ======================================= */
.site-footer {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.footer-bg-texture {
  position: absolute;
  inset: 0;
  background-repeat: repeat;
  opacity: 0.04;
  z-index: 0;
}
.footer-top-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.5) 50%, transparent);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 40px;
  padding: 70px 20px 50px;
  position: relative;
  z-index: 1;
}
.footer-logo { height: 70px; width: auto; margin-bottom: 16px; }
.footer-tagline {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 24px;
}
.social-icons { display: flex; gap: 12px; }
.social-link {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 18px;
  transition: var(--transition);
}
.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}
.footer-heading {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--white);
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
}
.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 40px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  transition: color 0.3s ease, gap 0.3s ease;
}
.footer-links a i { color: var(--gold); font-size: 16px; }
.footer-links a:hover { color: var(--gold); gap: 10px; }
.footer-contact-list { display: flex; flex-direction: column; gap: 16px; }
.footer-contact-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  line-height: 1.5;
}
.footer-contact-list li i { color: var(--gold); font-size: 18px; margin-top: 2px; flex-shrink: 0; }
.footer-contact-list a { color: rgba(255,255,255,0.65); transition: color 0.3s; }
.footer-contact-list a:hover { color: var(--gold); }
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: #25D366;
  color: var(--white);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 700;
  margin-top: 18px;
  transition: var(--transition);
}
.whatsapp-btn:hover { background: #1DA851; transform: translateY(-2px); }
.footer-bottom-bar {
  background: #080808;
  text-align: center;
  padding: 18px 20px;
  position: relative;
  z-index: 1;
}
.footer-bottom-bar p { color: rgba(255,255,255,0.6); font-size: 13px; }
.footer-bottom-bar a { color: var(--gold); transition: text-decoration 0.3s; }
.footer-bottom-bar a:hover { text-decoration: underline; }

/* =======================================
   FAQ SECTION
   ======================================= */
.faq-section { background: var(--cream); }
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.10);
}
.faq-item:first-child { border-top: 1px solid rgba(0,0,0,0.10); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 4px;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  color: var(--dark);
  transition: color 0.25s;
}
.faq-q:hover { color: var(--primary); }
.faq-q[aria-expanded="true"] { color: var(--primary); }
.faq-icon {
  font-size: 22px;
  flex-shrink: 0;
  color: var(--gold);
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
}
.faq-q[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}
.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s cubic-bezier(0.16,1,0.3,1), padding 0.3s;
  padding-bottom: 0;
}
.faq-a:not([hidden]) {
  max-height: 300px;
  padding-bottom: 20px;
}
.faq-a[hidden] { display: block !important; } /* override hidden so animation works */
.faq-a p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.75;
  margin: 0;
  padding: 0 4px;
}

/* =======================================
   SERVICE DETAIL ACCORDION
   ======================================= */
.svc-accordion {
  border: 1px solid rgba(201,168,76,0.20);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(4px);
}
.svc-acc-item {
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.svc-acc-item:last-child { border-bottom: none; }
.svc-acc-head {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 28px;
  text-align: left;
  transition: background 0.25s;
}
.svc-acc-head:hover { background: rgba(201,168,76,0.06); }
.svc-acc-item.open .svc-acc-head { background: rgba(201,168,76,0.10); }
.svc-acc-icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg,#c9a84c,#e8c96e);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  font-size: 18px;
  box-shadow: 0 4px 12px rgba(201,168,76,0.35);
}
.svc-acc-title {
  flex: 1;
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
}
.svc-acc-arrow {
  font-size: 22px;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
}
.svc-acc-item.open .svc-acc-arrow { transform: rotate(180deg); }
.svc-acc-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s cubic-bezier(0.16,1,0.3,1), padding 0.3s;
  padding: 0 28px 0 86px;
}
.svc-acc-body:not([hidden]) {
  max-height: 300px;
  padding: 0 28px 24px 86px;
}
.svc-acc-body[hidden] { display: block !important; }
.svc-acc-body p {
  color: rgba(255,255,255,0.75);
  font-size: 15px;
  line-height: 1.80;
  margin: 0;
}
.svc-acc-body p strong { color: var(--gold); font-weight: 600; }
@media (max-width: 600px) {
  .svc-acc-head { padding: 18px 18px; gap: 12px; }
  .svc-acc-body { padding: 0 18px 0 18px; }
  .svc-acc-body:not([hidden]) { padding: 0 18px 20px 18px; }
  .svc-acc-title { font-size: 15px; }
}

/* =======================================
   SCROLL REVEAL
   ======================================= */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* =======================================
   RESPONSIVE
   ======================================= */
@media (max-width: 1024px) {
  .main-nav { display: none; }
  .btn-book-now { display: none; }
  .hamburger { display: flex; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-images { height: 320px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-features { grid-template-columns: 1fr; }
  .gallery-masonry { columns: 2; }
  .social-video-grid { grid-template-columns: repeat(2, 1fr); }
  .video-grid { grid-template-columns: 1fr; }
  .video-sidebar { flex-direction: row; }
  .map-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .service-row { grid-template-columns: 1fr; gap: 30px; }
  .service-row.reverse { direction: ltr; }
  .service-row-img { height: 260px; }
  .contact-grid { grid-template-columns: 1fr; }
  .service-details-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .section-pad { padding: 60px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .why-features { grid-template-columns: 1fr; }
  .social-video-grid { grid-template-columns: 1fr; }
  .gallery-masonry { columns: 1; }
  .testimonial-card { flex: 0 0 90%; }
  .footer-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
  .final-cta-btns { flex-direction: column; align-items: center; }
  .form-row { grid-template-columns: 1fr; }
  .stats-grid { flex-wrap: wrap; }
  .stat-item { flex: 0 0 50%; }
  .stat-item::after { display: none; }
  .video-sidebar { flex-direction: column; }
  .blog-single-content { padding: 28px 20px; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 36px; }
  .values-grid { grid-template-columns: 1fr; }
  .stat-item { flex: 0 0 100%; }
  .filter-tabs { gap: 8px; }
  .filter-btn { padding: 8px 16px; font-size: 13px; }
}
