/* MEHEDI CATERING & DECORATOR SERVICE (MCDS) - style.css */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,600&family=Inter:wght@300;400;500;600;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red: #CC1F2E; --red-dark: #A01520; --red-light: #E8374A;
  --gold: #C9A84C; --gold-light: #E5C97A; --gold-dark: #A07A2E;
  --ivory: #FAF7F2; --ivory-2: #F5F0E6;
  --charcoal: #1A1A2E; --charcoal-2: #2D2D44; --charcoal-3: #16213E;
  --text-dark: #1C1C2E; --text-mid: #4A4A6A; --text-light: #888;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 12px rgba(0,0,0,.08);
  --shadow-md: 0 6px 30px rgba(0,0,0,.12);
  --shadow-lg: 0 12px 50px rgba(0,0,0,.18);
  --shadow-gold: 0 4px 24px rgba(201,168,76,.3);
  --transition: all .35s cubic-bezier(.4,0,.2,1);
  --radius: 4px; --radius-lg: 12px;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--text-dark); background: var(--white); line-height: 1.7; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
input, textarea, select, button { font-family: var(--font-body); }

h1,h2,h3,h4,h5 { font-family: var(--font-heading); line-height: 1.25; font-weight: 700; }
h1 { font-size: clamp(2.2rem,5vw,3.8rem); }
h2 { font-size: clamp(1.8rem,3.5vw,2.8rem); }
h3 { font-size: clamp(1.2rem,2.5vw,1.7rem); }
h4 { font-size: 1.2rem; }
p { margin-bottom: 1rem; }

.section { padding: 90px 0; }
.section-sm { padding: 60px 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.section-header { text-align: center; margin-bottom: 60px; }
.section-header .eyebrow { display: inline-block; font-size: .78rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.section-header h2 { color: var(--charcoal); margin-bottom: 16px; }
.section-header p { color: var(--text-mid); max-width: 620px; margin: 0 auto; font-size: 1rem; }
.section-header .gold-rule { width: 70px; height: 3px; background: linear-gradient(90deg,var(--gold-dark),var(--gold-light)); margin: 16px auto 0; border-radius: 2px; }
.section-header.left { text-align: left; }
.section-header.left .gold-rule { margin-left: 0; }

.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; border-radius: 2px; font-weight: 600; font-size: .95rem; letter-spacing: .03em; cursor: pointer; border: 2px solid transparent; transition: var(--transition); }
.btn-primary { background: var(--gold); color: var(--charcoal); border-color: var(--gold); }
.btn-primary:hover { background: var(--gold-dark); border-color: var(--gold-dark); transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.btn-secondary { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn-secondary:hover { background: var(--gold); color: var(--charcoal); transform: translateY(-2px); }
.btn-dark { background: var(--charcoal); color: var(--white); border-color: var(--charcoal); }
.btn-dark:hover { background: var(--charcoal-2); transform: translateY(-2px); }
.btn-red { background: var(--red); color: var(--white); border-color: var(--red); }
.btn-red:hover { background: var(--red-dark); transform: translateY(-2px); }
.btn-white { background: var(--white); color: var(--charcoal); border-color: var(--white); }
.btn-white:hover { background: var(--ivory); transform: translateY(-2px); }
.btn-lg { padding: 18px 42px; font-size: 1.05rem; }
.btn-sm { padding: 10px 22px; font-size: .87rem; }

#loading-overlay { position: fixed; inset: 0; background: var(--charcoal-3); display: flex; align-items: center; justify-content: center; z-index: 9999; transition: opacity .5s ease; }
#loading-overlay .loader-logo { text-align: center; }
#loading-overlay .loader-logo span { display: block; font-family: var(--font-heading); font-size: 1.8rem; color: var(--gold); margin-top: 12px; }
.loader-ring { width: 56px; height: 56px; border: 3px solid rgba(201,168,76,.25); border-top-color: var(--gold); border-radius: 50%; animation: spin 1s linear infinite; margin: 0 auto; }
@keyframes spin { to { transform: rotate(360deg); } }
#loading-overlay.hidden { opacity: 0; pointer-events: none; }

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 14px 0;
  background: rgba(22, 33, 62, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.25);
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(22, 33, 62, 0.98);
  padding: 10px 0;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.4);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.nav-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-logo img { width: 46px; height: 46px; object-fit: contain; border-radius: 4px; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.nav-logo-text .brand-main { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700; color: var(--gold); }
.nav-logo-text .brand-sub { font-size: .62rem; font-weight: 500; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.62); }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a { color: rgba(255,255,255,.85); font-size: .8rem; font-weight: 500; padding: 7px 9px; transition: var(--transition); }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; }
.hamburger span { display: block; width: 26px; height: 2px; background: var(--white); transition: var(--transition); border-radius: 2px; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
.mobile-menu { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--charcoal-3); z-index: 999; padding: 100px 32px 40px; flex-direction: column; gap: 4px; overflow-y: auto; }
.mobile-menu.open { display: flex; }
.mobile-menu a { color: var(--white); font-size: 1.1rem; font-weight: 500; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.08); transition: var(--transition); }
.mobile-menu a:hover { color: var(--gold); padding-left: 8px; }
.mobile-menu .btn { margin-top: 20px; justify-content: center; }

.breadcrumb { background: var(--ivory-2); padding: 12px 0; border-bottom: 1px solid rgba(0,0,0,.06); }
.breadcrumb nav { display: flex; align-items: center; gap: 8px; font-size: .83rem; color: var(--text-light); }
.breadcrumb nav a { color: var(--text-mid); transition: var(--transition); }
.breadcrumb nav a:hover { color: var(--gold); }
.breadcrumb nav span { color: var(--text-dark); font-weight: 500; }

/* ── MEHEDI HERO MULTI-SLIDE SLIDER ── */
.hero-slider-wrapper {
  position: relative;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  background: var(--charcoal-3);
  display: flex;
  align-items: center;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), visibility 1s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-slide-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.38;
  transform: scale(1.08);
  transition: transform 6.5s ease-out;
}

.hero-slide.active .hero-slide-bg img {
  transform: scale(1);
}

.hero-overlay-gradient {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(135deg, rgba(22, 33, 62, 0.92) 0%, rgba(26, 26, 46, 0.8) 55%, rgba(160, 21, 32, 0.55) 100%);
}

.hero-slide-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: var(--white);
  max-width: 880px;
  margin: 0 auto;
  padding: 120px 24px 100px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.3rem, 5.5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.18;
  margin-bottom: 14px;
}
.hero-title .highlight {
  color: var(--gold);
  font-style: italic;
}

.hero-tagline {
  font-size: clamp(0.9rem, 2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 10px;
  font-family: var(--font-heading);
  font-style: italic;
}

.hero-desc {
  font-size: 0.96rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 32px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-badges {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.84rem;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.06);
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(201, 168, 76, 0.25);
}
.hero-badge i { color: var(--gold); }

/* Slider Controls Bar */
.slider-controls-bar {
  position: absolute;
  bottom: 25px;
  left: 0;
  right: 0;
  z-index: 10;
}

.slider-controls-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.slider-arrows {
  display: flex;
  align-items: center;
  gap: 10px;
}

.slider-arrow-btn {
  width: 44px;
  height: 44px;
  border-radius: 4px;
  background: rgba(22, 33, 62, 0.85);
  border: 1px solid rgba(201, 168, 76, 0.35);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.95rem;
}

.slider-arrow-btn:hover {
  background: var(--gold);
  color: var(--charcoal-3);
  border-color: var(--gold);
  transform: scale(1.05);
}

.slider-pagination-tabs {
  display: flex;
  align-items: center;
  gap: 14px;
}

.slider-tab-btn {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  padding: 6px 10px;
}

.slider-tab-btn.active {
  color: var(--gold);
}

.slider-tab-btn.active::after {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background-color: var(--gold);
  border-radius: 2px;
}

@media (max-width: 990px) {
  .hero-slide {
    padding: 100px 0 60px;
  }
  .hero-slide-content {
    padding: 90px 16px 70px;
  }
  .hero-title {
    font-size: clamp(1.8rem, 6.5vw, 2.6rem);
  }
  .slider-pagination-tabs {
    display: none;
  }
  .slider-controls-container {
    justify-content: center;
  }
  .slider-controls-bar {
    bottom: 15px;
  }
  .hero-badges {
    gap: 10px;
  }
  .hero-badge {
    font-size: 0.76rem;
    padding: 4px 10px;
  }
}

.page-hero {
  padding: 140px 0 65px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--charcoal-3) 0%, var(--charcoal) 60%, var(--red-dark) 100%);
  border-bottom: 2px solid rgba(201, 168, 76, 0.3);
}
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 70% 50%, rgba(201,168,76,.12) 0%, transparent 60%); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,.72); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }

.stats-section { background: var(--charcoal); padding: 70px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 36px; text-align: center; }
.stat-number { font-family: var(--font-heading); font-size: clamp(2.2rem,4vw,3.4rem); font-weight: 900; color: var(--gold); line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: .85rem; color: rgba(255,255,255,.68); font-weight: 500; letter-spacing: .05em; text-transform: uppercase; }

.card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition); border: 1px solid rgba(0,0,0,.06); }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card-img-wrap { overflow: hidden; aspect-ratio: 4/3; }
.card-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.card:hover .card-img-wrap img { transform: scale(1.06); }
.card-body { padding: 24px 26px; }
.card-tag { display: inline-block; font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.card-body h3 { margin-bottom: 10px; font-size: 1.15rem; color: var(--charcoal); }
.card-body p { color: var(--text-mid); font-size: .9rem; margin-bottom: 16px; }

.service-card { padding: 36px 26px; text-align: center; background: var(--white); border: 1px solid rgba(0,0,0,.07); border-radius: var(--radius-lg); transition: var(--transition); position: relative; overflow: hidden; }
.service-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg,var(--gold-dark),var(--gold-light)); transform: scaleX(0); transition: var(--transition); }
.service-card:hover::after { transform: scaleX(1); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-icon { width: 70px; height: 70px; background: linear-gradient(135deg,var(--red),var(--red-dark)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; color: var(--white); margin: 0 auto 22px; transition: var(--transition); }
.service-card:hover .service-icon { background: linear-gradient(135deg,var(--gold),var(--gold-dark)); transform: scale(1.1); }
.service-card h3 { font-size: 1.15rem; margin-bottom: 12px; }
.service-card p { color: var(--text-mid); font-size: .9rem; margin-bottom: 18px; }

.gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.gallery-item { position: relative; overflow: hidden; cursor: pointer; border-radius: var(--radius); aspect-ratio: 4/3; background: var(--charcoal-2); }
.gallery-item.tall { aspect-ratio: 3/4; }
.gallery-item.wide { aspect-ratio: 16/9; grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay { position: absolute; inset: 0; background: rgba(26,26,46,.72); display: flex; flex-direction: column; align-items: center; justify-content: center; opacity: 0; transition: var(--transition); color: var(--white); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { font-size: 1.8rem; color: var(--gold); margin-bottom: 8px; }
.gallery-overlay span { font-size: .78rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.gallery-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; color: rgba(255,255,255,.3); }

.filter-tabs { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 44px; }
.filter-btn { padding: 9px 20px; font-size: .82rem; font-weight: 600; letter-spacing: .03em; border: 2px solid rgba(0,0,0,.12); border-radius: 2px; background: transparent; cursor: pointer; transition: var(--transition); color: var(--text-mid); }
.filter-btn.active, .filter-btn:hover { background: var(--gold); color: var(--charcoal); border-color: var(--gold); }

.testimonial-card { background: var(--white); padding: 30px; border-radius: var(--radius-lg); border: 1px solid rgba(0,0,0,.06); transition: var(--transition); }
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.quote-icon { color: var(--gold); font-size: 2.2rem; line-height: 1; margin-bottom: 12px; opacity: .4; }
.stars { color: #F5A623; margin-bottom: 12px; letter-spacing: 2px; font-size: .85rem; }
.testimonial-card .quote { color: var(--text-mid); font-size: .92rem; line-height: 1.8; margin-bottom: 20px; font-style: italic; }
.testimonial-client { display: flex; align-items: center; gap: 12px; }
.client-avatar { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg,var(--red),var(--gold)); display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--white); font-size: .88rem; flex-shrink: 0; }
.client-info .name { font-weight: 700; font-size: .92rem; color: var(--charcoal); }
.client-info .event { font-size: .76rem; color: var(--text-light); margin-top: 2px; }

.footer { background: var(--charcoal-3); color: rgba(255,255,255,.7); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; }
.footer-brand .logo-area { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-brand .logo-area img { width: 46px; height: 46px; object-fit: contain; border-radius: 4px; }
.footer-brand .logo-area .brand-name { font-family: var(--font-heading); font-size: 1.25rem; color: var(--gold); }
.footer-brand p { font-size: .87rem; line-height: 1.8; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a { width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .87rem; color: rgba(255,255,255,.6); transition: var(--transition); }
.footer-socials a:hover { background: var(--gold); border-color: var(--gold); color: var(--charcoal); }
.footer-col h4 { font-family: var(--font-heading); font-size: 1rem; color: var(--white); margin-bottom: 18px; padding-bottom: 10px; border-bottom: 2px solid var(--gold); display: inline-block; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { color: rgba(255,255,255,.6); font-size: .86rem; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact-item { display: flex; gap: 12px; margin-bottom: 14px; }
.footer-contact-item .icon { color: var(--gold); font-size: .86rem; margin-top: 3px; flex-shrink: 0; }
.footer-contact-item p, .footer-contact-item a { color: rgba(255,255,255,.62); font-size: .84rem; line-height: 1.6; }
.footer-contact-item a:hover { color: var(--gold-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); margin-top: 56px; padding: 22px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p, .footer-bottom span { font-size: .82rem; color: rgba(255,255,255,.42); }
.footer-bottom .heart { color: #e74c3c; }

.floating-whatsapp { position: fixed; bottom: 28px; right: 28px; z-index: 500; width: 56px; height: 56px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 24px rgba(37,211,102,.45); transition: var(--transition); color: var(--white); font-size: 1.5rem; }
.floating-whatsapp:hover { transform: scale(1.12); }
.scroll-top { position: fixed; bottom: 96px; right: 28px; z-index: 500; width: 46px; height: 46px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-gold); transition: var(--transition); color: var(--charcoal); font-size: .9rem; cursor: pointer; opacity: 0; pointer-events: none; border: none; }
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { background: var(--gold-dark); transform: translateY(-3px); }

.cta-section { background: linear-gradient(135deg, var(--charcoal-3) 0%, var(--charcoal) 50%, var(--red-dark) 100%); padding: 100px 0; text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; top: -50%; right: -20%; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle,rgba(201,168,76,.1) 0%,transparent 70%); }
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { color: var(--white); margin-bottom: 18px; }
.cta-section p { color: rgba(255,255,255,.72); max-width: 540px; margin: 0 auto 36px; font-size: 1rem; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.deco-frame { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.deco-frame img { width: 100%; height: 420px; object-fit: cover; border-radius: var(--radius-lg); }
.deco-badge { position: absolute; bottom: 24px; left: -14px; background: var(--gold); color: var(--charcoal); padding: 14px 20px; border-radius: var(--radius); box-shadow: var(--shadow-gold); font-weight: 700; text-align: center; min-width: 115px; }
.deco-badge .num { font-family: var(--font-heading); font-size: 1.8rem; line-height: 1; }
.deco-badge .lbl { font-size: .68rem; text-transform: uppercase; letter-spacing: .1em; margin-top: 4px; }
.feature-list { list-style: none; margin-bottom: 28px; }
.feature-list li { display: flex; align-items: flex-start; gap: 12px; padding: 9px 0; border-bottom: 1px solid rgba(0,0,0,.05); font-size: .92rem; }
.feature-list li:last-child { border-bottom: none; }
.feature-list li i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }

.process-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; position: relative; }
.process-steps::before { content: ''; position: absolute; top: 34px; left: 12%; right: 12%; height: 2px; background: linear-gradient(90deg,var(--gold),var(--gold-light)); z-index: 0; }
.process-step { text-align: center; position: relative; z-index: 1; }
.step-num { width: 68px; height: 68px; border-radius: 50%; background: linear-gradient(135deg,var(--red),var(--red-dark)); display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700; color: var(--white); margin: 0 auto 16px; border: 4px solid var(--white); box-shadow: 0 4px 14px rgba(204,31,46,.3); }
.process-step h4 { font-size: .96rem; margin-bottom: 7px; color: var(--charcoal); }
.process-step p { font-size: .82rem; color: var(--text-mid); }

.faq-item { border-bottom: 1px solid rgba(0,0,0,.08); }
.faq-question { width: 100%; text-align: left; padding: 18px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px; font-weight: 600; font-size: .96rem; color: var(--charcoal); background: none; border: none; cursor: pointer; transition: var(--transition); }
.faq-question:hover { color: var(--gold); }
.faq-question i { color: var(--gold); transition: transform .3s ease; flex-shrink: 0; }
.faq-question.open i { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-answer-inner { padding: 0 0 18px; color: var(--text-mid); font-size: .92rem; line-height: 1.8; }

.package-card { border: 2px solid rgba(0,0,0,.08); border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition); background: var(--white); }
.package-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.package-card.featured { border-color: var(--gold); box-shadow: var(--shadow-gold); }
.package-header { padding: 32px 24px; text-align: center; }
.package-header.silver { background: linear-gradient(135deg,#8A9BB0,#B0BEC5); }
.package-header.gold { background: linear-gradient(135deg,var(--gold-dark),var(--gold)); }
.package-header.platinum { background: linear-gradient(135deg,var(--charcoal),var(--charcoal-2)); }
.package-badge { display: inline-block; background: var(--red); color: var(--white); font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; padding: 4px 12px; border-radius: 20px; margin-bottom: 10px; }
.package-header h3 { color: var(--white); font-size: 1.4rem; margin-bottom: 7px; }
.package-price { color: rgba(255,255,255,.8); font-size: .88rem; font-style: italic; }
.package-body { padding: 26px; }
.package-features { list-style: none; margin-bottom: 26px; }
.package-features li { display: flex; align-items: center; gap: 12px; padding: 8px 0; font-size: .9rem; color: var(--text-mid); border-bottom: 1px solid rgba(0,0,0,.05); }
.package-features li:last-child { border-bottom: none; }
.package-features li i { color: var(--gold); }

.compare-table { width: 100%; border-collapse: collapse; overflow: hidden; }
.compare-table th, .compare-table td { padding: 12px 16px; text-align: center; border-bottom: 1px solid rgba(0,0,0,.06); font-size: .86rem; }
.compare-table th { background: var(--charcoal); color: var(--white); font-family: var(--font-heading); }
.compare-table th:first-child, .compare-table td:first-child { text-align: left; }
.compare-table td:first-child { font-weight: 500; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:nth-child(even) td { background: var(--ivory); }
.compare-table .check { color: #22C55E; }
.compare-table .cross { color: #EF4444; }

.blog-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition); border: 1px solid rgba(0,0,0,.06); }
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-card .img-wrap { overflow: hidden; aspect-ratio: 16/9; }
.blog-card .img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.blog-card:hover .img-wrap img { transform: scale(1.06); }
.blog-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; color: rgba(255,255,255,.32); }
.blog-body { padding: 20px; }
.blog-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; font-size: .75rem; color: var(--text-light); flex-wrap: wrap; }
.blog-meta .tag { background: rgba(201,168,76,.12); color: var(--gold-dark); padding: 3px 10px; border-radius: 20px; font-weight: 600; }
.blog-body h3 { font-size: 1rem; margin-bottom: 9px; color: var(--charcoal); transition: var(--transition); }
.blog-card:hover .blog-body h3 { color: var(--gold-dark); }
.blog-body p { font-size: .86rem; color: var(--text-mid); margin-bottom: 13px; }
.blog-read-more { color: var(--gold-dark); font-size: .84rem; font-weight: 600; display: inline-flex; align-items: center; gap: 6px; transition: var(--transition); }
.blog-read-more:hover { gap: 10px; }

.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: .85rem; font-weight: 600; color: var(--text-dark); margin-bottom: 7px; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 12px 16px; border: 2px solid rgba(0,0,0,.1); border-radius: var(--radius); font-size: .92rem; color: var(--text-dark); transition: var(--transition); background: var(--white); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,.1); }
.form-group textarea { resize: vertical; min-height: 120px; }
.checkbox-group { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 6px; }
.checkbox-group label { display: flex; align-items: center; gap: 8px; font-size: .86rem; font-weight: 400; cursor: pointer; }
.checkbox-group input[type="checkbox"] { width: auto; accent-color: var(--gold); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-success { background: rgba(34,197,94,.1); border: 1px solid rgba(34,197,94,.3); color: #15803D; padding: 14px 18px; border-radius: var(--radius); font-weight: 500; display: none; margin-top: 14px; }
.form-success.show { display: block; }

.contact-info-card { padding: 28px; border-radius: var(--radius-lg); text-align: center; background: var(--white); border: 1px solid rgba(0,0,0,.07); transition: var(--transition); }
.contact-info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.contact-info-card .icon-wrap { width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 16px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; }
.contact-info-card h4 { font-size: 1.02rem; margin-bottom: 8px; }
.contact-info-card p, .contact-info-card a { color: var(--text-mid); font-size: .9rem; }
.contact-info-card a:hover { color: var(--gold); }

.event-card { border-radius: var(--radius-lg); overflow: hidden; position: relative; min-height: 300px; display: flex; align-items: flex-end; transition: var(--transition); }
.event-bg { position: absolute; inset: 0; overflow: hidden; }
.event-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .55; transition: transform .5s ease; }
.event-card:hover .event-bg img { transform: scale(1.06); }
.event-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,26,46,.95) 0%, rgba(26,26,46,.25) 65%, transparent 100%); }
.event-content { position: relative; z-index: 2; padding: 26px; color: var(--white); }
.event-icon { font-size: 1.8rem; color: var(--gold); margin-bottom: 10px; }
.event-card h3 { font-size: 1.25rem; margin-bottom: 8px; }
.event-card p { color: rgba(255,255,255,.7); font-size: .86rem; margin-bottom: 14px; }

.team-card { text-align: center; transition: var(--transition); padding: 26px 18px; }
.team-card:hover { transform: translateY(-4px); }
.team-avatar { width: 108px; height: 108px; border-radius: 50%; margin: 0 auto 15px; background: linear-gradient(135deg,var(--red),var(--gold)); display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-size: 2.2rem; color: var(--white); font-weight: 700; border: 4px solid var(--white); box-shadow: var(--shadow-md); }
.team-card h4 { font-size: 1.05rem; margin-bottom: 5px; }
.team-card .role { color: var(--gold-dark); font-size: .8rem; font-weight: 600; margin-bottom: 9px; text-transform: uppercase; letter-spacing: .08em; }
.team-card p { color: var(--text-mid); font-size: .85rem; }

.map-container { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.map-container iframe { width: 100%; height: 400px; border: none; display: block; }

.hours-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; }
.hours-item { display: flex; justify-content: space-between; align-items: center; padding: 11px 15px; background: var(--ivory); border-radius: var(--radius); font-size: .87rem; }
.hours-item .day { font-weight: 600; color: var(--charcoal); }
.hours-item .time { color: var(--gold-dark); font-weight: 500; }

.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,.95); z-index: 9000; display: none; align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: var(--radius); }
.lightbox-close { position: absolute; top: 20px; right: 24px; color: var(--white); font-size: 1.8rem; cursor: pointer; background: none; border: none; opacity: .7; transition: var(--transition); }
.lightbox-close:hover { opacity: 1; color: var(--gold); }
.lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.1); border: none; color: var(--white); width: 48px; height: 48px; border-radius: 50%; font-size: 1rem; cursor: pointer; transition: var(--transition); display: flex; align-items: center; justify-content: center; }
.lightbox-nav:hover { background: var(--gold); color: var(--charcoal); }
.lightbox-prev { left: 18px; }
.lightbox-next { right: 18px; }

.anim { opacity: 0; transform: translateY(32px); transition: opacity .65s ease, transform .65s ease; }
.anim.anim-left { transform: translateX(-32px); }
.anim.anim-right { transform: translateX(32px); }
.anim.anim-scale { transform: scale(.92); }
.anim.visible { opacity: 1 !important; transform: translate(0) scale(1) !important; }
.anim-delay-1 { transition-delay: .1s; }
.anim-delay-2 { transition-delay: .2s; }
.anim-delay-3 { transition-delay: .3s; }
.anim-delay-4 { transition-delay: .4s; }
.anim-delay-5 { transition-delay: .5s; }

.section-ivory { background: var(--ivory); }
.section-charcoal { background: var(--charcoal); }
.section-charcoal .section-header h2 { color: var(--white); }
.section-charcoal .section-header p { color: rgba(255,255,255,.68); }
.section-charcoal .section-header .eyebrow { color: var(--gold-light); }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 26px; }
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0 !important; }
.mt-32 { margin-top: 32px; }

@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .grid-3 { grid-template-columns: repeat(2,1fr); }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .grid-2 { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: repeat(2,1fr); }
  .process-steps::before { display: none; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .gallery-item.wide { grid-column: span 1; aspect-ratio: 4/3; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .section { padding: 60px 0; }
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .hero-ctas, .cta-buttons { flex-direction: column; align-items: center; }
  .process-steps { grid-template-columns: 1fr; }
  .hours-grid { grid-template-columns: 1fr; }
}

/* ── Facebook Integration & Video Modal Styles ── */
.fb-widget-container {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}
.fb-widget-container iframe {
  border: none;
  overflow: hidden;
  max-width: 100%;
  border-radius: 8px;
}
.fb-banner-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--gold);
  position: relative;
  margin-bottom: 30px;
}
.fb-banner-card img {
  width: 100%;
  height: auto;
  display: block;
}

/* Video Card & Modal */
.video-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 16/9;
  background: var(--charcoal);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}
.video-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .85;
  transition: transform .5s ease;
}
.video-card:hover img {
  transform: scale(1.06);
  opacity: .7;
}
.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(204,31,46,.9);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,.4);
  transition: var(--transition);
  z-index: 2;
}
.video-card:hover .video-play-btn {
  background: var(--gold);
  color: var(--charcoal);
  transform: translate(-50%, -50%) scale(1.15);
}
.video-info-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,.9) 0%, transparent 100%);
  color: var(--white);
  z-index: 2;
}
.video-info-overlay h4 {
  font-size: 1.05rem;
  margin-bottom: 4px;
  color: var(--white);
}
.video-info-overlay span {
  font-size: .8rem;
  color: var(--gold-light);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Video Lightbox Modal */
.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.95);
  z-index: 9500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.video-modal.open {
  display: flex;
}
.video-modal-content {
  position: relative;
  width: 100%;
  max-width: 900px;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 50px rgba(0,0,0,.8);
}
.video-modal-content iframe, .video-modal-content video {
  width: 100%;
  height: 100%;
  border: none;
}
.video-modal-close {
  position: absolute;
  top: -45px;
  right: 0;
  color: var(--white);
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.video-modal-close:hover {
  color: var(--gold);
}

/* Floating Messenger */
.floating-messenger {
  position: fixed;
  bottom: 96px;
  right: 28px;
  z-index: 500;
  width: 56px;
  height: 56px;
  background: #0084FF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(0,132,255,.45);
  transition: var(--transition);
  color: var(--white);
  font-size: 1.6rem;
}
.floating-messenger:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 32px rgba(0,132,255,.65);
}
.scroll-top {
  bottom: 164px !important;
}

@media (max-width: 600px) {
  .floating-whatsapp { bottom: 20px; right: 20px; width: 48px; height: 48px; font-size: 1.3rem; }
  .floating-messenger { bottom: 80px; right: 20px; width: 48px; height: 48px; font-size: 1.3rem; }
  .scroll-top { bottom: 140px !important; right: 20px; width: 40px; height: 40px; }
}

/* Page Hero Embedded Breadcrumb */
.page-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(201, 168, 76, 0.35);
  padding: 8px 22px;
  border-radius: 30px;
  font-size: 0.86rem;
  margin-top: 22px;
}
.page-breadcrumb a {
  color: var(--gold-light);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.page-breadcrumb a:hover {
  color: var(--white);
}
.page-breadcrumb .sep {
  color: rgba(255, 255, 255, 0.4);
}
.page-breadcrumb span {
  color: var(--white);
  font-weight: 600;
}
