/* =============================================
   NGUMBELA FUNERAL SERVICES
   Colours: White · Black · Crimson #C0392B
   Font: Arial
   ============================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:        #C0392B;
  --red-dark:   #962d22;
  --red-pale:   #f5e6e4;
  --black:      #1a1a1a;
  --charcoal:   #2c2c2c;
  --muted:      #6b6565;
  --light:      #f7f5f3;
  --white:      #fdfcfb;
  --border:     rgba(192,57,43,0.13);
  --border-s:   rgba(26,26,26,0.09);
  --shadow:     0 2px 20px rgba(0,0,0,0.07);
  --font:       Arial, Helvetica, sans-serif;
  --r:          4px;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--white);
  color: var(--black);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ── LABELS & HEADINGS ── */
.label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 0.6rem;
}
.label-light { color: rgba(255,255,255,0.55); }

.heading {
  font-family: var(--font);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--black);
  margin-bottom: 1rem;
}
.heading-light { color: white; }
.heading em { color: var(--red); font-style: italic; font-weight: 400; }

.centered { text-align: center; }
.centered .heading { max-width: 540px; margin-left: auto; margin-right: auto; }

/* ── BUTTONS (all variants) ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.78rem 1.9rem;
  border-radius: var(--r);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-transform: uppercase;
}
.btn-red { background: var(--red); color: white; }
.btn-red:hover { background: var(--red-dark); transform: translateY(-1px); }

.btn-outline { background: transparent; color: var(--black); border: 1.5px solid rgba(26,26,26,0.25); }
.btn-outline:hover { border-color: var(--red); color: var(--red); }

.btn-outline-light { background: transparent; color: rgba(255,255,255,0.85); border: 1.5px solid rgba(255,255,255,0.35); }
.btn-outline-light:hover { border-color: white; color: white; }

.btn-white { background: white; color: var(--red); }
.btn-white:hover { background: var(--light); transform: translateY(-1px); }

.btn-block { width: 100%; justify-content: center; }

/* ── NAVIGATION ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-s);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.09); }

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-mark img { max-height: 45px; width: auto; }
.logo-text { line-height: 1; }
.logo-name {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--black);
  letter-spacing: 0.05em;
}
.logo-tagline {
  font-size: 0.5rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
  margin-top: 2px;
}

/* Desktop Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}
.nav-menu a {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--charcoal);
  transition: color 0.2s;
  position: relative;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform 0.2s;
  border-radius: 2px;
}
.nav-menu a:hover, .nav-menu a.active { color: var(--red); }
.nav-menu a:hover::after, .nav-menu a.active::after { transform: scaleX(1); }

.nav-menu ul,
.nav-menu li {
  list-style: none !important;
  margin: 0;
  padding: 0;
}

.nav-cta {
  background: var(--red);
  color: white !important;
  padding: 0.5rem 1.25rem;
  border-radius: var(--r);
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
  transition: background 0.2s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--red-dark) !important; color: white !important; }

/* Dropdown styling */
.nav-menu ul {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 180px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.2s;
  box-shadow: var(--shadow);
  border-radius: var(--r);
}
.nav-menu li:hover > ul {
  visibility: visible;
  opacity: 1;
}
.nav-menu ul li {
  display: block;
  margin: 0;
}
.nav-menu ul a {
  display: block;
  padding: 0.6rem 1rem;
  white-space: nowrap;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
  z-index: 1002;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: all 0.3s;
}
.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); }

/* Sidebar Close Button - hidden on desktop by default */
.sidebar-close {
  display: none;
}

/* ── TRUST STRIP ── */
.trust {
  background: var(--red);
  padding: 0.8rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  color: white;
  font-size: 0.76rem;
  font-weight: 400;
  white-space: nowrap;
}
.trust-div { width: 1px; height: 16px; background: rgba(255,255,255,0.3); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 1.5rem 5rem;
  position: relative;
  overflow: hidden;
  background: var(--white);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(192,57,43,0.05) 0%, transparent 55%),
              radial-gradient(circle at 20% 80%, rgba(192,57,43,0.03) 0%, transparent 45%);
}
.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}
.hero-inner { max-width: 600px; animation: fadeUp 0.8s ease both; }
.hero-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 1.2rem;
}
.hero-title {
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.08;
  color: var(--black);
  margin-bottom: 1.5rem;
}
.hero-title em { color: var(--red); font-weight: 400; font-style: italic; }
.hero-sub {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 400;
  line-height: 1.8;
  max-width: 460px;
  margin-bottom: 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-slogan {
  font-size: 1rem;
  font-style: italic;
  color: rgba(192,57,43,0.45);
}
.hero-ornament {
  position: absolute;
  right: 5%; top: 50%;
  transform: translateY(-50%);
  width: clamp(180px, 32vw, 380px);
  opacity: 0.5;
  animation: fadeIn 1.2s ease 0.4s both;
}

/* ── SECTIONS ── */
section { padding: 5.5rem 1.5rem; }
.container { max-width: 1200px; margin: 0 auto; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--black);
  padding: 130px 1.5rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(192,57,43,0.5), transparent);
}
.ph-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(192,57,43,0.7);
  font-weight: 700;
  margin-bottom: 0.8rem;
}
.ph-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  color: white;
  line-height: 1.12;
  margin-bottom: 1rem;
}
.ph-title em { color: var(--red); font-weight: 400; font-style: italic; }
.ph-sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.45);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ── INTRO ── */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.intro-text p {
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 1rem;
}
.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: gap 0.2s;
}
.btn-link:hover { gap: 10px; }
.btn-link i, .btn-link svg { transition: transform 0.2s; }
.btn-link:hover i, .btn-link:hover svg { transform: translateX(3px); }

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.stat-card {
  background: var(--light);
  border: 1px solid var(--border-s);
  border-radius: var(--r);
  padding: 1.75rem 1.5rem;
  transition: border-color 0.2s;
}
.stat-card:hover { border-color: var(--border); }
.stat-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  display: block;
  margin-bottom: 4px;
}
.stat-lbl { font-size: 0.76rem; color: var(--muted); }

/* ── SERVICES GRID ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.svc-card {
  background: white;
  border: 1px solid var(--border-s);
  border-radius: var(--r);
  padding: 2rem 1.75rem;
  transition: all 0.25s;
}
.svc-card:hover { border-color: var(--red); box-shadow: var(--shadow); transform: translateY(-2px); }
.svc-card.dark { background: var(--black); border-color: var(--red); }
.svc-card.dark h3 { color: white; }
.svc-card.dark p { color: rgba(255,255,255,0.5); }
.svc-icon { color: var(--red); margin-bottom: 1.25rem; font-size: 1.8rem; }
.svc-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--black); margin-bottom: 0.5rem; }
.svc-card p { font-size: 0.83rem; color: var(--muted); line-height: 1.75; margin-bottom: 1.25rem; }
.card-link {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.2s;
}
.card-link:hover { gap: 8px; }

/* ── POLICY HIGHLIGHT ── */
.ph-section { background: var(--black); }
.ph-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: center;
}
.ph-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.42);
  line-height: 1.8;
  margin-bottom: 2rem;
}
.plan-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.plan-mini {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r);
  padding: 1.5rem 1.2rem;
  position: relative;
  transition: border-color 0.2s;
}
.plan-mini:hover { border-color: rgba(192,57,43,0.35); }
.plan-mini.pop { background: rgba(192,57,43,0.09); border-color: var(--red); }
.plan-badge {
  position: absolute;
  top: -1px; right: 1rem;
  background: var(--red);
  color: white;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 0 0 4px 4px;
}
.plan-name { font-size: 1rem; font-weight: 700; color: white; margin-bottom: 0.65rem; }
.plan-price { font-size: 1.5rem; font-weight: 900; color: #e8a09a; line-height: 1; margin-bottom: 2px; }
.plan-price span { font-size: 0.72rem; color: rgba(255,255,255,0.3); font-weight: 400; }
.plan-cover { font-size: 0.7rem; color: rgba(255,255,255,0.28); margin-bottom: 1rem; padding-bottom: 1rem; border-bottom: 1px solid rgba(255,255,255,0.07); }
.plan-feats { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.plan-feats li { font-size: 0.74rem; color: rgba(255,255,255,0.48); display: flex; align-items: center; gap: 6px; }
.plan-feats li i, .plan-feats li svg { color: var(--red); flex-shrink: 0; }

/* ── TESTIMONIALS ── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testi {
  background: var(--light);
  border: 1px solid var(--border-s);
  border-radius: var(--r);
  padding: 2rem 1.75rem;
}
.quote-icon { color: var(--red); opacity: 0.25; margin-bottom: 0.5rem; font-size: 1.5rem; }
.testi-text {
  font-size: 0.9rem;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.testi-author { display: flex; align-items: center; gap: 10px; }
.avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--red-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
  color: var(--red-dark);
  flex-shrink: 0;
}
.author-name { font-size: 0.82rem; font-weight: 700; color: var(--black); }
.author-loc { font-size: 0.72rem; color: var(--muted); }

/* ── CTA SECTION ── */
.cta-section {
  background: var(--red);
  text-align: center;
}
.cta-inner { max-width: 580px; margin: 0 auto; }
.cta-icon { color: rgba(255,255,255,0.35); margin: 0 auto 1.5rem; font-size: 2rem; }
.cta-title {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 900;
  color: white;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.cta-sub { font-size: 0.93rem; color: rgba(255,255,255,0.7); margin-bottom: 2.5rem; line-height: 1.75; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* CTA Buttons Row */
.cta-buttons-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}
.call-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
@media (min-width: 768px) {
  .cta-buttons-row { flex-direction: row; flex-wrap: wrap; }
}

/* ── FOOTER (FIXED - WHITE TEXT) ── */
.footer {
  background: #111;
  color: #ffffff !important;
  padding: 4rem 1.5rem 2rem;
}
.footer a {
  color: #ffffff !important;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer a:hover {
  color: var(--red) !important;
  text-decoration: underline;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 2rem;
}
.footer-logo-name {
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.footer-tag {
  color: rgba(255,255,255,0.7);
  font-size: 0.78rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
  font-style: italic;
}
.footer-tag em {
  color: var(--red);
}
.footer-note {
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  line-height: 1.5;
}
.footer-col h5 {
  color: #ffffff;
  font-size: 0.63rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 1rem;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0;
  margin: 0;
}
.footer-col ul li {
  margin: 0;
  padding: 0;
}
.footer-col ul a {
  color: rgba(255,255,255,0.7) !important;
  font-size: 0.8rem;
  transition: color 0.2s;
}
.footer-col ul a:hover {
  color: var(--red) !important;
}
.footer-col ul i {
  color: var(--red);
  width: 20px;
  margin-right: 6px;
}
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.4);
  padding-top: 1rem;
}
.footer-bottom p {
  margin: 0;
}
/* Uniform font size for all footer list items */
.footer-col ul li,
.footer-col ul li a,
.footer-col ul li i {
    font-size: 0.8rem;
}

/* Ensure icons are properly aligned */
.footer-col ul li i {
    width: 20px;
    margin-right: 6px;
    color: var(--red);
}

/* All footer text should be consistent */
.footer-col ul li {
    color: rgba(255, 255, 255, 0.7);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 0.5; }
}
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── BACK TO TOP ── */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--red);
  color: white;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 999;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
}
.back-to-top:hover {
  background: var(--red-dark);
  transform: translateY(-3px);
}

/* ── RESPONSIVE (TABLET) ── */
@media (max-width: 1024px) {
  .intro-grid { gap: 3rem; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .plan-cards { grid-template-columns: repeat(2, 1fr); }
}

/* ── MOBILE SIDEBAR MENU (FIXED - NO OVERLAY) ── */
@media (max-width: 768px) {
  .hamburger { display: flex; }
  
  /* Sidebar menu - slides from right */
  .nav-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: white;
    flex-direction: column;
    padding: 70px 1.5rem 2rem;
    gap: 0;
    box-shadow: -5px 0 30px rgba(0,0,0,0.15);
    transition: right 0.3s ease-in-out;
    z-index: 1001;
    overflow-y: auto;
    display: flex !important;
  }
  
  .nav-menu.open {
    right: 0;
  }
  
  .nav-menu > li {
    width: 100%;
    border-bottom: 1px solid var(--border-s);
    margin: 0;
    padding: 0;
    list-style: none;
  }
  
  .nav-menu > li:last-child {
    border-bottom: none;
    margin-top: 0;
  }
  
  .nav-menu a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }
  
  .nav-menu a::after {
    display: none;
  }
  
  .nav-cta {
    display: inline-block;
    text-align: center;
    width: auto;
  }
  
  /* Close button - only visible on mobile */
  .sidebar-close {
    display: flex !important;
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--red);
    color: white;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 1002;
  }
  
  .sidebar-close:hover {
    background: var(--red-dark);
  }
  
  .hero { padding: 100px 1.5rem 4rem; min-height: auto; }
  .hero-ornament { display: none; }
  .hero-title { font-size: 2.4rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  
  .trust-div { display: none; }
  
  .intro-grid,
  .about-grid,
  .contact-grid,
  .ph-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  
  .services-grid,
  .sf-grid,
  .pol-grid,
  .plan-cards { grid-template-columns: 1fr; }
  
  .testi-grid { grid-template-columns: 1fr; }
  
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; max-width: 280px; margin: 0 auto; }
  
  .stats-grid { grid-template-columns: 1fr 1fr; }
  
  .form-row { grid-template-columns: 1fr; }
  
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  
  section { padding: 4rem 1.5rem; }
  .page-hero { padding: 110px 1.5rem 4rem; }
}

/* ── SMALL MOBILE ── */
@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
  .plan-cards { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; align-items: center; }
  .call-buttons { flex-direction: column; }
  .nav-menu { width: 85%; right: -85%; }
}

/* Overlay is completely removed - no overlay styles */
.menu-overlay {
  display: none;
}
/* ── ABOUT PAGE STYLES ── */
.about-main {
    padding: 4rem 1.5rem;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.about-text p {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 1.2rem;
}
.about-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}
.about-stat {
    text-align: center;
    flex: 1;
    min-width: 80px;
}
.about-stat-num {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: var(--red);
    line-height: 1.2;
}
.about-stat-label {
    font-size: 0.7rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.about-image-placeholder {
    background: var(--light);
    border-radius: 1rem;
    padding: 3rem;
    text-align: center;
    border: 1px solid var(--border-s);
}
.about-image-placeholder p {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--charcoal);
}
.about-image-placeholder em {
    color: var(--red);
    font-size: 0.8rem;
}

/* Mission Section */
.mission-section {
    background: var(--light);
    padding: 4rem 1.5rem;
}
.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.mission-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: var(--r);
    box-shadow: var(--shadow);
}
.mission-icon {
    font-size: 2.5rem;
    color: var(--red);
    margin-bottom: 1rem;
}
.mission-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}
.mission-card p {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.7;
}

/* Why Choose Us Section */
.why-us {
    padding: 4rem 1.5rem;
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}
.why-item {
    text-align: center;
    padding: 2rem;
    border: 1px solid var(--border-s);
    border-radius: var(--r);
    transition: all 0.3s;
}
.why-item:hover {
    border-color: var(--red);
    transform: translateY(-3px);
}
.why-icon {
    font-size: 2rem;
    color: var(--red);
    margin-bottom: 1rem;
}
.why-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}
.why-item p {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.6;
}

/* Services Summary */
.services-summary {
    background: var(--light);
    padding: 4rem 1.5rem;
}
.services-summary-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 3rem;
}
.summary-item {
    background: white;
    padding: 1rem;
    text-align: center;
    border-radius: var(--r);
    border: 1px solid var(--border-s);
    transition: all 0.3s;
}
.summary-item i {
    font-size: 1.2rem;
    color: var(--red);
    margin-right: 0.5rem;
}
.summary-item span {
    font-size: 0.85rem;
    font-weight: 500;
}
.summary-item:hover {
    border-color: var(--red);
    transform: translateY(-2px);
}
/* About Page - Founder Image */
.about-image-frame {
    text-align: center;
    background: var(--light);
    border-radius: 1rem;
    padding: 1rem;
    border: 1px solid var(--border-s);
    transition: all 0.3s ease;
}

.about-image-frame:hover {
    border-color: var(--red);
    transform: translateY(-3px);
}

.founder-img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 1rem;
    margin: 0 auto;
    display: block;
    object-fit: cover;
}

.founder-caption {
    margin-top: 1rem;
    padding-top: 0.8rem;
    border-top: 1px solid var(--border-s);
}

.founder-caption h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.2rem;
}

.founder-caption p {
    font-size: 0.8rem;
    color: var(--red);
    font-weight: 600;
    letter-spacing: 1px;
}

/* About Stats - updated */
.about-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.about-stat {
    text-align: center;
    flex: 1;
    min-width: 80px;
}
.about-stat-num {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: var(--red);
    line-height: 1.2;
}
.about-stat-label {
    font-size: 0.7rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .about-stats {
        justify-content: center;
    }
    .founder-img {
        max-width: 250px;
    }
}

@media (max-width: 768px) {
    .about-grid,
    .mission-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }
    .services-summary-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-stats {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .services-summary-grid {
        grid-template-columns: 1fr;
    }
}
/* ============================================
   SERVICES PAGE STYLES
   ============================================ */

/* Full Services Grid */
.services-full {
    padding: 4rem 1.5rem;
}
.services-full-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.service-full-card {
    background: var(--white);
    border: 1px solid var(--border-s);
    border-radius: var(--r);
    padding: 2rem;
    transition: all 0.3s ease;
}
.service-full-card:hover {
    border-color: var(--red);
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}
.service-full-icon {
    font-size: 2.5rem;
    color: var(--red);
    margin-bottom: 1rem;
}
.service-full-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--black);
}
.service-full-card > p {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}
.service-features {
    list-style: none;
    margin: 1rem 0 1.2rem;
    padding: 0;
}
.service-features li {
    font-size: 0.8rem;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 8px;
}
.service-features li i {
    color: var(--red);
    font-size: 0.7rem;
    width: 16px;
}
.btn-outline-small {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: gap 0.2s;
}
.btn-outline-small:hover {
    gap: 8px;
    text-decoration: none;
    color: var(--red-dark);
}

/* Package Section */
.package-section {
    background: var(--light);
    padding: 4rem 1.5rem;
}
.package-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}
.package-card {
    background: white;
    border-radius: var(--r);
    padding: 2rem;
    text-align: center;
    border: 1px solid var(--border-s);
    transition: all 0.3s;
    position: relative;
}
.package-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}
.package-card.featured-package {
    border-color: var(--red);
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(192,57,43,0.1);
}
.package-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--red);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.2rem 1rem;
    border-radius: 2rem;
    letter-spacing: 0.1em;
}
.package-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.package-price {
    font-size: 2rem;
    font-weight: 900;
    color: var(--red);
    margin-bottom: 1rem;
}
.package-features {
    list-style: none;
    text-align: left;
    margin: 1.5rem 0;
    padding: 0;
}
.package-features li {
    font-size: 0.85rem;
    color: var(--muted);
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 8px;
}
.package-features li i {
    color: var(--red);
    font-size: 0.75rem;
    width: 18px;
}

/* Why Services Section */
.why-services {
    padding: 4rem 1.5rem;
}
.why-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}
.why-services-item {
    text-align: center;
    padding: 1.5rem;
}
.why-services-item i {
    font-size: 2.2rem;
    color: var(--red);
    margin-bottom: 1rem;
}
.why-services-item h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.why-services-item p {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
    .services-full-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .package-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .why-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-full-grid {
        grid-template-columns: 1fr;
    }
    .package-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    .why-services-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    .package-card.featured-package {
        transform: scale(1);
    }
}
/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

.contact-page {
    padding: 4rem 1.5rem;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}
.contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
.contact-card {
    background: var(--white);
    border: 1px solid var(--border-s);
    border-radius: var(--r);
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s;
}
.contact-card:hover {
    border-color: var(--red);
    transform: translateY(-3px);
}
.contact-card i {
    font-size: 2rem;
    color: var(--red);
    margin-bottom: 1rem;
}
.contact-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}
.contact-card p {
    font-size: 0.9rem;
    color: var(--muted);
    margin-bottom: 0.25rem;
}
.contact-card .small {
    font-size: 0.7rem;
    color: var(--muted);
}
.contact-card a {
    color: var(--black);
    text-decoration: none;
}
.contact-card a:hover {
    color: var(--red);
}

/* Contact Form */
.contact-form .form-box {
    background: white;
    border: 1px solid var(--border-s);
    border-radius: var(--r);
    padding: 2rem;
}
.contact-form .form-box h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--black);
}
.form-group {
    margin-bottom: 1.2rem;
}
.form-group label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--charcoal);
    margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.68rem 0.9rem;
    border: 1px solid rgba(26,26,26,0.15);
    border-radius: var(--r);
    font-family: var(--font);
    font-size: 0.87rem;
    color: var(--black);
    background: var(--white);
    outline: none;
    transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--red);
}
.form-group textarea {
    resize: vertical;
    min-height: 110px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Alert Messages */
.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    border-radius: var(--r);
    padding: 1rem;
    margin-bottom: 1.5rem;
}
.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    border-radius: var(--r);
    padding: 1rem;
    margin-bottom: 1.5rem;
}
.alert-success i,
.alert-error i {
    margin-right: 8px;
}

/* Responsive Contact Page */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .contact-info {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}
/* ============================================
   GALLERY PAGE STYLES
   ============================================ */

/* Gallery Filters */
.gallery-filters {
    padding: 2rem 1.5rem;
    background: var(--light);
}
.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.filter-btn {
    background: transparent;
    border: 2px solid var(--border-s);
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--charcoal);
    cursor: pointer;
    transition: all 0.3s;
}
.filter-btn:hover {
    border-color: var(--red);
    color: var(--red);
}
.filter-btn.active {
    background: var(--red);
    border-color: var(--red);
    color: white;
}

/* Gallery Grid */
.gallery-section {
    padding: 4rem 1.5rem;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--r);
    cursor: pointer;
    transition: transform 0.3s;
}
.gallery-item:hover {
    transform: translateY(-5px);
}
.gallery-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 0.8;
}
.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-item:hover .gallery-image img {
    transform: scale(1.05);
}
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(192, 57, 43, 0.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
    text-align: center;
}
.gallery-item:hover .gallery-overlay {
    opacity: 1;
}
.gallery-overlay i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}
.gallery-overlay h4 {
    font-size: 1rem;
    font-weight: 600;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1002;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.lightbox-content {
    max-width: 90%;
    max-height: 80%;
    object-fit: contain;
    border-radius: 4px;
}
.lightbox-caption {
    color: white;
    text-align: center;
    margin-top: 1rem;
    font-size: 1rem;
}
.close-lightbox {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}
.close-lightbox:hover {
    color: var(--red);
}

/* Gallery Note */
.gallery-note {
    text-align: center;
    margin-top: 3rem;
    padding: 1rem;
    background: var(--light);
    border-radius: var(--r);
    font-size: 0.85rem;
    color: var(--muted);
}
.gallery-note i {
    color: var(--red);
    margin-right: 0.5rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    .filter-buttons {
        gap: 0.5rem;
    }
    .filter-btn {
        padding: 0.4rem 1rem;
        font-size: 0.75rem;
    }
    .lightbox-content {
        max-width: 95%;
    }
}