/* ═══════════════════════════════════════════════════════════════
   AJ KITCHEN — Design System & Styles
   Premium Catering Service Website
   ═══════════════════════════════════════════════════════════════ */

/* ─── DESIGN TOKENS ─────────────────────────────────────────── */
:root {
  /* Colors — Fresh & Vibrant Food Theme */
  --color-primary:       #16B978;       /* Fresh Green (Main Brand Color) */
  --color-primary-dark:  #12A06B;       /* Deep Green (Hover State) */
  --color-primary-light: #4CD69A;       /* Light Green (Accents) */
  --color-secondary:     #fe5722;       /* Vibrant Orange (Secondary Brand) */
  --color-secondary-dark:#e34e1f;       /* Deep Orange (Hover State) */
  --color-secondary-light:#ff7849;      /* Light Orange (Accents) */
  --color-accent:        #081B54;       /* Deep Navy Blue (Text Only) */
  --color-accent-light:  #0D2844;       /* Dark Blue Gray (Text Only) */

  --color-bg:            #FAFAFA;       /* Light Gray White */
  --color-bg-alt:        #F5F7FA;       /* Subtle Blue-Gray */
  --color-surface:       #FFFFFF;       /* Pure White */
  --color-surface-dark:  #16B978;       /* Fresh Green (matches primary) */

  --color-text:          #1A1A1A;       /* Primary text */
  --color-text-secondary:#6B6B6B;       /* Muted text */
  --color-text-light:    #FFFFFF;       /* Light text */
  --color-text-muted:    #9A9A9A;       /* Subtle text */

  --color-border:        #E5E5E5;       /* Neutral border */
  --color-border-light:  #F0F0F0;       /* Lighter border */

  /* Typography */
  --font-heading:  'Playfair Display', 'Georgia', serif;
  --font-body:     'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Type Scale — Fluid with clamp */
  --text-xs:    0.75rem;                /* 12px */
  --text-sm:    0.875rem;               /* 14px */
  --text-base:  1rem;                   /* 16px */
  --text-md:    1.125rem;               /* 18px */
  --text-lg:    1.25rem;                /* 20px */
  --text-xl:    clamp(1.25rem, 2vw, 1.5rem);
  --text-2xl:   clamp(1.5rem, 2.5vw, 2rem);
  --text-3xl:   clamp(1.875rem, 3vw, 2.5rem);
  --text-4xl:   clamp(2.25rem, 4vw, 3.5rem);
  --text-5xl:   clamp(2.75rem, 5vw, 4.5rem);

  /* Spacing */
  --space-xs:   4px;
  --space-sm:   8px;
  --space-md:   16px;
  --space-lg:   24px;
  --space-xl:   32px;
  --space-2xl:  48px;
  --space-3xl:  64px;
  --space-4xl:  96px;
  --space-5xl:  128px;

  /* Layout */
  --container-max:  1280px;
  --container-pad:  clamp(20px, 5vw, 80px);
  --section-pad:    clamp(64px, 10vw, 128px);

  /* Radius */
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   12px;
  --radius-xl:   16px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm:   0 1px 3px rgba(0,0,0,0.06);
  --shadow-md:   0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg:   0 8px 30px rgba(0,0,0,0.12);
  --shadow-xl:   0 20px 50px rgba(0,0,0,0.15);

  /* Transitions */
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.76, 0, 0.24, 1);
  --duration-fast:  200ms;
  --duration-base:  400ms;
  --duration-slow:  700ms;

  /* Z-index scale */
  --z-header: 1000;
  --z-overlay: 900;
  --z-dropdown: 800;
}


/* ─── RESET & BASE ──────────────────────────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-bg);
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

::selection {
  background: var(--color-primary);
  color: var(--color-surface);
}

:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}


/* ─── UTILITY ───────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.section-label--light {
  color: var(--color-secondary);
}

.section-title {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: 400;
  line-height: 1.15;
  color: var(--color-text);
  margin-bottom: var(--space-lg);
}

.section-subtitle {
  font-size: var(--text-md);
  color: var(--color-text-secondary);
  max-width: 560px;
  margin-inline: auto;
}

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

.section-text {
  font-size: var(--text-md);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-xl);
}


/* ─── BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--duration-base) var(--ease-out);
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-surface);
  border-color: var(--color-primary);
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--color-secondary);
  border-color: var(--color-secondary);
}

.btn-outline:hover {
  background: var(--color-secondary);
  color: var(--color-surface);
  border-color: var(--color-secondary);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 18px 40px;
  font-size: var(--text-sm);
}

.btn-block {
  width: 100%;
}


/* ─── HEADER / NAVIGATION ───────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-header);
  padding: var(--space-lg) 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
  transition: all var(--duration-base) var(--ease-out);
}

.site-header.scrolled {
  background: var(--color-primary);
  padding: var(--space-md) 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  z-index: calc(var(--z-header) + 1);
}

.logo-image {
  height: 40px;
  width: auto;
  display: block;
  transition: opacity var(--duration-base) var(--ease-out);
}

.logo-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.logo-icon {
  color: var(--color-primary);
  transition: color var(--duration-base) var(--ease-out);
}

.site-header.scrolled .logo-icon {
  color: var(--color-surface);
}

.logo-text {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: 0.02em;
  transition: color var(--duration-base) var(--ease-out);
  line-height: 1;
}

.site-header.scrolled .logo-text {
  color: var(--color-surface);
}

.logo-accent {
  font-weight: 600;
  opacity: 1;
  font-size: 0.9em;
  letter-spacing: 0.03em;
}

.logo-tagline {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--color-text);
  letter-spacing: 0.05em;
  text-transform: lowercase;
  font-style: italic;
  opacity: 0.9;
  transition: color var(--duration-base) var(--ease-out);
  line-height: 1;
}

.site-header.scrolled .logo-tagline {
  color: rgba(255, 255, 255, 0.65);
}

/* Nav */
.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.nav-link {
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--color-text);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-sm);
  transition: all var(--duration-fast) ease;
  letter-spacing: 0.01em;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-primary);
}

.nav-link.active {
  background: var(--color-bg-alt);
}

.site-header.scrolled .nav-link {
  color: rgba(255, 255, 255, 0.85);
}

.site-header.scrolled .nav-link:hover,
.site-header.scrolled .nav-link.active {
  color: var(--color-surface);
}

.site-header.scrolled .nav-link.active {
  background: rgba(255, 255, 255, 0.15);
}

/* Header CTA */
.header-cta {
  padding: 10px 24px;
  font-size: var(--text-xs);
}

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: calc(var(--z-header) + 1);
  padding: 0;
}

.hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all var(--duration-base) var(--ease-out);
  transform-origin: center;
}

.site-header.scrolled .hamburger-line {
  background: var(--color-surface);
}

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

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

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


/* ─── HERO ──────────────────────────────────────────────────── */
.hero {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  padding: var(--space-5xl) 10%;
  background: url('https://i.postimg.cc/pX41q1RD/Background-1-2x.png') no-repeat center;
  background-size: cover;
}

.hero-text {
  flex: 1 1 17rem;
  opacity: 1;
  transform: none;
}

.hero-text .hero-tagline {
  font-size: var(--text-base);
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-primary);
  display: block;
  margin-bottom: var(--space-sm);
}

.hero-text .hero-title {
  font-family: var(--font-heading);
  font-size: var(--text-5xl);
  font-weight: 600;
  line-height: 1.15;
  color: var(--color-primary);
  margin-bottom: var(--space-lg);
}

.hero-rotating-wrapper {
  display: inline-block;
  position: relative;
  overflow: hidden;
  vertical-align: bottom;
  height: 1.18em;
}

.hero-rotating-text {
  display: inline-block;
  position: relative;
  color: var(--color-secondary);
  animation: heroRotateIn 0.5s ease forwards;
}

@keyframes heroRotateIn {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroRotateOut {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-100%);
  }
}

.hero-text .hero-subtitle {
  font-size: var(--text-base);
  color: var(--color-text);
  line-height: 1.7;
  margin-bottom: var(--space-2xl);
}

.hero-img {
  flex: 1 1 17rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transform: none;
}

.hero-img img {
  width: 100%;
  max-width: 600px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}


/* ─── ABOUT / BRAND INTRO ───────────────────────────────────── */
.about {
  padding: var(--section-pad) 0;
  background: var(--color-bg);
}

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

.split-media {
  position: relative;
}

.about-img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.about-accent-box {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--color-secondary);
  color: var(--color-surface);
  padding: var(--space-xl) var(--space-2xl);
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.accent-number {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 600;
  line-height: 1;
}

.accent-label {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.4;
}

.split-content .section-title {
  text-align: left;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

.about-feature {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.feature-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
  color: var(--color-secondary);
  transition: all var(--duration-base) var(--ease-out);
}

.about-feature:hover .feature-icon {
  background: var(--color-primary);
  color: var(--color-surface);
  transform: scale(1.05);
}

.about-feature h4 {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

.about-feature p {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.6;
}


/* ─── GALLERY ───────────────────────────────────────────────── */
.gallery {
  padding: var(--section-pad) 0;
  background: var(--color-bg-alt);
}

.gallery-filter {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-2xl);
  flex-wrap: wrap;
}

.filter-btn {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  padding: var(--space-sm) var(--space-lg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  background: var(--color-surface);
  color: var(--color-text-secondary);
  cursor: pointer;
  transition: all var(--duration-fast) ease;
}

.filter-btn:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.filter-btn.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-surface);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: var(--space-md);
}

.gallery-card--tall {
  grid-row: span 2;
}

.gallery-card--wide {
  grid-column: span 2;
}

.gallery-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--duration-base) var(--ease-out);
}

.gallery-card:hover {
  border-color: var(--color-primary-light);
}

.gallery-card-img {
  width: 100%;
  height: 100%;
  position: relative;
}

.gallery-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.gallery-card:hover .gallery-card-img img {
  transform: scale(1.08);
}

.gallery-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0) 60%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-xl);
  opacity: 0;
  transition: opacity var(--duration-base) var(--ease-out);
}

.gallery-card:hover .gallery-card-overlay {
  opacity: 1;
}

.gallery-card-category {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-xs);
}

.gallery-card-title {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 400;
  color: var(--color-text-light);
  margin-bottom: var(--space-xs);
}

.gallery-card-overlay p {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.75);
}


/* ─── SERVICES ──────────────────────────────────────────────── */
.services {
  padding: var(--section-pad) 0;
  background: var(--color-bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
  max-width: 900px;
  margin-inline: auto;
}

.service-card {
  background: var(--color-surface);
  padding: var(--space-2xl) var(--space-xl);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-light);
  text-align: center;
  transition: all var(--duration-base) var(--ease-out);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-secondary-light);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
  color: var(--color-secondary);
  margin-bottom: var(--space-lg);
  transition: all var(--duration-base) var(--ease-out);
}

.service-icon--events {
  color: var(--color-primary);
}

.service-card:hover .service-icon {
  background: var(--color-secondary);
  color: var(--color-surface);
  transform: scale(1.1);
}

.service-card:hover .service-icon--events {
  background: var(--color-primary);
  color: var(--color-surface);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.service-card > p {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.service-card-list {
  text-align: left;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
  padding-inline: var(--space-md);
}

.service-card-list li {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.6;
  padding-left: var(--space-lg);
  position: relative;
}

.service-card-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-primary);
}

.service-card .btn-sm {
  margin-top: auto;
  padding: 10px 24px;
  font-size: var(--text-xs);
}


/* ─── PROCESS ───────────────────────────────────────────────── */
.process {
  padding: var(--section-pad) 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.process::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(22, 185, 120, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.process::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(254, 87, 34, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.process .section-label {
  color: var(--color-primary);
}

.process .section-title {
  color: var(--color-text);
}

.process .section-subtitle {
  color: var(--color-text-secondary);
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-xl);
  position: relative;
  margin-top: var(--space-3xl);
}

/* Connecting line with gradient */
.process-timeline::before {
  content: '';
  position: absolute;
  top: 48px;
  left: 10%;
  right: 10%;
  height: 3px;
  background: linear-gradient(
    to right,
    var(--color-primary) 0%,
    var(--color-secondary) 50%,
    var(--color-primary) 100%
  );
  opacity: 0.2;
  border-radius: 3px;
}

.process-step {
  text-align: center;
  position: relative;
  background: var(--color-surface);
  padding: var(--space-2xl) var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: all var(--duration-base) var(--ease-out);
  border: 2px solid transparent;
}

.process-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  border-color: var(--color-primary-light);
}

/* Alternate orange border for variety */
.process-step:nth-child(even):hover {
  border-color: var(--color-secondary-light);
}

.step-number {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: 600;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-md);
  position: relative;
  display: inline-block;
  z-index: 1;
}

/* Alternate orange gradient for even steps */
.process-step:nth-child(even) .step-number {
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.step-number::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(22, 185, 120, 0.08) 0%, rgba(22, 185, 120, 0.02) 100%);
  border-radius: 50%;
  z-index: -1;
}

.process-step:nth-child(even) .step-number::before {
  background: linear-gradient(135deg, rgba(254, 87, 34, 0.08) 0%, rgba(254, 87, 34, 0.02) 100%);
}

.step-number::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background: var(--color-primary);
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--color-surface), 0 0 0 6px rgba(22, 185, 120, 0.2);
  z-index: 2;
}

.process-step:nth-child(even) .step-number::after {
  background: var(--color-secondary);
  box-shadow: 0 0 0 4px var(--color-surface), 0 0 0 6px rgba(254, 87, 34, 0.2);
}

.step-content h3 {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: var(--color-text);
  margin-top: var(--space-lg);
}

.step-content p {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.6;
}


/* ─── TESTIMONIALS ──────────────────────────────────────────── */
.testimonials {
  padding: var(--section-pad) 0;
  background: var(--color-bg);
}

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

.testimonial-card {
  background: var(--color-surface);
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-light);
  transition: all var(--duration-base) var(--ease-out);
  position: relative;
}

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

.testimonial-quote {
  color: var(--color-accent);
  margin-bottom: var(--space-md);
}

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

.testimonial-text {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  line-height: 1.8;
  font-style: italic;
  border: none;
  padding: 0;
  margin-bottom: var(--space-xl);
}

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

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-border);
}

.author-name {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
}

.author-title {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}


/* ─── CTA ───────────────────────────────────────────────────── */
.cta {
  position: relative;
  padding: var(--section-pad) 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
}

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.82);
}

.cta-content {
  position: relative;
  text-align: center;
  z-index: 1;
}

.cta-title {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: 300;
  color: var(--color-text-light);
  margin-bottom: var(--space-lg);
  line-height: 1.15;
}

.cta-text {
  font-size: var(--text-md);
  color: rgba(255, 255, 255, 0.7);
  max-width: 560px;
  margin-inline: auto;
  margin-bottom: var(--space-2xl);
  line-height: 1.7;
}


/* ─── CONTACT ───────────────────────────────────────────────── */
.contact {
  padding: var(--section-pad) 0;
  background: var(--color-bg-alt);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

.contact-info h3 {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: var(--space-md);
}

.contact-info > p {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-2xl);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

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

.contact-item-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-surface);
  border-radius: var(--radius-md);
  color: var(--color-secondary);
}

.contact-item strong {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 2px;
}

.contact-item span {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.5;
}

.contact-item a {
  color: var(--color-secondary);
  transition: color var(--duration-fast) ease;
}

.contact-item a:hover {
  color: var(--color-primary);
}

/* Form */
.contact-form-wrapper {
  background: var(--color-surface);
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-sm);
}

/* WhatsApp CTA */
.contact-whatsapp-cta {
  background: var(--color-surface);
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1rem;
}

.whatsapp-cta-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 211, 102, 0.1);
  color: #25D366;
  border-radius: 50%;
}

.contact-whatsapp-cta h3 {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-heading);
}

.contact-whatsapp-cta p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 380px;
  line-height: 1.7;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #25D366;
  color: #fff;
  border: none;
  font-weight: 600;
  padding: 0.9rem 2rem;
  border-radius: var(--radius-full);
  font-size: var(--text-base);
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  background: #1ebe5b;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  color: #fff;
}

.whatsapp-cta-note {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-top: 0.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

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

.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.form-input {
  font-family: var(--font-body);
  font-size: var(--text-base);
  padding: 14px var(--space-md);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-bg);
  color: var(--color-text);
  transition: all var(--duration-fast) ease;
  appearance: none;
  -webkit-appearance: none;
}

.form-input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(22, 185, 120, 0.15);
}

.form-input::placeholder {
  color: var(--color-text-muted);
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236B6B6B' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-form .btn {
  margin-top: var(--space-sm);
}


/* ─── FOOTER ────────────────────────────────────────────────── */
.site-footer {
  background: var(--color-surface-dark);
  color: var(--color-text-light);
  padding: var(--space-4xl) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: var(--space-2xl);
  padding-bottom: var(--space-3xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo .logo-icon {
  color: var(--color-primary);
}

.footer-logo-image {
  height: 36px;
  width: auto;
  display: block;
}

.footer-tagline {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  margin-top: var(--space-md);
  margin-bottom: var(--space-lg);
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: var(--space-md);
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.6);
  transition: all var(--duration-fast) ease;
}

.social-link:hover {
  background: var(--color-primary);
  color: var(--color-surface);
  transform: translateY(-2px);
}

.footer-links h4 {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-text-light);
  margin-bottom: var(--space-lg);
}

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

.footer-links li,
.footer-links a {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  transition: color var(--duration-fast) ease;
}

.footer-links a:hover {
  color: var(--color-primary);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-xl) 0;
}

.footer-bottom p {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.4);
}

.footer-legal {
  display: flex;
  gap: var(--space-lg);
}

.footer-legal a {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.4);
  transition: color var(--duration-fast) ease;
}

.footer-legal a:hover {
  color: var(--color-primary);
}


/* ─── BACK TO TOP BUTTON ────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--color-primary);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(22, 185, 120, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.3s ease;
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--color-primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(22, 185, 120, 0.45);
}


/* ─── SCROLL REVEAL ANIMATIONS ──────────────────────────────── */
/* Progressive enhancement: Content visible by default, animated when JS adds .visible */
.reveal {
  opacity: 1;
  transform: none;
}

/* Only apply animation if JavaScript is working (when .js-enabled is added to html) */
html.js-enabled .reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--duration-slow) var(--ease-out),
              transform var(--duration-slow) var(--ease-out);
}

/* Hero should always be visible immediately */
.hero .hero-text,
.hero .hero-img {
  opacity: 1 !important;
  transform: none !important;
}

html.js-enabled .reveal.visible,
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.reveal.visible .service-card,
.reveal.visible .testimonial-card,
.reveal.visible .process-step,
.reveal.visible .gallery-card {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp var(--duration-slow) var(--ease-out) forwards;
}

.reveal.visible .service-card:nth-child(1),
.reveal.visible .testimonial-card:nth-child(1),
.reveal.visible .process-step:nth-child(1),
.reveal.visible .gallery-card:nth-child(1) { animation-delay: 0ms; }

.reveal.visible .service-card:nth-child(2),
.reveal.visible .testimonial-card:nth-child(2),
.reveal.visible .process-step:nth-child(2),
.reveal.visible .gallery-card:nth-child(2) { animation-delay: 100ms; }

.reveal.visible .service-card:nth-child(3),
.reveal.visible .testimonial-card:nth-child(3),
.reveal.visible .process-step:nth-child(3),
.reveal.visible .gallery-card:nth-child(3) { animation-delay: 200ms; }

.reveal.visible .service-card:nth-child(4),
.reveal.visible .process-step:nth-child(4),
.reveal.visible .gallery-card:nth-child(4) { animation-delay: 300ms; }

.reveal.visible .process-step:nth-child(5),
.reveal.visible .gallery-card:nth-child(5) { animation-delay: 400ms; }

.reveal.visible .gallery-card:nth-child(6) { animation-delay: 500ms; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ─── RESPONSIVE — TABLET ───────────────────────────────────── */
@media (max-width: 1024px) {
  /* Hero */
  .hero {
    padding: var(--space-4xl) 6%;
  }

  .hero-text .hero-title {
    font-size: clamp(3rem, 6vw, 4rem);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: none;
  }

  .process-timeline {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
  }

  .process-timeline::before {
    left: 16.66%;
    right: 16.66%;
  }

  .process-step {
    padding: var(--space-xl) var(--space-md);
  }

  .step-number {
    font-size: var(--text-3xl);
  }

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

  .testimonials-grid .testimonial-card:nth-child(3) {
    grid-column: span 2;
    max-width: 600px;
    margin-inline: auto;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 240px;
  }

  .gallery-card--wide {
    grid-column: span 2;
  }

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

  .split-layout {
    gap: var(--space-2xl);
  }

  .about-img {
    height: 420px;
  }
}


/* ─── RESPONSIVE — MOBILE ───────────────────────────────────── */
@media (max-width: 900px) {
  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
  }

  .process-timeline::before {
    left: 25%;
    right: 25%;
  }

  .process-step:nth-child(5) {
    grid-column: 1 / -1;
    max-width: 420px;
    margin-inline: auto;
  }
}

@media (max-width: 768px) {
  /* Prevent horizontal overflow */
  html, body {
    overflow-x: hidden;
  }

  /* Nav */
  .main-nav {
    position: fixed;
    inset: 0;
    background: #1a1a1a;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--duration-base) var(--ease-out);
    z-index: calc(var(--z-header) + 10);
  }

  .main-nav.open {
    opacity: 1;
    visibility: visible;
  }

  .nav-list {
    flex-direction: column;
    gap: var(--space-md);
    background: #222;
    padding: var(--space-2xl) var(--space-3xl);
    border-radius: var(--radius-lg);
  }

  .nav-link {
    font-size: var(--text-2xl);
    font-family: var(--font-heading);
    font-weight: 400;
    padding: var(--space-md) var(--space-lg);
    color: #ffffff;
    display: block;
    text-align: center;
    border-radius: var(--radius-md);
  }

  .nav-link:hover,
  .nav-link.active {
    color: #ffffff;
    background: var(--color-primary);
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  /* Logo mobile */
  .logo-image {
    height: 32px;
  }

  .logo-text {
    font-size: var(--text-base) !important;
  }

  .logo-tagline {
    font-size: 0.55rem;
  }

  /* Hero - stack vertically */
  .hero {
    flex-direction: column;
    padding: 120px 5% var(--space-3xl);
    min-height: auto;
    text-align: center;
    gap: var(--space-xl);
  }

  .hero-text {
    flex: none;
    width: 100%;
  }

  .hero-text .hero-title {
    font-size: clamp(2rem, 7vw, 3rem);
  }

  .hero-text .hero-subtitle {
    font-size: var(--text-sm);
    margin-inline: auto;
    max-width: 500px;
  }

  .hero-text .btn {
    width: 100%;
    max-width: 320px;
    margin-inline: auto;
  }

  .hero-img {
    flex: none;
    width: 100%;
    margin-top: 0;
  }

  .hero-img img {
    max-width: 350px;
    margin-inline: auto;
  }

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

  .about-img {
    height: 280px;
  }

  .about-accent-box {
    bottom: -16px;
    right: 16px;
    left: auto;
    padding: var(--space-md) var(--space-lg);
  }

  .accent-number {
    font-size: var(--text-2xl);
  }

  .split-content .section-title {
    text-align: center;
  }

  .split-content .section-label {
    text-align: center;
    display: block;
  }

  .split-content .section-text {
    text-align: center;
  }

  .about-features {
    align-items: center;
  }

  .about-feature {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .gallery-card--tall,
  .gallery-card--wide {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-card-overlay {
    opacity: 1;
  }

  .gallery-filter {
    gap: var(--space-xs);
  }

  .filter-btn {
    font-size: var(--text-xs);
    padding: var(--space-xs) var(--space-md);
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin-inline: auto;
  }

  /* Process */
  .process-timeline {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    max-width: 540px;
    margin-inline: auto;
  }

  .process-timeline::before {
    display: none;
  }

  .process-step {
    padding: var(--space-xl);
  }

  .process-step:hover {
    transform: translateY(-4px);
  }

  .process-step:nth-child(5) {
    grid-column: auto;
    max-width: none;
  }

  .step-number {
    font-size: var(--text-3xl);
  }

  .step-number::before {
    width: 64px;
    height: 64px;
  }

  .step-number::after {
    display: none;
  }

  .step-content h3 {
    font-size: var(--text-base);
  }

  /* Testimonials */
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid .testimonial-card:nth-child(3) {
    grid-column: span 1;
    max-width: none;
  }

  /* CTA */
  .cta-title {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
  }

  .cta-text {
    font-size: var(--text-sm);
  }

  /* 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);
    text-align: center;
  }

  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-logo {
    justify-content: center;
  }

  .footer-tagline {
    margin-inline: auto;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }

  .footer-legal {
    justify-content: center;
  }

  /* Section spacing */
  .section-header {
    margin-bottom: var(--space-2xl);
  }

  .section-title {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
  }

  /* Buttons */
  .btn-lg {
    padding: 16px 32px;
    font-size: var(--text-xs);
    width: 100%;
    max-width: 320px;
  }
}


/* ─── RESPONSIVE — SMALL MOBILE ─────────────────────────────── */
@media (max-width: 480px) {
  /* Hero small screen */
  .hero {
    padding: 100px 4% var(--space-2xl);
  }

  .hero-text .hero-title {
    font-size: clamp(1.75rem, 8vw, 2.25rem);
  }

  .hero-text .hero-subtitle {
    font-size: var(--text-sm);
    line-height: 1.6;
  }

  .hero-img img {
    max-width: 280px;
  }

  /* Logo smaller */
  .logo-image {
    height: 28px;
  }

  .logo-text {
    font-size: 0.9rem !important;
  }

  .logo-tagline {
    font-size: 0.5rem;
  }

  /* Section titles */
  .section-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .cta-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  /* About */
  .about-img {
    height: 220px;
  }

  .about-accent-box {
    right: 8px;
    bottom: -12px;
    padding: var(--space-sm) var(--space-md);
  }

  .accent-number {
    font-size: var(--text-xl);
  }

  .accent-label {
    font-size: 0.65rem;
  }

  /* Gallery */
  .gallery-grid {
    grid-auto-rows: 200px;
  }

  .gallery-card-title {
    font-size: var(--text-lg);
  }

  /* Filter buttons - scrollable on small screens */
  .gallery-filter {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: var(--space-xs);
    justify-content: flex-start;
  }

  .gallery-filter::-webkit-scrollbar {
    display: none;
  }

  .filter-btn {
    flex-shrink: 0;
  }

  /* Services */
  .service-card {
    padding: var(--space-xl) var(--space-lg);
  }

  .service-icon {
    width: 52px;
    height: 52px;
  }

  /* Process */
  .process-step {
    padding: var(--space-lg);
  }

  /* Testimonials */
  .testimonial-card {
    padding: var(--space-lg);
  }

  .testimonial-text {
    font-size: var(--text-sm);
  }

  /* Contact form */
  .contact-form-wrapper {
    padding: var(--space-lg);
  }

  .form-input {
    font-size: var(--text-sm);
    padding: 12px var(--space-md);
  }

  /* Footer */
  .footer-logo-image {
    height: 28px;
  }

  .footer-links ul {
    gap: var(--space-xs);
  }

  /* Buttons */
  .btn-lg {
    padding: 14px 24px;
  }

  .btn {
    padding: 12px 24px;
    font-size: var(--text-xs);
  }

  /* Touch targets - minimum 44px */
  .nav-link,
  .social-link,
  .filter-btn {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .contact-item {
    gap: var(--space-sm);
  }

  .contact-item-icon {
    width: 40px;
    height: 40px;
  }
}

/* ─── RESPONSIVE — EXTRA SMALL ──────────────────────────────── */
@media (max-width: 360px) {
  .hero {
    padding: 90px 3% var(--space-xl);
  }

  .hero-text .hero-title {
    font-size: 1.6rem;
  }

  .hero-img img {
    max-width: 240px;
  }

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

  .cta-title {
    font-size: 1.4rem;
  }

  .logo-content {
    display: none;
  }

  .logo-image {
    height: 32px;
  }

  .container {
    padding-inline: 16px;
  }

  .about-accent-box {
    display: none;
  }
}


/* ─── PAGE HERO (Sub-pages) ──────────────────────────────────── */
.page-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--space-5xl) + 40px) var(--container-pad) var(--space-3xl);
  overflow: hidden;
}

.page-hero--events {
  background: url('https://images.unsplash.com/photo-1519225421980-715cb0215aed?w=1920&q=60&auto=format&fit=crop') no-repeat center;
  background-size: cover;
}

.page-hero--corporate {
  background: url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1920&q=60&auto=format&fit=crop') no-repeat center;
  background-size: cover;
}

.page-hero--about {
  background: url('https://images.unsplash.com/photo-1556910103-1c02745aae4d?w=1920&q=60&auto=format&fit=crop') no-repeat center;
  background-size: cover;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8, 27, 84, 0.82) 0%, rgba(22, 185, 120, 0.55) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
}

.page-hero-title {
  font-family: var(--font-heading);
  font-size: var(--text-5xl);
  font-weight: 400;
  color: var(--color-text-light);
  margin-bottom: var(--space-lg);
  line-height: 1.15;
}

.page-hero-subtitle {
  font-size: var(--text-md);
  color: rgba(255, 255, 255, 0.8);
  max-width: 640px;
  margin-inline: auto;
  line-height: 1.7;
}


/* ─── EVENTS INTRO ──────────────────────────────────────────── */
.events-intro {
  padding: var(--section-pad) 0 var(--space-2xl);
  background: var(--color-bg);
}


/* ─── EVENT DETAIL SECTIONS ─────────────────────────────────── */
.event-detail {
  padding: var(--space-3xl) 0;
  background: var(--color-bg);
}

.event-detail--alt {
  background: var(--color-bg-alt);
}

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

.event-detail-grid--reverse {
  direction: rtl;
}

.event-detail-grid--reverse > * {
  direction: ltr;
}

.event-detail-media {
  position: relative;
}

.event-detail-img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.event-badge {
  position: absolute;
  top: var(--space-lg);
  left: var(--space-lg);
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: var(--color-surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.event-badge--secondary {
  background: var(--color-secondary);
}

.event-detail-content .section-title {
  text-align: left;
}

.event-detail-content .section-label {
  text-align: left;
  display: block;
}

.event-highlights {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
}

.event-highlights li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.highlight-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}

.event-highlights span {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.6;
}


/* ─── EVENT / CORPORATE STATS ───────────────────────────────── */
.event-stats {
  padding: var(--space-3xl) 0;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
}

.event-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  text-align: center;
}

.stat-item {
  padding: var(--space-xl);
}

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: 600;
  color: var(--color-text-light);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.stat-label {
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}


/* ─── CORPORATE PROCESS ─────────────────────────────────────── */
.corporate-process {
  padding: var(--section-pad) 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.corporate-process::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(22, 185, 120, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}


/* ─── CORPORATE TRUST FEATURES ──────────────────────────────── */
.corporate-trust {
  padding: var(--section-pad) 0;
  background: var(--color-bg);
}

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

.corporate-feature-card {
  background: var(--color-surface);
  padding: var(--space-2xl) var(--space-xl);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-light);
  text-align: center;
  transition: all var(--duration-base) var(--ease-out);
}

.corporate-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary-light);
}

.corporate-feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  margin-bottom: var(--space-lg);
  transition: all var(--duration-base) var(--ease-out);
}

.corporate-feature-card:hover .corporate-feature-icon {
  background: var(--color-primary);
  color: var(--color-surface);
  transform: scale(1.1);
}

.corporate-feature-card h3 {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: var(--space-md);
}

.corporate-feature-card p {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.7;
}


/* ─── CLIENT LOGOS ───────────────────────────────────────────── */
.client-logos {
  padding: var(--space-3xl) 0;
  background: var(--color-bg-alt);
}

.client-logos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.client-logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-xl) var(--space-lg);
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-light);
  transition: all var(--duration-base) var(--ease-out);
}

.client-logo-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary-light);
}

.client-logo-item img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: var(--radius-sm);
  filter: grayscale(100%) opacity(0.6);
  transition: filter var(--duration-base) var(--ease-out);
}

.client-logo-item:hover img {
  filter: grayscale(0%) opacity(1);
}

.client-logo-item span {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-secondary);
  text-align: center;
}

.client-logo-item:hover span {
  color: var(--color-text);
}


/* ─── SUB-PAGE RESPONSIVE — TABLET ──────────────────────────── */
@media (max-width: 1024px) {
  .event-detail-grid {
    gap: var(--space-2xl);
  }

  .event-detail-img {
    height: 360px;
  }

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

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

  .client-logos-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ─── SUB-PAGE RESPONSIVE — MOBILE ──────────────────────────── */
@media (max-width: 768px) {
  .page-hero {
    min-height: 320px;
    padding: calc(var(--space-4xl) + 40px) var(--container-pad) var(--space-2xl);
  }

  .page-hero-title {
    font-size: clamp(2rem, 7vw, 3rem);
  }

  .page-hero-subtitle {
    font-size: var(--text-sm);
  }

  .event-detail-grid,
  .event-detail-grid--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .event-detail-grid--reverse > * {
    direction: ltr;
  }

  .event-detail-img {
    height: 260px;
  }

  .event-detail-content .section-title,
  .event-detail-content .section-label,
  .event-detail-content .section-text {
    text-align: center;
  }

  .event-highlights {
    align-items: flex-start;
  }

  .event-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }

  .stat-number {
    font-size: var(--text-3xl);
  }

  .corporate-features-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-inline: auto;
  }

  .client-logos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }

  .client-logo-item {
    padding: var(--space-lg) var(--space-md);
  }

  .client-logo-item img {
    width: 48px;
    height: 48px;
  }
}

@media (max-width: 480px) {
  .page-hero {
    min-height: 280px;
    padding: calc(var(--space-3xl) + 60px) 5% var(--space-xl);
  }

  .page-hero-title {
    font-size: clamp(1.75rem, 8vw, 2.25rem);
  }

  .event-detail-img {
    height: 200px;
  }

  .event-stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stat-item {
    padding: var(--space-md);
  }

  .stat-number {
    font-size: var(--text-2xl);
  }

  .stat-label {
    font-size: var(--text-xs);
  }
}


/* ─── ABOUT PAGE ────────────────────────────────────────────── */

/* Story Section */
.about-story {
  padding: var(--space-section) 0;
  background: var(--color-bg);
}

.about-story-highlights {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

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

.story-highlight-number {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-primary);
}

.story-highlight-label {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* Milestones Timeline */
.about-milestones {
  padding: var(--space-section) 0;
  background: var(--color-surface);
}

.milestones-timeline {
  max-width: 800px;
  margin: 2.5rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.milestone-item {
  display: grid;
  grid-template-columns: 110px 40px 1fr;
  align-items: start;
  gap: 0;
}

.milestone-date {
  text-align: right;
  padding-top: 0.2rem;
  padding-right: 1rem;
}

.milestone-day {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}

.milestone-month {
  display: block;
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.15rem;
}

.milestone-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.milestone-dot {
  width: 14px;
  height: 14px;
  background: var(--color-primary);
  border: 3px solid var(--color-surface);
  box-shadow: 0 0 0 2px var(--color-primary);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.45rem;
  z-index: 1;
}

.milestone-line {
  width: 2px;
  flex: 1;
  min-height: 60px;
  background: linear-gradient(to bottom, var(--color-primary), rgba(22, 185, 120, 0.2));
}

.milestone-item:last-child .milestone-line {
  display: none;
}

.milestone-content {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.3rem 1.5rem;
  margin-bottom: 1.5rem;
  margin-left: 0.8rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.milestone-content:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

.milestone-content h3 {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-heading);
  margin-bottom: 0.35rem;
}

.milestone-content p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}

.milestone-item--highlight .milestone-dot {
  background: var(--color-secondary);
  box-shadow: 0 0 0 2px var(--color-secondary);
}

.milestone-item--highlight .milestone-content {
  border-color: rgba(254, 87, 34, 0.25);
  background: linear-gradient(135deg, rgba(254, 87, 34, 0.04) 0%, rgba(22, 185, 120, 0.04) 100%);
}

.milestone-item--highlight .milestone-day {
  color: var(--color-secondary);
}

/* Motto Section */
.about-motto {
  position: relative;
  padding: 6rem 0;
  background: url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=1920&q=60&auto=format&fit=crop') no-repeat center;
  background-size: cover;
  background-attachment: fixed;
  text-align: center;
  color: #fff;
}

.about-motto-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8, 27, 84, 0.88) 0%, rgba(22, 185, 120, 0.65) 100%);
}

.about-motto-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
  margin: 0 auto;
}

.motto-sanskrit {
  margin-bottom: 0.5rem;
}

.motto-devanagari {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  opacity: 0.95;
}

.motto-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.motto-translate {
  font-size: var(--text-xl);
  font-style: italic;
  opacity: 0.9;
  margin-bottom: 1rem;
}

.motto-divider {
  width: 60px;
  height: 3px;
  background: var(--color-primary);
  margin: 1.5rem auto;
  border-radius: 2px;
}

.motto-description {
  font-size: var(--text-base);
  line-height: 1.8;
  opacity: 0.92;
  margin-bottom: 2.5rem;
}

.motto-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 1rem;
}

.motto-pillar {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 2rem 1.2rem;
  backdrop-filter: blur(6px);
  transition: transform 0.3s ease, background 0.3s ease;
}

.motto-pillar:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.14);
}

.motto-pillar-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(22, 185, 120, 0.2);
  border-radius: 50%;
  margin: 0 auto 1rem;
  color: var(--color-primary);
}

.motto-pillar h4 {
  font-size: var(--text-base);
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.motto-pillar p {
  font-size: var(--text-sm);
  opacity: 0.82;
  line-height: 1.6;
}

/* Kitchen Gallery */
.about-kitchen {
  padding: var(--space-section) 0;
  background: var(--color-surface);
}

.kitchen-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
  gap: 1.2rem;
  margin-top: 2rem;
}

.kitchen-gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.kitchen-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.kitchen-gallery-item:hover img {
  transform: scale(1.06);
}

.kitchen-gallery-item--large {
  grid-column: span 2;
  grid-row: span 2;
}

.kitchen-gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, transparent 100%);
  color: #fff;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.kitchen-gallery-item:hover .kitchen-gallery-caption {
  transform: translateY(0);
}

.kitchen-gallery-caption h4 {
  font-size: var(--text-base);
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.kitchen-gallery-caption p {
  font-size: var(--text-sm);
  opacity: 0.85;
}

/* Certifications */
.about-certifications {
  padding: var(--space-section) 0;
  background: var(--color-bg);
}

.certifications-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.certification-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid var(--color-border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.certification-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(22, 185, 120, 0.1);
  color: var(--color-primary);
  border-radius: 50%;
  margin: 0 auto 1.2rem;
}

.certification-card h3 {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-heading);
  margin-bottom: 0.5rem;
}

.certification-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.certification-badge {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-primary);
  background: rgba(22, 185, 120, 0.08);
  border: 1px solid rgba(22, 185, 120, 0.2);
  border-radius: 999px;
}

/* ── About Page Responsive ── */
@media (max-width: 1024px) {
  .certifications-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .kitchen-gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 240px;
  }

  .kitchen-gallery-item--large {
    grid-column: span 2;
    grid-row: span 1;
  }

  .milestone-item {
    grid-template-columns: 90px 36px 1fr;
  }
}

@media (max-width: 768px) {
  .motto-pillars {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .about-motto {
    background-attachment: scroll;
  }

  .about-story-highlights {
    flex-direction: column;
    gap: 1rem;
  }

  .kitchen-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .kitchen-gallery-item--large {
    grid-column: span 1;
  }

  .kitchen-gallery-caption {
    transform: translateY(0);
  }

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

  .milestone-item {
    grid-template-columns: 70px 30px 1fr;
  }

  .milestone-date {
    padding-right: 0.5rem;
  }

  .milestone-day {
    font-size: var(--text-lg);
  }

  .milestone-content {
    margin-left: 0.4rem;
    padding: 1rem 1.2rem;
  }
}


/* ─── REDUCED MOTION ────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
