/* ============================================
   KOVAI FUNERAL SERVICES - STYLE SHEET
   Design System: Deep Navy, Ivory, Gold
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Primary Palette */
  --navy-deep: #0b1a30;
  --navy: #122748;
  --navy-light: #1a3a6b;
  --navy-muted: #2c4a7c;

  /* Accent Palette */
  --gold: #c9a14e;
  --gold-light: #dfc07a;
  --gold-dark: #a07c32;

  /* Neutral Palette */
  --ivory: #faf8f4;
  --ivory-warm: #f5f0e8;
  --white: #ffffff;
  --gray-100: #f0ede7;
  --gray-200: #e0dbd2;
  --gray-300: #b8b2a6;
  --gray-500: #7a7468;
  --gray-700: #4a453b;
  --gray-900: #1e1c18;

  /* Semantic */
  --text-primary: #1e1c18;
  --text-secondary: #5a554b;
  --text-muted: #8a847a;
  --text-on-dark: #f0ede7;
  --text-on-dark-muted: #b8b2a6;

  /* Spacing Scale */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Sizing */
  --header-height: 80px;
  --max-width: 1200px;
  --border-radius: 12px;
  --border-radius-sm: 8px;
  --border-radius-lg: 20px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(11, 26, 48, 0.06);
  --shadow-md: 0 4px 20px rgba(11, 26, 48, 0.1);
  --shadow-lg: 0 8px 40px rgba(11, 26, 48, 0.15);
  --shadow-xl: 0 16px 60px rgba(11, 26, 48, 0.2);
  --shadow-gold: 0 4px 20px rgba(201, 161, 78, 0.25);

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background-color: var(--ivory);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  outline: none;
  background: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* ---------- Utilities ---------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.section-padding {
  padding: var(--space-5xl) 0;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ---------- Typography ---------- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-md);
}

.section-label::before,
.section-label::after {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

.section-title--light {
  color: var(--white);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.8;
}

.section-subtitle--light {
  color: var(--text-on-dark-muted);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.875rem 2rem;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 50px;
  transition: all var(--transition-smooth);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  box-shadow: var(--shadow-gold);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(201, 161, 78, 0.4);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.btn--secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(4px);
}

.btn--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.btn--outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--call {
  background: linear-gradient(135deg, #27ae60, #1e8c4e);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(39, 174, 96, 0.3);
}

.btn--call:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(39, 174, 96, 0.45);
}

.btn-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ---------- Header / Navigation ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  transition: all var(--transition-smooth);
}

.header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(11, 26, 48, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(201, 161, 78, 0.1);
  transition: all var(--transition-smooth);
}

.header--scrolled::before {
  background: rgba(11, 26, 48, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: 100%;
  max-width: 100%;
  padding: 0 5%;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  z-index: 10;
}

.header__logo-img {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  box-shadow: 0 0 15px rgba(201, 161, 78, 0.3);
}

.header__logo-text {
  display: flex;
  flex-direction: column;
}

.header__logo-name {
  font-family: var(--font-heading);
  padding-right: 15px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.header__logo-tagline {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  font-weight: 500;
}

.nav {
  z-index: 5;
  display: flex;
  align-items: center;
  flex-grow: 1;
  justify-content: flex-end;
  margin-left: 1.5rem;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  margin: 0 auto;
}

.nav__link {
  display: block;
  padding: 0.6rem 0.5rem;
  font-size: 0.58rem;
  font-weight: 500;
  color: var(--text-on-dark-muted);
  border-radius: 8px;
  transition: all var(--transition-fast);
  letter-spacing: 0.01em;
}

.nav__link:hover,
.nav__link--active {
  color: var(--white);
  background: rgba(201, 161, 78, 0.15);
}

/* ---------- Mega Menu (Services) ---------- */
.nav__item--has-mega {
  position: relative;
}

.nav__link-caret {
  width: 14px;
  height: 14px;
  display: inline-block;
  vertical-align: middle;
  margin-left: 2px;
  transition: transform var(--transition-fast);
}

.nav__item--has-mega:hover .nav__link-caret,
.nav__item--has-mega:focus-within .nav__link-caret {
  transform: rotate(180deg);
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  width: 720px;
  background: rgba(11, 26, 48, 0.98);
  backdrop-filter: blur(25px) saturate(180%);
  -webkit-backdrop-filter: blur(25px) saturate(180%);
  border: 1px solid rgba(201, 161, 78, 0.35);
  border-radius: var(--border-radius);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 25px rgba(201, 161, 78, 0.15);
  padding: 1.25rem 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1000;
  pointer-events: none;
}

.nav__item--has-mega:hover .mega-menu,
.nav__item--has-mega:focus-within .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(4px);
  pointer-events: auto;
}

.mega-menu__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.mega-menu__col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mega-menu__header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(201, 161, 78, 0.25);
  margin-bottom: 0.25rem;
}

.mega-menu__icon {
  font-size: 1.1rem;
}

.mega-menu__cat-title {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.mega-menu__item {
  display: block;
  padding: 0.6rem 0.75rem;
  border-radius: 8px;
  transition: all var(--transition-fast);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid transparent;
}

.mega-menu__item:hover {
  background: rgba(201, 161, 78, 0.14);
  border-color: rgba(201, 161, 78, 0.3);
  transform: translateY(-2px);
}

.mega-menu__item-title {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
}

.mega-menu__item-desc {
  font-size: 0.75rem;
  color: var(--text-on-dark-muted);
  margin-top: 2px;
  line-height: 1.3;
}

.nav__cta {
  margin-left: var(--space-md);
}

.nav__cta .btn {
  padding: 0.65rem 1.5rem;
  font-size: 0.85rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  z-index: 10;
  padding: 8px;
  cursor: pointer;
}

.hamburger__line {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition-fast);
  transform-origin: center;
}

.hamburger--active .hamburger__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger--active .hamburger__line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger--active .hamburger__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
  display: none;
}

/* ---------- Emergency Banner ---------- */
.emergency-banner {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
  color: var(--navy-deep);
  text-align: center;
  padding: 0.5rem var(--space-xl);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
}

.emergency-banner__icon {
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-deep);
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  filter: blur(1px);
}

.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(11, 26, 48, 0.92) 0%,
    rgba(18, 39, 72, 0.85) 40%,
    rgba(26, 58, 107, 0.78) 100%
  );
}

.hero__bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(201, 161, 78, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(201, 161, 78, 0.05) 0%, transparent 40%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: calc(var(--header-height) + 80px) var(--space-xl) var(--space-4xl);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.hero__text {
  max-width: 580px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.5rem 1.2rem;
  background: rgba(201, 161, 78, 0.12);
  border: 1px solid rgba(201, 161, 78, 0.3);
  border-radius: 50px;
  margin-bottom: var(--space-xl);
  animation: fadeInUp 0.8s ease-out;
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  background: #27ae60;
  border-radius: 50%;
  animation: pulse-glow 2s ease-in-out infinite;
}

.hero__badge-text {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: var(--space-lg);
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero__title-accent {
  color: var(--gold);
  display: block;
}

.hero__description {
  font-size: 1.1rem;
  color: var(--text-on-dark-muted);
  line-height: 1.8;
  margin-bottom: var(--space-2xl);
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-3xl);
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero__stats {
  display: flex;
  gap: var(--space-2xl);
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  animation: fadeInUp 0.8s ease-out 0.8s both;
}

.hero__stat {
  text-align: left;
}

.hero__stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.hero__stat-label {
  font-size: 0.78rem;
  color: var(--text-on-dark-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

/* Hero visual (cross/dove artwork) */
.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.hero__cross-artwork {
  position: relative;
  width: 320px;
  height: 400px;
}

.hero__cross {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 180px;
}

.hero__cross-vertical {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 16px;
  height: 100%;
  background: linear-gradient(180deg, var(--gold), var(--gold-dark));
  border-radius: 4px;
  box-shadow: 0 0 30px rgba(201, 161, 78, 0.3);
}

.hero__cross-horizontal {
  position: absolute;
  top: 28%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 16px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  border-radius: 4px;
  box-shadow: 0 0 30px rgba(201, 161, 78, 0.3);
}

.hero__glow-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 1px solid rgba(201, 161, 78, 0.15);
  animation: ring-pulse 4s ease-in-out infinite;
}

.hero__glow-ring:nth-child(2) {
  width: 320px;
  height: 320px;
  animation-delay: 1s;
}

.hero__glow-ring:nth-child(3) {
  width: 380px;
  height: 380px;
  animation-delay: 2s;
}

@keyframes ring-pulse {
  0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.7; transform: translate(-50%, -50%) scale(1.05); }
}

/* Dove SVGs */
.hero__dove {
  position: absolute;
  opacity: 0.3;
  color: var(--gold-light);
}

.hero__dove--left {
  top: 15%;
  left: 8%;
  transform: scaleX(-1);
  animation: float-left 6s ease-in-out infinite;
}

.hero__dove--right {
  top: 10%;
  right: 8%;
  animation: float-right 6s ease-in-out infinite 1s;
}

@keyframes float-left {
  0%, 100% { transform: scaleX(-1) translate(0, 0); }
  50% { transform: scaleX(-1) translate(-10px, -15px); }
}

@keyframes float-right {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(10px, -15px); }
}

/* ---------- About Section ---------- */
.about {
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 161, 78, 0.04), transparent 70%);
  border-radius: 50%;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.about__image-wrapper {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about__image-wrapper::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(11, 26, 48, 0.3), transparent);
}

.about__image {
  width: 100%;
  height: 450px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.about__image-wrapper:hover .about__image {
  transform: scale(1.03);
}

.about__image-badge {
  position: absolute;
  bottom: var(--space-xl);
  left: var(--space-xl);
  z-index: 2;
  background: rgba(11, 26, 48, 0.85);
  backdrop-filter: blur(10px);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--border-radius);
  border: 1px solid rgba(201, 161, 78, 0.3);
}

.about__image-badge-number {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.about__image-badge-text {
  font-size: 0.72rem;
  color: var(--text-on-dark-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.about__content {
  position: relative;
  z-index: 2;
}

.about__text {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-2xl);
  line-height: 1.85;
}

.about__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.about__feature {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md);
  border-radius: var(--border-radius-sm);
  transition: background var(--transition-fast);
}

.about__feature:hover {
  background: var(--gray-100);
}

.about__feature-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 10px;
  color: var(--gold);
}

.about__feature-icon svg {
  width: 22px;
  height: 22px;
}

.about__feature-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}

.about__feature-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ---------- Services Section ---------- */
.services {
  background: var(--ivory);
  position: relative;
}

.services__header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.services__header .section-subtitle {
  margin: 0 auto;
}

/* Primary Services Grid */
.services__primary {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
  margin-bottom: var(--space-3xl);
}

.service-card {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
  border: 1px solid var(--gray-200);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201, 161, 78, 0.3);
}

.service-card__image-wrapper {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.service-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.service-card:hover .service-card__image {
  transform: scale(1.05);
}

.service-card__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 26, 48, 0.6), transparent 60%);
}

.service-card__tag {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  background: rgba(11, 26, 48, 0.8);
  backdrop-filter: blur(8px);
  color: var(--gold-light);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  border: 1px solid rgba(201, 161, 78, 0.3);
}

.service-card__body {
  padding: var(--space-xl);
}

.service-card__title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--space-sm);
}

.service-card__desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.service-card__features {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.service-card__feature-tag {
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.3rem 0.75rem;
  background: var(--ivory-warm);
  color: var(--navy-muted);
  border-radius: 50px;
  border: 1px solid var(--gray-200);
}

/* Additional Services Grid */
.services__additional-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  margin-bottom: var(--space-xl);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--space-lg);
}

.service-mini {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--white);
  border-radius: var(--border-radius);
  border: 1px solid var(--gray-200);
  transition: all var(--transition-smooth);
}

.service-mini:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201, 161, 78, 0.3);
}

.service-mini__icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 12px;
  color: var(--gold);
}

.service-mini__icon svg {
  width: 24px;
  height: 24px;
}

.service-mini__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.service-mini__desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ---------- Why Choose Us Section ---------- */
.why-us {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  position: relative;
  overflow: hidden;
}

.why-us::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 90%, rgba(201, 161, 78, 0.06) 0%, transparent 40%),
    radial-gradient(circle at 90% 10%, rgba(201, 161, 78, 0.04) 0%, transparent 40%);
}

.why-us__header {
  text-align: center;
  margin-bottom: var(--space-3xl);
  position: relative;
  z-index: 2;
}

.why-us__header .section-subtitle {
  margin: 0 auto;
}

.why-us__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  position: relative;
  z-index: 2;
}

.why-us__card {
  text-align: center;
  padding: var(--space-2xl) var(--space-lg);
  border-radius: var(--border-radius-lg);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all var(--transition-smooth);
  backdrop-filter: blur(4px);
}

.why-us__card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(201, 161, 78, 0.3);
  transform: translateY(-6px);
}

.why-us__card-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(201, 161, 78, 0.15), rgba(201, 161, 78, 0.05));
  border-radius: 16px;
  border: 1px solid rgba(201, 161, 78, 0.2);
  color: var(--gold);
}

.why-us__card-icon svg {
  width: 28px;
  height: 28px;
}

.why-us__card-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.why-us__card-desc {
  font-size: 0.88rem;
  color: var(--text-on-dark-muted);
  line-height: 1.6;
}

/* ---------- Testimonials ---------- */
.testimonials {
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.testimonials__header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.testimonials__header .section-subtitle {
  margin: 0 auto;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.testimonial-card {
  padding: var(--space-2xl);
  background: var(--ivory);
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--gray-200);
  position: relative;
  transition: all var(--transition-smooth);
}

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

.testimonial-card__quote-icon {
  color: var(--gold);
  opacity: 0.3;
  margin-bottom: var(--space-md);
}

.testimonial-card__text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}

.testimonial-card__name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
}

.testimonial-card__location {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.testimonial-card__stars {
  display: flex;
  gap: 2px;
  color: var(--gold);
  margin-bottom: var(--space-md);
}

.testimonial-card__stars svg {
  width: 16px;
  height: 16px;
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-dark));
  padding: var(--space-3xl) 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-banner__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
  position: relative;
  z-index: 2;
}

.cta-banner__text {
  max-width: 600px;
}

.cta-banner__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--navy-deep);
  margin-bottom: var(--space-sm);
}

.cta-banner__desc {
  font-size: 1rem;
  color: var(--navy);
  opacity: 0.8;
}

.cta-banner__actions {
  display: flex;
  gap: var(--space-md);
  flex-shrink: 0;
}

.cta-banner .btn--dark {
  background: var(--navy-deep);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.cta-banner .btn--dark:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  background: var(--navy);
}

/* ---------- Contact Section ---------- */
.contact {
  background: var(--ivory);
  position: relative;
}

.contact__header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.contact__header .section-subtitle {
  margin: 0 auto;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
}

/* Contact Info */
.contact__info {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.contact__info-card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
  padding: var(--space-lg);
  background: var(--white);
  border-radius: var(--border-radius);
  border: 1px solid var(--gray-200);
  transition: all var(--transition-smooth);
}

.contact__info-card:hover {
  border-color: rgba(201, 161, 78, 0.3);
  box-shadow: var(--shadow-sm);
}

.contact__info-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 14px;
  color: var(--gold);
}

.contact__info-icon svg {
  width: 24px;
  height: 24px;
}

.contact__info-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact__info-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
}

.contact__info-value a {
  color: var(--navy);
  transition: color var(--transition-fast);
}

.contact__info-value a:hover {
  color: var(--gold);
}

.contact__info-sub {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Map */
.contact__map {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  margin-top: var(--space-xl);
}

.contact__map iframe {
  width: 100%;
  height: 280px;
  border: none;
}

/* Contact Form */
.contact__form-wrapper {
  background: var(--white);
  padding: var(--space-2xl);
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.contact__form-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--space-lg);
}

.form__group {
  margin-bottom: var(--space-lg);
}

.form__label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
  letter-spacing: 0.02em;
}

.form__input,
.form__textarea,
.form__select {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--border-radius-sm);
  background: var(--ivory);
  color: var(--text-primary);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
  outline: none;
}

.form__input:focus,
.form__textarea:focus,
.form__select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 161, 78, 0.1);
  background: var(--white);
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: var(--gray-300);
}

.form__textarea {
  resize: vertical;
  min-height: 120px;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.form__submit {
  width: 100%;
  padding: 1rem;
  margin-top: var(--space-sm);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--navy-deep);
  color: var(--text-on-dark-muted);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 85%, rgba(201, 161, 78, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 85% 15%, rgba(201, 161, 78, 0.03) 0%, transparent 40%);
}

.footer__main {
  padding: var(--space-4xl) 0 var(--space-2xl);
  position: relative;
  z-index: 2;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-3xl);
}

.footer__brand-logo {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.footer__brand-logo-img {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(201, 161, 78, 0.3);
}

.footer__brand-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.footer__brand-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  color: var(--text-on-dark-muted);
}

.footer__social {
  display: flex;
  gap: var(--space-sm);
}

.footer__social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-on-dark-muted);
  transition: all var(--transition-fast);
}

.footer__social-link:hover {
  background: rgba(201, 161, 78, 0.15);
  border-color: rgba(201, 161, 78, 0.3);
  color: var(--gold);
  transform: translateY(-2px);
}

.footer__social-link svg {
  width: 18px;
  height: 18px;
}

.footer__heading {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-lg);
  position: relative;
  padding-bottom: var(--space-sm);
}

.footer__heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gold);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer__link {
  font-size: 0.88rem;
  color: var(--text-on-dark-muted);
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 4px 0;
}

.footer__link:hover {
  color: var(--gold-light);
  transform: translateX(4px);
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.footer__contact-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(201, 161, 78, 0.1);
  border: 1px solid rgba(201, 161, 78, 0.15);
  color: var(--gold);
}

.footer__contact-icon svg {
  width: 16px;
  height: 16px;
}

.footer__contact-text {
  font-size: 0.85rem;
  line-height: 1.6;
}

.footer__contact-text a {
  color: var(--text-on-dark-muted);
  transition: color var(--transition-fast);
}

.footer__contact-text a:hover {
  color: var(--gold-light);
}

/* Footer Bottom */
.footer__bottom {
  position: relative;
  z-index: 2;
  padding: var(--space-lg) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__bottom-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer__copyright {
  font-size: 0.82rem;
}

.footer__bottom-links {
  display: flex;
  gap: var(--space-lg);
}

.footer__bottom-link {
  font-size: 0.82rem;
  color: var(--text-on-dark-muted);
  transition: color var(--transition-fast);
}

.footer__bottom-link:hover {
  color: var(--gold-light);
}

/* ---------- WhatsApp FAB ---------- */
.whatsapp-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 998;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.4);
  transition: all var(--transition-smooth);
  animation: fab-entrance 0.6s ease-out 1s both;
}

.whatsapp-fab:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 6px 32px rgba(37, 211, 102, 0.5);
}

.whatsapp-fab svg {
  width: 30px;
  height: 30px;
}

@keyframes fab-entrance {
  from {
    opacity: 0;
    transform: scale(0) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* ---------- Scroll-to-top ---------- */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 100px;
  z-index: 998;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-smooth);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}

.scroll-top--visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--navy-light);
  transform: translateY(-3px);
}

.scroll-top svg {
  width: 20px;
  height: 20px;
}

/* ---------- Animations ---------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 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; }

/* ---------- Bible Verse ---------- */
.bible-verse {
  text-align: center;
  padding: var(--space-3xl) var(--space-xl);
  background: var(--ivory-warm);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.bible-verse__text {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-style: italic;
  color: var(--navy);
  max-width: 800px;
  margin: 0 auto var(--space-md);
  line-height: 1.6;
}

.bible-verse__ref {
  font-size: 0.9rem;
  color: var(--gold-dark);
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* Tablet Landscape */
@media (max-width: 1024px) {
  .hero__content {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    text-align: center;
  }

  .hero__visual {
    display: none;
  }

  .hero__text {
    max-width: 650px;
    margin: 0 auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__stats {
    justify-content: center;
  }

  .why-us__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }
}

/* Tablet Portrait */
@media (max-width: 768px) {
  :root {
    --header-height: 68px;
  }

  .container {
    padding: 0 var(--space-lg);
  }

  .section-padding {
    padding: var(--space-3xl) 0;
  }

  /* Header */
  .hamburger {
    display: flex;
  }

  .nav {
    display: none;
  }

  .mobile-nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(11, 26, 48, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-smooth);
  }

  .mobile-nav-overlay--active {
    opacity: 1;
    visibility: visible;
  }

  .mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: var(--space-sm);
    padding: var(--space-xl);
  }

  .mobile-nav__link {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--white);
    padding: var(--space-md) var(--space-xl);
    transition: color var(--transition-fast);
    opacity: 0;
    transform: translateY(20px);
  }

  .mobile-nav-overlay--active .mobile-nav__link {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.4s ease-out;
  }

  .mobile-nav-overlay--active .mobile-nav__link:nth-child(1) { transition-delay: 0.1s; }
  .mobile-nav-overlay--active .mobile-nav__link:nth-child(2) { transition-delay: 0.15s; }
  .mobile-nav-overlay--active .mobile-nav__link:nth-child(3) { transition-delay: 0.2s; }
  .mobile-nav-overlay--active .mobile-nav__link:nth-child(4) { transition-delay: 0.25s; }
  .mobile-nav-overlay--active .mobile-nav__link:nth-child(5) { transition-delay: 0.3s; }

  .mobile-nav__link:hover {
    color: var(--gold);
  }

  .mobile-nav__cta {
    margin-top: var(--space-xl);
    opacity: 0;
    transform: translateY(20px);
  }

  .mobile-nav-overlay--active .mobile-nav__cta {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.4s ease-out 0.35s;
  }

  .mobile-nav__close {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    color: var(--white);
    padding: var(--space-sm);
    z-index: 10;
  }

  .mobile-nav__close svg {
    width: 28px;
    height: 28px;
  }

  .mobile-nav__phone {
    margin-top: var(--space-lg);
    font-size: 1rem;
    color: var(--gold-light);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    opacity: 0;
    transform: translateY(20px);
  }

  .mobile-nav-overlay--active .mobile-nav__phone {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.4s ease-out 0.4s;
  }

  /* Hero */
  .hero__title {
    font-size: clamp(2rem, 6vw, 2.8rem);
  }

  .hero__stats {
    gap: var(--space-xl);
  }

  .hero__stat-number {
    font-size: 1.6rem;
  }

  /* About */
  .about__grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .about__image {
    height: 350px;
  }

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

  /* Services */
  .services__primary {
    grid-template-columns: 1fr;
  }

  .services__grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  }

  /* Testimonials */
  .testimonials__grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  /* CTA Banner */
  .cta-banner__content {
    flex-direction: column;
    text-align: center;
  }

  /* Contact */
  .contact__grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

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

  /* Footer */
  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .footer__bottom-content {
    flex-direction: column;
    text-align: center;
  }

  /* Emergency Banner */
  .emergency-banner {
    font-size: 0.72rem;
    padding: 0.4rem var(--space-md);
  }

  /* FABs */
  .whatsapp-fab {
    width: 52px;
    height: 52px;
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-fab svg {
    width: 26px;
    height: 26px;
  }

  .scroll-top {
    right: 82px;
    bottom: 20px;
    width: 40px;
    height: 40px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .hero__content {
    padding: calc(var(--header-height) + 60px) var(--space-md) var(--space-2xl);
  }

  .hero__badge {
    margin-bottom: var(--space-lg);
  }

  .hero__title {
    font-size: 1.8rem;
  }

  .hero__description {
    font-size: 0.95rem;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__stats {
    flex-direction: column;
    gap: var(--space-lg);
    align-items: center;
  }

  .hero__stat {
    text-align: center;
  }

  .header__logo-name {
      font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  padding-right: 20px;
  margin-top: 2px;
  }

  .header__logo-tagline {
    font-size: 0.58rem;
  }

  .service-card__body {
    padding: var(--space-lg);
  }

  .why-us__grid {
    grid-template-columns: 1fr;
  }

  .cta-banner__actions {
    flex-direction: column;
    width: 100%;
  }

  .cta-banner__actions .btn {
    width: 100%;
  }

  .section-title {
    font-size: 1.7rem;
  }
}

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
/* ============================================
   KOVAI FUNERAL SERVICES - STYLE SHEET
   Design System: Deep Navy, Ivory, Gold
   Navigation Structure modeled after St. Peter's
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Primary Palette */
  --navy-deep: #0b1a30;
  --navy: #122748;
  --navy-light: #1a3a6b;
  --navy-muted: #2c4a7c;

  /* Accent Palette */
  --gold: #c9a14e;
  --gold-light: #dfc07a;
  --gold-dark: #a07c32;

  /* Neutral Palette */
  --ivory: #faf8f4;
  --ivory-warm: #f5f0e8;
  --white: #ffffff;
  --gray-100: #f0ede7;
  --gray-200: #e0dbd2;
  --gray-300: #b8b2a6;
  --gray-500: #7a7468;
  --gray-700: #4a453b;
  --gray-900: #1e1c18;

  /* Semantic */
  --text-primary: #1e1c18;
  --text-secondary: #5a554b;
  --text-muted: #8a847a;
  --text-on-dark: #f0ede7;
  --text-on-dark-muted: #b8b2a6;

  /* Spacing Scale */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Sizing */
  --header-height: 90px;
  --max-width: 1320px;
  --border-radius: 12px;
  --border-radius-sm: 8px;
  --border-radius-lg: 20px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(11, 26, 48, 0.06);
  --shadow-md: 0 4px 20px rgba(11, 26, 48, 0.1);
  --shadow-lg: 0 8px 40px rgba(11, 26, 48, 0.15);
  --shadow-xl: 0 16px 60px rgba(11, 26, 48, 0.2);
  --shadow-gold: 0 4px 20px rgba(201, 161, 78, 0.25);

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 30px);
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background-color: var(--ivory);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  outline: none;
  background: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* ---------- Utilities ---------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.section-padding {
  padding: var(--space-4xl) 0;
}

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

/* ---------- Page Header / Breadcrumbs ---------- */
.page-header {
  position: relative;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  padding: calc(var(--header-height) + 50px) 0 var(--space-3xl);
  color: var(--white);
  text-align: center;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(201, 161, 78, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.page-header__title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: var(--space-md);
  position: relative;
  z-index: 2;
}

.page-header__subtitle {
  font-size: 1.1rem;
  color: var(--text-on-dark-muted);
  max-width: 700px;
  margin: 0 auto var(--space-lg);
  position: relative;
  z-index: 2;
}

.breadcrumbs {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.88rem;
  color: var(--gold-light);
  background: rgba(255, 255, 255, 0.08);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  border: 1px solid rgba(201, 161, 78, 0.25);
  position: relative;
  z-index: 2;
}

.breadcrumbs a {
  color: var(--text-on-dark-muted);
  transition: color var(--transition-fast);
}

.breadcrumbs a:hover {
  color: var(--white);
}

.breadcrumbs__sep {
  opacity: 0.5;
}

/* ---------- Typography ---------- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-md);
}

.section-label::before,
.section-label::after {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

.section-title--light {
  color: var(--white);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 650px;
  line-height: 1.8;
}

.section-subtitle--light {
  color: var(--text-on-dark-muted);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.8rem 1.8rem;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 50px;
  transition: all var(--transition-smooth);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  box-shadow: var(--shadow-gold);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(201, 161, 78, 0.4);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.btn--secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(4px);
}

.btn--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.btn--outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--call {
  background: linear-gradient(135deg, #27ae60, #1e8c4e);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(39, 174, 96, 0.3);
}

.btn--call:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(39, 174, 96, 0.45);
}

.btn-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ---------- Header / Navigation ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  transition: all var(--transition-smooth);
}

.header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(11, 26, 48, 0.94);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(201, 161, 78, 0.18);
  transition: all var(--transition-smooth);
}

.header--scrolled::before {
  background: rgba(11, 26, 48, 0.98);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.35);
}

.header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

/* Enhanced Logo Styling */
.header__logo {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  z-index: 10;
  text-decoration: none;
  flex-shrink: 0;
}

.header__logo-img {
  height: 72px;
  width: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 2.5px solid var(--gold);
  box-shadow: 0 0 20px rgba(201, 161, 78, 0.4);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.header__logo:hover .header__logo-img {
  transform: scale(1.05);
  box-shadow: 0 0 28px rgba(201, 161, 78, 0.6);
}

.header__logo-text {
  display: flex;
  flex-direction: column;
}

.header__logo-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  padding-right: 20px;
  text-transform: none !important;
}

.header__logo-tagline {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  padding-right: 20px;
  margin-top: 2px;
  text-transform: none !important;
}

/* Navigation List (Horizontal bar like St. Peter's) */
.nav {
  z-index: 5;
  height: 100%;
  display: flex;
  align-items: center;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 2px;
  height: 100%;
}

.nav__item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.nav__link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0.55rem 0.85rem;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--text-on-dark-muted);
  border-radius: 6px;
  transition: all var(--transition-fast);
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.nav__link:hover,
.nav__link--active,
.nav__item:hover > .nav__link {
  color: var(--white);
  background: rgba(201, 161, 78, 0.18);
}

.nav__link-caret {
  width: 12px;
  height: 12px;
  transition: transform var(--transition-fast);
}

.nav__item:hover .nav__link-caret {
  transform: rotate(180deg);
}

.nav__callout {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-left: var(--space-md);
  line-height: 1.2;
  flex-shrink: 0;
}

.nav__callout-sub {
  font-size: 0.68rem;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

.nav__callout-phone {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}

.nav__callout-phone:hover {
  color: var(--gold);
}

/* Standard Dropdown Menu (for "Others") */
.dropdown-menu {
  position: absolute;
  top: calc(100% - 10px);
  left: 0;
  min-width: 200px;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: 0 16px 40px rgba(11, 26, 48, 0.2);
  border: 1px solid var(--gray-200);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 8px 0;
  z-index: 100;
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
}

.nav__item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateY(0);
}

.dropdown-menu__item a {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 10px 18px;
  color: var(--text-primary);
  font-size: 0.88rem;
  font-weight: 500;
  transition: all var(--transition-fast);
}

.dropdown-menu__item a:hover {
  background: var(--ivory);
  color: var(--gold-dark);
  padding-left: 22px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  z-index: 10;
  padding: 8px;
  cursor: pointer;
}

.hamburger__line {
  width: 26px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

.hamburger--active .hamburger__line:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger--active .hamburger__line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger--active .hamburger__line:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile Nav Overlay */
.mobile-nav-overlay {
  display: none;
}

/* Emergency Banner */
.emergency-banner {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
  color: var(--navy-deep);
  text-align: center;
  padding: 0.5rem var(--space-xl);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
}

.emergency-banner__icon {
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-deep);
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  filter: blur(1px);
}

.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(11, 26, 48, 0.92) 0%,
    rgba(18, 39, 72, 0.85) 40%,
    rgba(26, 58, 107, 0.78) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: calc(var(--header-height) + 80px) var(--space-xl) var(--space-4xl);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.hero__text {
  max-width: 580px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.5rem 1.2rem;
  background: rgba(201, 161, 78, 0.12);
  border: 1px solid rgba(201, 161, 78, 0.3);
  border-radius: 50px;
  margin-bottom: var(--space-xl);
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  background: #27ae60;
  border-radius: 50%;
  animation: pulse-glow 2s ease-in-out infinite;
}

.hero__badge-text {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: var(--space-lg);
}

.hero__title-accent {
  color: var(--gold);
  display: block;
}

.hero__description {
  font-size: 1.1rem;
  color: var(--text-on-dark-muted);
  line-height: 1.8;
  margin-bottom: var(--space-2xl);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-3xl);
}

.hero__stats {
  display: flex;
  gap: var(--space-2xl);
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero__stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.hero__stat-label {
  font-size: 0.78rem;
  color: var(--text-on-dark-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Hero visual */
.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__cross-artwork {
  position: relative;
  width: 320px;
  height: 400px;
}

.hero__cross {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 180px;
}

.hero__cross-vertical {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 16px;
  height: 100%;
  background: linear-gradient(180deg, var(--gold), var(--gold-dark));
  border-radius: 4px;
}

.hero__cross-horizontal {
  position: absolute;
  top: 28%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 16px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  border-radius: 4px;
}

.hero__glow-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 1px solid rgba(201, 161, 78, 0.15);
  animation: ring-pulse 4s ease-in-out infinite;
}

@keyframes ring-pulse {
  0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.7; transform: translate(-50%, -50%) scale(1.05); }
}

/* ---------- Product Grid & Card Layout ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.product-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201, 161, 78, 0.35);
}

.product-card__image-wrapper {
  position: relative;
  height: 250px;
  overflow: hidden;
  background: var(--navy-deep);
}

.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.product-card:hover .product-card__image {
  transform: scale(1.06);
}

.product-card__badge {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  background: rgba(11, 26, 48, 0.85);
  backdrop-filter: blur(8px);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  border: 1px solid rgba(201, 161, 78, 0.3);
}

.product-card__body {
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-card__title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--space-xs);
}

.product-card__desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: var(--space-lg);
}

.product-card__specs {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: var(--space-xl);
  padding: var(--space-md);
  background: var(--ivory);
  border-radius: var(--border-radius-sm);
  border: 1px solid var(--gray-200);
}

.product-card__spec-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
}

.product-card__spec-label {
  color: var(--text-muted);
  font-weight: 500;
}

.product-card__spec-value {
  color: var(--navy);
  font-weight: 600;
}

.product-card__actions {
  margin-top: auto;
  display: flex;
  gap: var(--space-sm);
}

.product-card__actions .btn {
  flex: 1;
  padding: 0.65rem 1rem;
  font-size: 0.82rem;
}

/* ---------- Gallery Layout ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.gallery-item {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  height: 260px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}

.gallery-item__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-item:hover .gallery-item__image {
  transform: scale(1.08);
}

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 26, 48, 0.85) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-lg);
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.gallery-item:hover .gallery-item__overlay {
  opacity: 1;
}

.gallery-item__title {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
}

.gallery-item__category {
  color: var(--gold);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ---------- About & Services ---------- */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.about__image-wrapper {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about__image {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.about__image-badge {
  position: absolute;
  bottom: var(--space-xl);
  left: var(--space-xl);
  background: rgba(11, 26, 48, 0.85);
  backdrop-filter: blur(10px);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--border-radius);
  border: 1px solid rgba(201, 161, 78, 0.3);
}

.about__image-badge-number {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
}

.about__image-badge-text {
  font-size: 0.72rem;
  color: var(--text-on-dark-muted);
  text-transform: uppercase;
}

/* ---------- Why Choose Us ---------- */
.why-us {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  position: relative;
  overflow: hidden;
}

.why-us__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

.why-us__card {
  text-align: center;
  padding: var(--space-2xl) var(--space-lg);
  border-radius: var(--border-radius-lg);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all var(--transition-smooth);
}

.why-us__card-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 161, 78, 0.12);
  border-radius: 14px;
  color: var(--gold);
}

.why-us__card-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.why-us__card-desc {
  font-size: 0.88rem;
  color: var(--text-on-dark-muted);
}

/* ---------- Testimonials & CTA ---------- */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.testimonial-card {
  padding: var(--space-2xl);
  background: var(--white);
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--gray-200);
}

.testimonial-card__text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
  font-style: italic;
}

.testimonial-card__name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
}

.cta-banner {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-dark));
  padding: var(--space-3xl) 0;
}

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

.cta-banner__title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--navy-deep);
}

/* ---------- Contact Section ---------- */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
}

.contact__info-card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
  padding: var(--space-lg);
  background: var(--white);
  border-radius: var(--border-radius);
  border: 1px solid var(--gray-200);
  margin-bottom: var(--space-md);
}

.contact__info-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: var(--gold);
  border-radius: 12px;
  flex-shrink: 0;
}

.form__group {
  margin-bottom: var(--space-lg);
}

.form__label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.form__input, .form__textarea, .form__select {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--border-radius-sm);
  background: var(--ivory);
  outline: none;
}

.form__input:focus, .form__textarea:focus, .form__select:focus {
  border-color: var(--gold);
  background: var(--white);
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

/* ---------- Detail Grid ---------- */
.detail-content {
  background: var(--white);
  padding: var(--space-4xl) 0;
}

.detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-3xl);
}

.detail-main h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--navy);
  margin: var(--space-2xl) 0 var(--space-md);
}

.detail-main p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: var(--space-lg);
}

.sidebar-card {
  background: var(--navy-deep);
  color: var(--white);
  padding: var(--space-2xl);
  border-radius: var(--border-radius-lg);
  position: sticky;
  top: calc(var(--header-height) + 40px);
  border: 1px solid rgba(201, 161, 78, 0.25);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--navy-deep);
  color: var(--text-on-dark-muted);
}

.footer__main {
  padding: var(--space-4xl) 0 var(--space-2xl);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr;
  gap: var(--space-3xl);
}

.footer__brand-logo-img {
  height: 64px;
  width: 64px;
  border-radius: 50%;
  border: 2px solid rgba(201, 161, 78, 0.4);
}

.footer__brand-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--white);
}

.footer__bottom {
  padding: var(--space-lg) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__copyright a {
  color: var(--gold-light);
  text-decoration: underline;
}

/* ---------- Floating Buttons ---------- */
.whatsapp-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 998;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.4);
}

.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 100px;
  z-index: 998;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition-smooth);
}

.scroll-top--visible {
  opacity: 1;
  pointer-events: all;
}

/* ---------- Responsive ---------- */
@media (max-width: 1200px) {
  .nav__link {
    padding: 0.5rem 0.6rem;
    font-size: 0.82rem;
  }
}

@media (max-width: 1024px) {
  .hamburger { display: flex; }
  .nav { display: none; }

  .mobile-nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(11, 26, 48, 0.98);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    overflow-y: auto;
  }

  .mobile-nav-overlay--active {
    opacity: 1;
    visibility: visible;
  }

  .mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: calc(var(--header-height) + 20px) var(--space-xl) var(--space-3xl);
  }

  .mobile-nav__link {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--white);
    padding: 8px 0;
  }

  .about__grid, .detail-grid, .contact__grid {
    grid-template-columns: 1fr;
  }

  .why-us__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 768px) {
  .hero__content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero__visual { display: none; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .cta-banner__content { flex-direction: column; text-align: center; }
  .footer__grid { grid-template-columns: 1fr; }
}
