/* ============================================================
   LANCE REINIGUNG & ALLROUND-SERVICE – STYLE.CSS
   Design System: Clean Blue + Soft Gray + Sky Blue Accent
   Location: Aachen, Germany
   Tonality: Locker & Familiär (casual, friendly)
   ============================================================ */

/* ──────────────────────────────────────────────────────────────
   1. CUSTOM PROPERTIES (Design Tokens)
   ────────────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  /* Colors */
  --color-bg: #FAFBFD;
  --color-surface: #FFFFFF;
  --color-primary: #0F172A;
  --color-secondary: #F1F5F9;
  --color-accent: #0284C7;
  --color-accent-light: #E0F2FE;
  --color-accent-hover: #0369A1;
  --color-text: #1E293B;
  --color-muted: #64748B;
  --color-border: #E2E8F0;

  /* Shadows */
  --shadow-soft: 0 2px 12px rgba(15, 23, 42, 0.04);
  --shadow-medium: 0 4px 24px rgba(15, 23, 42, 0.08);
  --shadow-large: 0 12px 48px rgba(15, 23, 42, 0.12);

  /* Radii */
  --radius: 12px;
  --radius-sm: 8px;
  --radius-full: 9999px;

  /* Layout */
  --container: 1200px;
  --space-section: clamp(40px, 5vw, 50px);

  /* Typography */
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}


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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

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

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

ul, ol {
  list-style: none;
}

button, input, textarea, select {
  font: inherit;
  color: inherit;
  border: none;
  outline: none;
  background: none;
}

button {
  cursor: pointer;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-primary);
}

section[id] {
  scroll-margin-top: 0;
}

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


/* ──────────────────────────────────────────────────────────────
   3. LAYOUT UTILITIES
   ────────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.section {
  padding-top: var(--space-section);
  padding-bottom: var(--space-section);
}

.grid {
  display: grid;
  gap: 24px;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.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: 0;
}

.desktop-only {
  display: none;
}

.mobile-only {
  display: block;
}

.accent-text {
  color: var(--color-accent);
}

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

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  background: var(--color-secondary);
  color: var(--color-primary);
}

.card {
  background: var(--color-surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.card:hover {
  box-shadow: var(--shadow-medium);
  transform: translateY(-2px);
}

.uppercase {
  text-transform: uppercase;
}

.tracking-wide {
  letter-spacing: 0.06em;
}

.font-display {
  font-family: var(--font-display);
}

.font-body {
  font-family: var(--font-body);
}

.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.fw-800 { font-weight: 800; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }


/* ──────────────────────────────────────────────────────────────
   4. NAVIGATION
   ────────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--color-surface);
  box-shadow: 0 2px 20px rgba(15, 23, 42, 0.05);
  transition: background 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
  padding: 8px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
  height: 72px; /* Symmetrical and compact */
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--color-primary);
  position: relative;
  z-index: 1001;
  white-space: nowrap;
  transition: color 0.4s ease;
}

.nav-scrolled .nav-logo {
  color: var(--color-primary);
}

.nav-logo-accent {
  color: var(--color-accent);
}

.nav-logo-icon {
  max-width: 160px;
  max-height: 160px;
  width: auto;
  height: 52px; /* Always compact */
  object-fit: contain;
  transition: height 0.3s ease;
}

.nav-scrolled .nav-logo-icon {
  height: 52px;
}

.nav-links {
  flex-grow: 1;
  display: none;
  justify-content: center;
  align-items: center;
  gap: 32px;
}

.nav-link {
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--color-text);
  position: relative;
  padding: 4px 0;
  transition: color 0.3s ease;
}

.nav-scrolled .nav-link {
  color: var(--color-text);
}

.nav-link:hover {
  color: var(--color-accent);
}

.nav-active {
  color: var(--color-accent) !important;
}

.nav-active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  background: var(--color-accent);
  border-radius: 50%;
}

.nav-right {
  display: none;
  align-items: center;
  gap: 20px;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-scrolled .nav-phone {
  color: var(--color-text);
}

.nav-phone:hover {
  color: var(--color-accent);
}

.nav-phone svg,
.nav-phone i {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-primary);
  background: var(--color-accent);
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--color-accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(219, 210, 107, 0.35);
}

/* Hamburger */
.nav-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
  position: relative;
  background: none;
  border: none;
  padding: 0;
  margin-left: auto;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
  transition: transform 0.35s ease, opacity 0.25s ease, background 0.3s ease;
}

.nav-scrolled .nav-hamburger span {
  background: var(--color-primary);
}

.nav-hamburger.active span {
  background: var(--color-surface);
}

.nav-hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

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

.nav-hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Nav Overlay */
.nav-mobile {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  background: linear-gradient(170deg, var(--color-primary) 0%, #2a0000 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

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

.nav-mobile-link {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-surface);
  text-decoration: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease, color 0.3s ease;
}

.nav-mobile.active .nav-mobile-link {
  opacity: 1;
  transform: translateY(0);
}

.nav-mobile.active .nav-mobile-link:nth-child(1) { transition-delay: 0.1s; }
.nav-mobile.active .nav-mobile-link:nth-child(2) { transition-delay: 0.15s; }
.nav-mobile.active .nav-mobile-link:nth-child(3) { transition-delay: 0.2s; }
.nav-mobile.active .nav-mobile-link:nth-child(4) { transition-delay: 0.25s; }
.nav-mobile.active .nav-mobile-link:nth-child(5) { transition-delay: 0.3s; }
.nav-mobile.active .nav-mobile-link:nth-child(6) { transition-delay: 0.35s; }
.nav-mobile.active .nav-mobile-link:nth-child(7) { transition-delay: 0.4s; }

.nav-mobile-link:hover {
  color: var(--color-accent);
}

.nav-mobile-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  padding: 14px 36px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-primary);
  background: var(--color-accent);
  border-radius: var(--radius-full);
  text-decoration: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease 0.4s, transform 0.4s ease 0.4s, background 0.3s ease;
}

.nav-mobile.active .nav-mobile-cta {
  opacity: 1;
  transform: translateY(0);
}

.nav-mobile-cta:hover {
  background: var(--color-accent-hover);
}

/* Nav States */
.nav-hidden {
  transform: translateY(-100%);
}

.nav-scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(77, 0, 0, 0.08);
  padding: 4px 0;
}


/* ──────────────────────────────────────────────────────────────
   5. HERO
   ────────────────────────────────────────────────────────────── */
.hero {
  min-height: auto;
  display: flex;
  align-items: center;
  background: linear-gradient(165deg, var(--color-secondary) 0%, var(--color-bg) 100%);
  position: relative;
  overflow: hidden;
  padding: 120px 0 40px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 80%;
  height: 160%;
  background: radial-gradient(ellipse, rgba(2, 132, 199, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  text-align: center;
  order: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent-hover);
  background: var(--color-accent-light);
  border: 1px solid rgba(2, 132, 199, 0.2);
  border-radius: var(--radius-full);
  margin-bottom: 14px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--color-primary);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.hero-title .accent {
  color: var(--color-accent);
  position: relative;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  line-height: 1.7;
  color: var(--color-text);
  max-width: 520px;
  margin-bottom: 22px;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.hero-stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.hero-stat-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-accent-hover);
}

.hero-stat-label {
  font-size: 0.82rem;
  color: var(--color-muted);
  letter-spacing: 0.02em;
}

.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: var(--color-border);
  align-self: center;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  order: 1;
  display: flex;
  justify-content: center;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-large);
  width: 100%;
  max-width: 520px;
  aspect-ratio: 4 / 3;
}

.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Float Cards – positioned OUTSIDE hero-image-wrapper */
.hero-float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius);
  padding: 12px 16px;
  box-shadow: var(--shadow-medium);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 5;
  animation: floatCard 6s ease-in-out infinite;
}

.hero-float-card--badge {
  top: 10%;
  left: -10px;
}

.hero-float-card--top {
  top: 8%;
  right: -10px;
  animation-delay: -1.5s;
}

.hero-float-card--bottom {
  bottom: 18%;
  left: -10px;
  animation-delay: -3s;
}

.hero-float-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--color-secondary);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.hero-float-text {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.3;
}

.hero-float-subtext {
  font-size: 0.75rem;
  color: var(--color-muted);
  font-weight: 400;
}

.hero-phone-card {
  position: absolute;
  bottom: 10%;
  right: -10px;
  background: var(--color-accent);
  color: var(--color-primary);
  border-radius: var(--radius);
  padding: 12px 18px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-medium);
  text-decoration: none;
  z-index: 5;
  transition: background 0.3s ease, transform 0.2s ease;
  animation: floatCard 6s ease-in-out infinite;
  animation-delay: -4.5s;
}

.hero-phone-card:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}


/* ──────────────────────────────────────────────────────────────
   6. STATS BAR
   ────────────────────────────────────────────────────────────── */
.stats-bar {
  background: linear-gradient(135deg, var(--color-primary) 0%, #3a0000 100%);
  padding: 32px 0;
  position: relative;
  overflow: hidden;
}

.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 25%,
    rgba(255, 255, 255, 0.03) 25%,
    rgba(255, 255, 255, 0.03) 25.5%
  );
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  text-align: center;
}

.stats-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.stats-number {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1.1;
}

.stats-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.02em;
}


/* ──────────────────────────────────────────────────────────────
   7. SECTION HEADERS
   ────────────────────────────────────────────────────────────── */
.section-header {
  margin-bottom: 36px;
}

.section-header h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--color-primary);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.section-header p {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  color: var(--color-muted);
  max-width: 560px;
  line-height: 1.7;
}

.text-center .section-header p,
.section-header.text-center p {
  margin-left: auto;
  margin-right: auto;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: var(--color-secondary);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
}

.section-underline {
  display: block;
  width: 48px;
  height: 3px;
  background: var(--color-accent);
  border-radius: var(--radius-full);
  margin-top: 14px;
}

.text-center .section-underline,
.section-header.text-center .section-underline {
  margin-left: auto;
  margin-right: auto;
}


/* ──────────────────────────────────────────────────────────────
   8. BUTTONS
   ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease,
              transform 0.2s ease, box-shadow 0.3s ease;
  white-space: nowrap;
  line-height: 1.3;
}

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

.btn-primary:hover {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(219, 210, 107, 0.35);
}

.btn-secondary {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.7);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #ffffff;
  color: #ffffff;
  transform: translateY(-2px);
}

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

.btn-dark:hover {
  background: #3a0000;
  border-color: #3a0000;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(77, 0, 0, 0.25);
}

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

.btn-white:hover {
  background: var(--color-secondary);
  border-color: var(--color-secondary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1rem;
}

.btn-sm {
  padding: 9px 20px;
  font-size: 0.84rem;
}

.btn-full {
  width: 100%;
}

.btn svg,
.btn i {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}


/* ──────────────────────────────────────────────────────────────
   9. SERVICES
   ────────────────────────────────────────────────────────────── */
.services {
  background: var(--color-bg);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.service-card {
  background: var(--color-surface);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--color-border);
  transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-card:hover {
  box-shadow: var(--shadow-medium);
  transform: translateY(-4px);
  border-color: var(--color-accent);
}

.service-card--image {
  padding: 0;
  overflow: hidden;
}

.service-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.service-card--image .service-card-inner {
  padding: 24px;
}

.service-card-inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-grow: 1;
}

.service-card-inner h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-primary);
}

.service-card-inner p {
  font-size: 0.92rem;
  color: var(--color-muted);
  line-height: 1.7;
  flex-grow: 1;
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--color-secondary);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: background 0.3s ease, color 0.3s ease;
}

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

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  padding: 8px 0;
  transition: color 0.3s ease, gap 0.3s ease;
  margin-top: auto;
}

.service-card-link:hover {
  color: var(--color-accent-hover);
  gap: 10px;
}

.service-card-link::after {
  content: '→';
  transition: transform 0.3s ease;
}

.service-card-link:hover::after {
  transform: translateX(4px);
}


/* ──────────────────────────────────────────────────────────────
   10. TRUST
   ────────────────────────────────────────────────────────────── */
.trust {
  background: var(--color-secondary);
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.trust-card {
  background: var(--color-surface);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--color-border);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.trust-card:hover {
  box-shadow: var(--shadow-medium);
  transform: translateY(-3px);
}

.trust-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: var(--color-secondary);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  transition: background 0.3s ease;
}

.trust-card:hover .trust-icon {
  background: var(--color-accent-light);
}

.trust-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-primary);
}

.trust-card p {
  font-size: 0.9rem;
  color: var(--color-muted);
  line-height: 1.65;
}

.trust-stat {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--color-accent-hover);
}


/* ──────────────────────────────────────────────────────────────
   11. ABOUT
   ────────────────────────────────────────────────────────────── */
.about {
  background: var(--color-bg);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.about-content {
  order: 2;
}

.about-content h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 16px;
}

.about-content p {
  font-size: 0.95rem;
  color: var(--color-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-image-wrapper {
  position: relative;
  order: 1;
}

.about-image-wrapper img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-medium);
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.about-image-badge {
  position: absolute;
  bottom: -16px;
  right: 16px;
  background: var(--color-primary);
  color: var(--color-surface);
  padding: 16px 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-medium);
  text-align: center;
  z-index: 2;
}

.about-image-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1.1;
}

.about-image-badge span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.03em;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 20px;
  margin-bottom: 24px;
}

.about-content .btn {
  margin-top: 8px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--color-surface);
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  font-size: 0.9rem;
  line-height: 1.4;
}

.about-feature:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-soft);
}

.about-feature-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: var(--color-secondary);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.about-feature h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0;
}

.about-feature p {
  font-size: 0.82rem;
  color: var(--color-muted);
  line-height: 1.5;
  margin-bottom: 0;
}


/* ──────────────────────────────────────────────────────────────
   12. GALLERY
   ────────────────────────────────────────────────────────────── */
.gallery {
  background: var(--color-secondary);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4 / 3;
}

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

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(77, 0, 0, 0.65) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

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

.gallery-caption {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: #FFFFFF;
  transform: translateY(10px);
  transition: transform 0.4s ease;
}

.gallery-caption h4 {
  color: #FFFFFF;
  margin-bottom: 4px;
}

.gallery-caption p {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
}

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


/* ──────────────────────────────────────────────────────────────
   13. CONTACT
   ────────────────────────────────────────────────────────────── */
.contact {
  scroll-margin-top: 0;
  background: var(--color-bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}

.contact-info {
  order: 2;
}

.contact-info h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.contact-info > p {
  font-size: 0.92rem;
  color: var(--color-muted);
  margin-bottom: 24px;
  line-height: 1.7;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: var(--color-surface);
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-detail:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-soft);
}

.contact-detail-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: var(--color-secondary);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-detail-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-detail-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-muted);
}

.contact-detail-value {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text);
  line-height: 1.5;
}

.contact-detail-value a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-detail-value a:hover {
  color: var(--color-accent-hover);
}

.contact-map-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  padding: 10px 0;
  transition: color 0.3s ease, gap 0.3s ease;
}

.contact-map-link:hover {
  color: var(--color-accent-hover);
  gap: 12px;
}

/* Contact Form */
.contact-form-wrapper {
  order: 1;
  background: var(--color-surface);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--color-border);
}

.contact-form-wrapper h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 20px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

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

.form-group label {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text);
}

.form-group label span {
  color: var(--color-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--color-text);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(219, 210, 107, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-muted);
  opacity: 0.6;
}

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

.form-group 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 d='M6 8.825L1.175 4 2.238 2.938 6 6.7 9.763 2.938 10.825 4z' fill='%238B7355'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--color-muted);
  line-height: 1.5;
}

.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--color-primary);
  flex-shrink: 0;
  cursor: pointer;
}

.form-checkbox a {
  color: var(--color-primary);
  text-decoration: underline;
  text-decoration-color: var(--color-border);
  text-underline-offset: 2px;
  transition: text-decoration-color 0.3s ease;
}

.form-checkbox a:hover {
  text-decoration-color: var(--color-primary);
}

.form-submit {
  margin-top: 4px;
}

/* Form Success */
.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  gap: 16px;
}

.form-success.active {
  display: flex;
}

.form-success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-accent);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  animation: successPop 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

@keyframes successPop {
  0% { transform: scale(0); }
  80% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

.form-success h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0;
}

.form-success p {
  font-size: 0.92rem;
  color: var(--color-muted);
  max-width: 360px;
}


/* ──────────────────────────────────────────────────────────────
   14. CTA BANNER
   ────────────────────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(140deg, var(--color-primary) 0%, #2a0000 100%);
  padding: clamp(40px, 6vw, 60px) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(219, 210, 107, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: var(--color-surface);
  margin-bottom: 12px;
  position: relative;
}

.cta-banner p {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  color: rgba(255, 255, 255, 0.7);
  max-width: 520px;
  margin: 0 auto 28px;
  position: relative;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: center;
  position: relative;
}


/* ──────────────────────────────────────────────────────────────
   15. FAQ
   ────────────────────────────────────────────────────────────── */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.faq-item {
  background: var(--color-surface);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--color-border);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-soft);
}

.faq-item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 10px;
  line-height: 1.4;
}

.faq-answer-always {
  font-size: 0.92rem;
  color: var(--color-muted);
  line-height: 1.7;
}


/* ──────────────────────────────────────────────────────────────
   16. FOOTER
   ────────────────────────────────────────────────────────────── */
.footer {
  background: linear-gradient(175deg, var(--color-primary) 0%, #1a0000 100%);
  padding-top: clamp(40px, 5vw, 56px);
  color: rgba(255, 255, 255, 0.75);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  max-width: 320px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 14px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--color-surface);
  text-decoration: none;
  margin-bottom: 4px;
}

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

.footer-logo-icon {
  max-width: 160px;
  max-height: 160px;
  width: auto;
  height: 80px;
  object-fit: contain;
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-surface);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-link:hover {
  color: var(--color-accent);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 12px;
  line-height: 1.6;
}

.footer-contact-item a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-contact-item svg,
.footer-contact-item i {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
  opacity: 0.6;
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
  padding: 11px 24px;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-primary);
  background: var(--color-accent);
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.footer-cta:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(219, 210, 107, 0.3);
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px 0;
  text-align: center;
}

.footer-copy {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.footer-legal a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.3s ease;
}

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


/* ──────────────────────────────────────────────────────────────
   17. LEGAL PAGES
   ────────────────────────────────────────────────────────────── */
.legal-page {
  background: var(--color-bg);
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-section) 20px;
}

.legal-content h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  margin-bottom: 8px;
  color: var(--color-primary);
}

.legal-content h2 {
  font-size: 1.3rem;
  margin-top: 32px;
  margin-bottom: 12px;
  color: var(--color-primary);
}

.legal-content h3 {
  font-size: 1.1rem;
  margin-top: 24px;
  margin-bottom: 8px;
  color: var(--color-primary);
}

.legal-content p {
  font-size: 0.95rem;
  color: var(--color-muted);
  line-height: 1.8;
  margin-bottom: 14px;
}

.legal-content ul,
.legal-content ol {
  margin-bottom: 14px;
  padding-left: 24px;
}

.legal-content li {
  font-size: 0.95rem;
  color: var(--color-muted);
  line-height: 1.8;
  margin-bottom: 6px;
  list-style: disc;
}

.legal-content ol li {
  list-style: decimal;
}

.legal-content a {
  color: var(--color-primary);
  text-decoration: underline;
  text-decoration-color: var(--color-border);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.3s ease;
}

.legal-content a:hover {
  text-decoration-color: var(--color-primary);
}

.legal-updated {
  font-size: 0.85rem;
  color: var(--color-muted);
  margin-bottom: 32px;
  font-style: italic;
}

.legal-placeholder {
  background: var(--color-secondary);
  border: 2px dashed var(--color-border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  color: var(--color-muted);
  font-size: 0.92rem;
  margin: 20px 0;
}


/* ──────────────────────────────────────────────────────────────
   18. PAGE HERO (Subpages)
   ────────────────────────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(165deg, var(--color-primary) 0%, #2a0000 100%);
  padding-top: clamp(100px, 12vh, 120px);
  padding-bottom: clamp(30px, 4vh, 40px);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 60%;
  height: 180%;
  background: radial-gradient(ellipse, rgba(219, 210, 107, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero h1 {
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--color-surface);
  margin-bottom: 10px;
  position: relative;
}

.page-hero p {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  color: rgba(255, 255, 255, 0.65);
  max-width: 520px;
  position: relative;
}

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
  font-size: 0.85rem;
  position: relative;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: var(--color-accent);
}

.breadcrumb-sep {
  color: rgba(255, 255, 255, 0.3);
}

.breadcrumb-current {
  color: var(--color-accent);
  font-weight: 500;
}


/* ──────────────────────────────────────────────────────────────
   19. DETAIL SERVICES (Subpages)
   ────────────────────────────────────────────────────────────── */
.detail-services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.detail-service-card {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--color-surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--color-border);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.detail-service-card:hover {
  box-shadow: var(--shadow-medium);
  transform: translateY(-3px);
}

.detail-service-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.detail-service-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.detail-service-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-primary);
}

.detail-service-content p {
  font-size: 0.92rem;
  color: var(--color-muted);
  line-height: 1.7;
}

.detail-service-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}

.detail-service-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--color-text);
}

.detail-service-feature::before {
  content: '✓';
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-accent-light);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}


/* ──────────────────────────────────────────────────────────────
   20. SCROLL REVEAL ANIMATIONS
   ────────────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}

.reveal-scale.active {
  opacity: 1;
  transform: scale(1);
}

.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; }
.reveal-delay-5 { transition-delay: 0.5s; }


/* ──────────────────────────────────────────────────────────────
   21. LIGHTBOX / MODAL (Gallery)
   ────────────────────────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-large);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  cursor: pointer;
  border: none;
  transition: background 0.3s ease;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
}


/* ──────────────────────────────────────────────────────────────
   22. COOKIE BANNER
   ────────────────────────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-surface);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.1);
  padding: 20px;
  z-index: 3000;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.active {
  transform: translateY(0);
}

.cookie-banner-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
}

.cookie-banner p {
  font-size: 0.88rem;
  color: var(--color-muted);
  line-height: 1.6;
}

.cookie-banner p a {
  color: var(--color-primary);
  text-decoration: underline;
}

.cookie-banner-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}


/* ──────────────────────────────────────────────────────────────
   23. BACK TO TOP BUTTON
   ────────────────────────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  border: none;
  box-shadow: var(--shadow-medium);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.3s ease;
  z-index: 900;
}

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

.back-to-top:hover {
  background: var(--color-accent);
  color: var(--color-primary);
}


/* ──────────────────────────────────────────────────────────────
   24. LOADING / SKELETON
   ────────────────────────────────────────────────────────────── */
.skeleton {
  background: linear-gradient(90deg, var(--color-border) 25%, var(--color-secondary) 50%, var(--color-border) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-sm);
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}


@media (max-width: 639px) {
  .about-features {
    grid-template-columns: 1fr;
  }
}

/* ──────────────────────────────────────────────────────────────
   25. RESPONSIVE – TABLET (≥ 640px)
   ────────────────────────────────────────────────────────────── */
@media (min-width: 640px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .hero-ctas {
    flex-direction: row;
    justify-content: center;
  }

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

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

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

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

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

  .stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
  }

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

  .cta-buttons {
    flex-direction: row;
  }

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

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

  .detail-services-grid {
    grid-template-columns: 1fr;
  }

  .cookie-banner-inner {
    flex-direction: row;
    text-align: left;
  }
}


/* ──────────────────────────────────────────────────────────────
   26. RESPONSIVE – DESKTOP (≥ 1024px)
   ────────────────────────────────────────────────────────────── */
@media (min-width: 1024px) {
  .container {
    padding-left: 32px;
    padding-right: 32px;
  }

  .desktop-only {
    display: block;
  }

  .mobile-only {
    display: none;
  }

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

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

  /* Nav Desktop */
  .nav-inner {
    height: 96px;
  }

  .nav-links {
    display: flex;
  }

  .nav-right {
    display: flex;
  }

  .nav-hamburger {
    display: none;
  }

  /* Hero Desktop */
  .hero {
    min-height: auto;
    padding: 130px 0 50px;
  }

  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }

  .hero-content {
    text-align: left;
    order: 1;
    padding: 40px 0;
  }

  .hero-subtitle {
    margin-left: 0;
    margin-right: 0;
  }

  .hero-ctas {
    justify-content: flex-start;
  }

  .hero-stats {
    justify-content: flex-start;
  }

  .hero-visual {
    order: 2;
    justify-content: flex-end;
  }

  .hero-image-wrapper {
    max-width: 480px;
    aspect-ratio: 4 / 3;
  }

  .hero-float-card--badge {
    left: -30px;
  }

  .hero-float-card--top {
    right: -30px;
  }

  .hero-float-card--bottom {
    left: -30px;
  }

  .hero-phone-card {
    right: -30px;
  }

  /* Services Desktop */
  .services-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .service-card-image {
    height: 220px;
  }

  /* Trust Desktop */
  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  /* About Desktop */
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 56px;
  }

  .about-content {
    order: 2;
  }

  .about-image-wrapper {
    order: 1;
  }

  /* Gallery Desktop */
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-grid .gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
  }

  /* Contact Desktop */
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }

  .contact-info {
    order: 1;
  }

  .contact-form-wrapper {
    order: 2;
    padding: 36px;
  }

  /* Detail Services Desktop */
  .detail-service-card {
    grid-template-columns: 380px 1fr;
  }

  .detail-service-image {
    height: 100%;
    min-height: 280px;
  }

  .detail-service-content {
    padding: 36px;
  }

  /* Footer Desktop */
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }

  /* FAQ Desktop */
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}


/* ──────────────────────────────────────────────────────────────
   27. RESPONSIVE – WIDE (≥ 1280px)
   ────────────────────────────────────────────────────────────── */
@media (min-width: 1280px) {
  .hero-grid {
    gap: 80px;
  }

  .hero-image-wrapper {
    max-width: 520px;
  }

  .hero-float-card--badge {
    left: -45px;
  }

  .hero-float-card--top {
    right: -45px;
  }

  .hero-float-card--bottom {
    left: -45px;
  }

  .hero-phone-card {
    right: -45px;
  }

  .about-grid {
    gap: 72px;
  }

  .nav-links {
    gap: 36px;
  }
}


/* ──────────────────────────────────────────────────────────────
   28. 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,
  .reveal-left,
  .reveal-right,
  .reveal-scale {
    opacity: 1;
    transform: none;
  }

  .hero-float-card,
  .hero-phone-card {
    animation: none;
  }
}


/* ──────────────────────────────────────────────────────────────
   29. PRINT STYLES
   ────────────────────────────────────────────────────────────── */
@media print {
  .nav,
  .nav-mobile,
  .back-to-top,
  .cookie-banner,
  .cta-banner,
  .hero-float-card,
  .hero-phone-card {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
    font-size: 12pt;
  }

  .hero {
    min-height: auto;
    background: none;
    padding: 20px 0;
  }

  .hero-title,
  .page-hero h1 {
    color: #000;
  }

  .section {
    padding: 16px 0;
    page-break-inside: avoid;
  }

  .footer {
    background: none;
    color: #333;
  }
}


/* ──────────────────────────────────────────────────────────────
   30. FOCUS & ACCESSIBILITY
   ────────────────────────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: 4px;
}

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

.nav-link:focus-visible,
.footer-link:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 4px;
  border-radius: 4px;
}


/* ──────────────────────────────────────────────────────────────
   31. CUSTOM SCROLLBAR
   ────────────────────────────────────────────────────────────── */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--color-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--color-border);
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-muted);
}


/* ──────────────────────────────────────────────────────────────
   32. SPECIFIC ELEMENT OVERRIDES
   ────────────────────────────────────────────────────────────── */

/* Google Maps embed responsive */
.contact-map {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  margin-top: 20px;
  border: 1px solid var(--color-border);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Phone link styling within hero */
.hero-content a {
  color: inherit;
  text-decoration: none;
}

/* Image placeholders */
.img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-border) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-muted);
  font-size: 0.85rem;
  font-style: italic;
}

/* Section alt background pattern */
.section-alt {
  background: var(--color-secondary);
}

/* Hover underline for text links */
.link-underline {
  text-decoration: underline;
  text-decoration-color: var(--color-border);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.3s ease;
}

.link-underline:hover {
  text-decoration-color: var(--color-primary);
}

/* Star rating */
.stars {
  display: flex;
  gap: 2px;
  color: var(--color-accent);
  font-size: 1rem;
}

/* Decorative dot separator */
.dot-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-muted);
  display: inline-block;
  vertical-align: middle;
  margin: 0 8px;
}

/* Smooth body scroll lock for mobile nav */
body.nav-open {
  overflow: hidden;
}

/* Booking page specific */
.booking-info {
  background: var(--color-surface);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
}

.booking-info h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.booking-info p {
  font-size: 0.92rem;
  color: var(--color-muted);
  line-height: 1.7;
}

/* Ensure no horizontal overflow */
html, body {
  overflow-x: hidden;
}

/* Active nav mobile link indicator */
.nav-mobile-link.active {
  color: var(--color-accent);
}

/* Contact form wrapper heading with icon */
.contact-form-wrapper h3 svg,
.contact-form-wrapper h3 i {
  display: inline;
  vertical-align: middle;
  margin-right: 8px;
}

/* Smooth loading transition */
.page-loaded .reveal {
  transition: opacity 0.8s ease, transform 0.8s ease;
}


/* ============================================================
   WHATSAPP INTEGRATION & FLOATING BUTTON
   ============================================================ */

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background-color: #25D366;
  color: #fff !important;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 999;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px) scale(1.05);
  background-color: #20ba5a;
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

/* Navigation WhatsApp link */
.nav-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #25D366 !important;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-whatsapp:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.nav-whatsapp svg {
  fill: currentColor;
}
