/* ─── CSS VARIABLES ────────────────────────────── */
:root {
  /* Brand Colors - from brief #006d8f */
  --color-accent:       #006d8f;
  --color-accent-hover: #005a76;
  --color-accent-soft:  rgba(0, 109, 143, 0.15);
  --color-accent-rgb:   0, 109, 143;

  /* UNIQUE: Warm secondary accent — teal + amber = bariluf only */
  --color-warm:       #D4915A;
  --color-warm-soft:  rgba(212, 145, 90, 0.12);
  --color-warm-hover: #C07E48;

  /* Backgrounds */
  --bg-primary:    #FAFAFA;
  --bg-primary-rgb: 250, 250, 250;
  --bg-secondary:  #F0F4F5;
  --bg-warm:       #FDF8F3;
  --bg-dark:       #1A2A30;
  --bg-darkest:    #0F1A1E;

  /* Text */
  --text-primary:   #0A0A0A;
  --text-secondary: #5A6B70;
  --text-muted:     #8A9CA1;
  --text-on-accent: #FFFFFF;
  --text-on-dark:   #E8ECEE;

  /* Borders */
  --border-color:      rgba(0,0,0,0.08);
  --border-color-dark: rgba(255,255,255,0.08);

  /* Typography */
  --font-heading: 'Varela Round', sans-serif;
  --font-body:    'Varela Round', sans-serif;
  --text-xs:   12px;
  --text-sm:   14px;
  --text-base: 16px;
  --text-lg:   18px;
  --text-xl:   20px;
  --text-2xl:  24px;
  --text-3xl:  32px;
  --text-4xl:  clamp(40px, 5vw, 56px);
  --text-hero: clamp(48px, 8vw, 96px);
  --line-height-base: 1.6;

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

  /* Design — UNIQUE: rounder, softer than other sites */
  --border-radius: 20px;
  --border-radius-sm: 10px;
  --border-radius-pill: 999px;
  --shadow-sm: 0 4px 20px rgba(0, 109, 143, 0.06);
  --shadow-md: 0 12px 40px rgba(0, 109, 143, 0.10);
  --transition-fast: 0.22s ease;
  --transition-med:  0.36s ease;
  --container-max: 1200px;
}

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

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

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--line-height-base);
  color: var(--text-primary);
  background: var(--bg-primary);
  text-align: right;
  word-break: keep-all;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

ul, ol {
  list-style: none;
}

/* ─── TYPOGRAPHY ──────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

h1 { font-size: var(--text-4xl); letter-spacing: -0.02em; }
h2 { font-size: var(--text-3xl); letter-spacing: -0.02em; }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }

p {
  max-width: 65ch;
  line-height: var(--line-height-base);
}

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

/* ─── SECTIONS ────────────────────────────────── */
.section {
  padding-block: var(--space-2xl);
  position: relative;
  overflow: hidden;
}

.section--secondary {
  background: var(--bg-secondary);
}

/* UNIQUE: warm background variant */
.section--warm {
  background: var(--bg-warm);
}

.section--dark {
  background: var(--bg-dark);
  color: var(--text-on-dark);
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--text-on-dark);
}

.section--darkest {
  background: var(--bg-darkest);
  color: var(--text-on-dark);
}

/* UNIQUE: Gradient section — teal to dark, no other site has this */
.section--gradient {
  background: linear-gradient(135deg, #006d8f 0%, #004d66 40%, #1A2A30 100%);
  color: var(--text-on-dark);
}

.section--gradient h2,
.section--gradient h3,
.section--gradient h4 {
  color: #FFFFFF;
}

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

.section-tag {
  display: inline-block;
  border: 1px solid var(--color-accent);
  background: var(--color-accent-soft);
  color: var(--color-accent);
  padding: 6px 16px;
  border-radius: var(--border-radius-pill);
  font-size: var(--text-sm);
  font-weight: 600;
  margin-bottom: var(--space-md);
}

.section--dark .section-tag,
.section--gradient .section-tag {
  border-color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.1);
  color: var(--text-on-dark);
}

/* UNIQUE: Warm tag variant */
.section-tag--warm {
  border-color: var(--color-warm);
  background: var(--color-warm-soft);
  color: var(--color-warm);
}

.section-title {
  margin-bottom: var(--space-md);
}

.section-title span {
  color: var(--color-accent);
}

.section--dark .section-title span,
.section--gradient .section-title span {
  color: #4db8d4;
}

.section-subtitle {
  font-size: var(--text-xl);
  color: var(--text-secondary);
  max-width: 60ch;
  margin: 0 auto;
}

.section--dark .section-subtitle,
.section--gradient .section-subtitle {
  color: rgba(255,255,255,0.7);
}

/* ─── WAVE DIVIDERS — UNIQUE TO BARILUF ──────── */
.wave-divider {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 2;
}

.wave-divider--top {
  bottom: auto;
  top: -1px;
  transform: rotate(180deg);
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: 48px;
}

/* ─── ORGANIC BLOB DECORATIONS — UNIQUE ─────── */
.blob-decoration {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}

.blob-decoration--teal {
  background: var(--color-accent);
}

.blob-decoration--warm {
  background: var(--color-warm);
}

/* ─── BUTTONS — UNIQUE: pill shape ───────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--border-radius-pill);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
  text-decoration: none;
  line-height: 1;
}

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

.btn-primary:hover {
  background: var(--color-accent-hover);
  color: var(--text-on-accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--color-accent-soft);
}

.btn-secondary {
  background: transparent;
  border: 1.5px solid var(--color-accent);
  color: var(--color-accent);
}

.btn-secondary:hover {
  background: var(--color-accent-soft);
  color: var(--color-accent);
}

/* UNIQUE: warm CTA button */
.btn-warm {
  background: var(--color-warm);
  color: #FFFFFF;
}

.btn-warm:hover {
  background: var(--color-warm-hover);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--color-warm-soft);
}

.btn-white {
  background: #FFFFFF;
  color: var(--color-accent);
}

.btn-white:hover {
  background: #F0F4F5;
  color: var(--color-accent-hover);
  transform: translateY(-2px);
}

/* ─── CARDS — UNIQUE: accent top border ──────── */
.card {
  border-radius: var(--border-radius);
  border: 0.5px solid var(--border-color);
  border-top: 3px solid var(--color-accent);
  box-shadow: var(--shadow-sm);
  padding: var(--space-lg);
  background: #FFFFFF;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

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

/* UNIQUE: warm accent card variant */
.card--warm {
  border-top-color: var(--color-warm);
}

.card--dark {
  background: rgba(255,255,255,0.05);
  border-color: var(--border-color-dark);
  border-top-color: rgba(255,255,255,0.2);
  backdrop-filter: blur(12px);
}

/* UNIQUE: card with no top accent (for testimonials etc) */
.card--flat {
  border-top: 0.5px solid var(--border-color);
}

/* ─── FORMS ───────────────────────────────────── */
.field {
  position: relative;
  margin-bottom: var(--space-md);
}

.field label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: var(--space-xs);
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--text-primary);
  background: #FFFFFF;
  outline: none;
  text-align: right;
  direction: rtl;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px var(--color-accent-soft);
}

.field input.error,
.field textarea.error {
  border-color: #DC2626;
}

.field .error-msg {
  color: #DC2626;
  font-size: var(--text-sm);
  margin-top: var(--space-xs);
}

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

::placeholder {
  text-align: right;
  direction: rtl;
  color: var(--text-muted);
}

/* Floating label */
.field--float {
  position: relative;
}

.field--float label {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: var(--text-base);
  color: var(--text-muted);
  pointer-events: none;
  transition: transform var(--transition-fast), font-size var(--transition-fast), color var(--transition-fast);
  background: #FFFFFF;
  padding: 0 4px;
  margin-bottom: 0;
}

.field--float textarea ~ label {
  top: 14px;
  transform: none;
}

.field--float input:focus ~ label,
.field--float input:not(:placeholder-shown) ~ label,
.field--float textarea:focus ~ label,
.field--float textarea:not(:placeholder-shown) ~ label {
  transform: translateY(-28px);
  font-size: var(--text-xs);
  color: var(--color-accent);
}

/* Dark section forms */
.section--dark .field input,
.section--dark .field textarea,
.section--gradient .field input,
.section--gradient .field textarea {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.35);
  color: #FFFFFF;
}

.section--dark .field input::placeholder,
.section--dark .field textarea::placeholder,
.section--gradient .field input::placeholder,
.section--gradient .field textarea::placeholder {
  color: rgba(255,255,255,0.65);
}

.section--dark .field--float label,
.section--gradient .field--float label {
  background: transparent;
  color: rgba(255,255,255,0.65);
}

.section--dark .field--float input:focus ~ label,
.section--dark .field--float input:not(:placeholder-shown) ~ label,
.section--gradient .field--float input:focus ~ label,
.section--gradient .field--float input:not(:placeholder-shown) ~ label {
  color: #4db8d4;
}

/* Form success message */
.form-success {
  text-align: center;
  padding: var(--space-xl) var(--space-lg);
  animation: fadeInUp 0.36s ease;
}

.form-success svg {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-md);
  color: var(--color-accent);
}

.form-success h3 {
  margin-bottom: var(--space-sm);
}

/* ─── HEADER ──────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  backdrop-filter: blur(16px);
  background: rgba(var(--bg-primary-rgb), 0.85);
  border-bottom: 0.5px solid var(--border-color);
  transition: height var(--transition-med), box-shadow var(--transition-med);
  height: 80px;
}

.site-header.scrolled {
  height: 56px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.header-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header-logo {
  flex-shrink: 0;
}

.header-logo img,
.header-logo svg {
  height: 60px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

.logo-text {
  font-family: 'Rubik', sans-serif;
  font-weight: 900;
  font-size: 26px;
  color: var(--color-accent);
  letter-spacing: -0.5px;
}

.site-header.scrolled .header-logo img,
.site-header.scrolled .header-logo svg {
  height: 44px;
}

.header-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.header-nav ul {
  display: flex;
  gap: var(--space-lg);
  justify-content: center;
  align-items: center;
  text-align: center;
}

.header-nav a {
  color: var(--text-primary);
  font-size: var(--text-sm);
  font-weight: 600;
  padding: 8px 0;
  position: relative;
  transition: color var(--transition-fast);
}

/* UNIQUE: dot underline instead of line underline */
.header-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 50%;
  transform: translateX(50%);
  width: 0;
  height: 4px;
  border-radius: 50%;
  background: var(--color-accent);
  transition: width var(--transition-fast);
}

.header-nav a:hover::after,
.header-nav a.active::after {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.header-nav a.active {
  color: var(--color-accent);
}

.header-cta {
  flex-shrink: 0;
}

.header-cta .btn {
  padding: 10px 20px;
  font-size: var(--text-sm);
}

/* Mobile menu button */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  margin: 5px 0;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile drawer */
.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  height: 100vh;
  background: var(--bg-primary);
  z-index: 999;
  transform: translateX(100%);
  transition: transform var(--transition-med);
  padding: 100px var(--space-lg) var(--space-lg);
  box-shadow: -4px 0 20px rgba(0,0,0,0.1);
  overflow-y: auto;
}

.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  text-align: center;
  align-items: center;
}

.mobile-nav a {
  display: block;
  text-align: center;
  color: var(--text-primary);
  font-size: var(--text-lg);
  font-weight: 600;
  padding: 12px;
}

.mobile-nav a.active {
  color: var(--color-accent);
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-med), visibility var(--transition-med);
}

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

/* ─── HERO ────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero--inner {
  min-height: 60vh;
  padding-block: var(--space-2xl);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

/* UNIQUE: warmer overlay with teal tint */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,45,60,0.75) 0%, rgba(0,109,143,0.25) 40%, transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 0 var(--space-md);
}

.hero .section-tag {
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.15);
  color: #FFFFFF;
}

.hero h1 {
  font-size: var(--text-hero);
  color: #FFFFFF;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-md);
  text-shadow: 0 2px 40px rgba(0,0,0,0.3);
}

.hero p {
  font-size: var(--text-xl);
  color: rgba(255,255,255,0.9);
  margin: 0 auto var(--space-lg);
  max-width: 55ch;
}

.hero-buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-lg);
}

.hero-social-proof {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
}

.hero-social-proof svg {
  color: #FBBF24;
}

/* Inner page hero (no image) */
/* UNIQUE: gradient with warm tint */
.hero--text {
  background: linear-gradient(135deg, var(--bg-dark) 0%, #1a3540 60%, #2a3d35 100%);
  min-height: auto;
  padding: 140px 0 80px;
}

.hero--text h1 {
  font-size: var(--text-4xl);
}

/* ─── FOOTER ──────────────────────────────────── */
.site-footer {
  background: var(--bg-darkest);
  color: var(--text-on-dark);
  padding-block: var(--space-xl);
}

.footer-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

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

.footer-brand {
  text-align: right;
}

.footer-brand p {
  color: rgba(255,255,255,0.7);
  font-size: var(--text-sm);
  margin-top: var(--space-md);
  max-width: 30ch;
}

.footer-heading {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-md);
  color: #FFFFFF;
}

.footer-links a {
  display: block;
  color: rgba(255,255,255,0.7);
  font-size: var(--text-sm);
  padding: 4px 0;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: #FFFFFF;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: rgba(255,255,255,0.7);
  font-size: var(--text-sm);
  margin-bottom: var(--space-sm);
}

.footer-contact-item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--color-accent);
  stroke-width: 1.5;
}

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

/* UNIQUE: rounded square social icons instead of circles */
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: var(--border-radius-sm);
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.footer-social a:hover {
  background: var(--color-accent);
  transform: translateY(-2px);
}

.footer-social svg {
  width: 20px;
  height: 20px;
  color: #FFFFFF;
  stroke-width: 1.5;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: var(--space-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
  text-align: center;
}

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

.footer-bottom a {
  color: rgba(255,255,255,0.7);
}

.footer-bottom a:hover {
  color: #FFFFFF;
}

.footer-credit {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.5);
}

.footer-credit a {
  color: var(--color-accent);
  font-weight: 600;
}

/* ─── FLOATING BUTTONS ────────────────────────── */
.floating-buttons {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

/* UNIQUE: squircle shape instead of circle */
.floating-btn {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  border: none;
  cursor: pointer;
}

.floating-btn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 24px rgba(0,0,0,0.3);
}

.floating-btn--whatsapp {
  background: #25D366;
  color: #FFFFFF;
}

.floating-btn--phone {
  background: var(--color-accent);
  color: #FFFFFF;
}

.floating-btn svg {
  width: 24px;
  height: 24px;
}

/* ─── SCROLL ANIMATIONS ──────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--transition-med), transform var(--transition-med);
}

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

.stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--transition-med), transform var(--transition-med);
}

.stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.stagger.visible > *:nth-child(2) { transition-delay: 0.08s; }
.stagger.visible > *:nth-child(3) { transition-delay: 0.08s; }
.stagger.visible > *:nth-child(4) { transition-delay: 0.24s; }
.stagger.visible > *:nth-child(5) { transition-delay: 0.32s; }
.stagger.visible > *:nth-child(6) { transition-delay: 0.40s; }
.stagger.visible > *:nth-child(7) { transition-delay: 0.48s; }
.stagger.visible > *:nth-child(8) { transition-delay: 0.56s; }

.stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ─── GRID UTILITIES ──────────────────────────── */
.grid-2 { display: grid; grid-template-columns: 1fr; gap: var(--space-lg); }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: var(--space-lg); }
.grid-4 { display: grid; grid-template-columns: 1fr; gap: var(--space-lg); }

/* ─── BREADCRUMBS ─────────────────────────────── */
.breadcrumbs {
  padding: var(--space-md) 0;
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.6);
}

.breadcrumbs a {
  color: rgba(255,255,255,0.7);
}

.breadcrumbs a:hover {
  color: #FFFFFF;
}

.breadcrumbs span {
  margin: 0 var(--space-sm);
}

/* ─── IMAGE CONTAINERS ────────────────────────── */
.img-container {
  overflow: hidden;
  border-radius: var(--border-radius);
}

.img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-med);
}

.img-container:hover img {
  transform: scale(1.04);
}

/* ─── ACCORDION (FAQ) ─────────────────────────── */
.accordion-item {
  border: 0.5px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  margin-bottom: var(--space-sm);
  overflow: hidden;
  background: #FFFFFF;
}

.accordion-trigger {
  width: 100%;
  padding: var(--space-md) var(--space-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--text-primary);
  text-align: right;
  transition: background var(--transition-fast);
}

.accordion-trigger:hover {
  background: var(--bg-secondary);
}

.accordion-icon {
  width: 24px;
  height: 24px;
  color: var(--color-accent);
  transition: transform var(--transition-fast);
  flex-shrink: 0;
  stroke-width: 1.5;
}

.accordion-item.open .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-med);
}

.accordion-content-inner {
  padding: 0 var(--space-lg) var(--space-lg);
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ─── TESTIMONIALS — UNIQUE: horizontal scroll ── */
.testimonials-scroll {
  display: flex;
  gap: var(--space-lg);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding-bottom: var(--space-md);
}

.testimonials-scroll::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  background: #FFFFFF;
  border-radius: var(--border-radius);
  padding: var(--space-lg);
  border: 0.5px solid var(--border-color);
  position: relative;
  /* UNIQUE: for scroll mode, fixed width */
  min-width: 320px;
  scroll-snap-align: start;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}

/* UNIQUE: accent line on left of testimonial */
.testimonial-card::before {
  content: '';
  position: absolute;
  top: var(--space-lg);
  right: 0;
  width: 3px;
  height: 40px;
  background: var(--color-accent);
  border-radius: 0 var(--border-radius-pill) var(--border-radius-pill) 0;
}

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

.testimonial-stars svg {
  width: 20px;
  height: 20px;
  fill: #FBBF24;
  color: #FBBF24;
}

.testimonial-text {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-md);
  flex: 1;
}

.testimonial-author {
  font-weight: 600;
  color: var(--text-primary);
}

/* ─── STATS/NUMBERS — UNIQUE: gradient bg ────── */
.stat-item {
  text-align: center;
}

.stat-number {
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.section--dark .stat-number,
.section--gradient .stat-number {
  color: #FFFFFF;
}

.stat-label {
  font-size: var(--text-lg);
  color: var(--text-secondary);
}

.section--dark .stat-label,
.section--gradient .stat-label {
  color: rgba(255,255,255,0.7);
}

/* ─── FINAL CTA SECTION ──────────────────────── */
.final-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.final-cta-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.final-cta-info h2 {
  font-size: var(--text-3xl);
  color: #FFFFFF;
  line-height: 1.3;
}

.final-cta-info h2 span {
  color: #4db8d4;
}

.final-cta-info > p {
  color: rgba(255,255,255,0.75);
  font-size: var(--text-lg);
  line-height: var(--line-height-base);
}

.final-cta-bullets {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.final-cta-bullets li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.9);
  font-size: var(--text-base);
}

.final-cta-bullets li .bullet-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(0, 109, 143, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.final-cta-bullets li .bullet-icon svg {
  width: 14px;
  height: 14px;
  stroke: #4db8d4;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.final-cta-contact-row {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.final-cta-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--border-radius-sm);
  padding: 10px 16px;
  color: rgba(255,255,255,0.9);
  font-size: var(--text-sm);
  text-decoration: none;
  transition: background 0.22s, border-color 0.22s;
}

.final-cta-contact-item:hover {
  background: rgba(0, 109, 143, 0.3);
  border-color: var(--color-accent);
  color: #FFFFFF;
}

.final-cta-contact-item svg {
  width: 18px;
  height: 18px;
  stroke: #4db8d4;
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
}

.final-cta-hours {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255,255,255,0.65);
  font-size: var(--text-sm);
}

.final-cta-hours svg {
  width: 18px;
  height: 18px;
  stroke: #4db8d4;
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
  margin-top: 2px;
}

.final-cta-form-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--border-radius);
  padding: var(--space-lg);
}

.final-cta-form-card h3 {
  color: #FFFFFF;
  font-size: var(--text-xl);
  margin-bottom: var(--space-sm);
  text-align: center;
}

.final-cta-form-card .form-subtitle {
  color: rgba(255,255,255,0.6);
  font-size: var(--text-sm);
  text-align: center;
  margin-bottom: var(--space-lg);
}

.final-cta-form-card .field select {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.35);
  color: #FFFFFF;
  padding: 14px 16px;
  border-radius: var(--border-radius-sm);
  font-family: var(--font-body);
  font-size: var(--text-base);
  width: 100%;
  appearance: none;
  cursor: pointer;
}

.final-cta-form-card .field select option {
  background: var(--bg-dark);
  color: #FFFFFF;
}

@media (max-width: 768px) {
  .final-cta-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .final-cta-info {
    text-align: center;
  }

  .final-cta-bullets li {
    justify-content: center;
  }

  .final-cta-contact-row {
    justify-content: center;
  }

  .final-cta-hours {
    justify-content: center;
  }
}

/* ─── LOADING STATE ───────────────────────────── */
.btn.loading {
  pointer-events: none;
  opacity: 0.8;
}

.btn.loading .btn-text {
  visibility: hidden;
}

.btn.loading::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #FFFFFF;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

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

/* ─── GRAIN OVERLAY ───────────────────────────── */
.grain::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
  z-index: 0;
}

/* ─── REDUCED MOTION ──────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

/* ─── RESPONSIVE ──────────────────────────────── */
@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .intro-grid { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr 1fr; }
  .two-col--reverse { grid-template-columns: 1fr 1fr; }
  .two-col--reverse > *:first-child { order: 2; }
  .two-col--reverse > *:last-child { order: 1; }
}

@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .intro-grid { grid-template-columns: 5fr 4fr; gap: var(--space-xl); }

  .menu-toggle { display: none; }

  .testimonial-card { min-width: 360px; }
}

@media (max-width: 1023px) {
  .header-nav { display: none; }
  .header-cta { display: none; }
  .menu-toggle { display: block; }

  .hero { height: 100svh; }

  .btn { width: 100%; min-height: 52px; }

  /* iOS zoom prevention + touch targets (M-33) */
  input, textarea, select { font-size: 16px !important; min-height: 44px; }
  a, button, [role="button"], .btn, .floating-btn, .accordion-trigger { min-height: 44px; }
  .header-nav ul { justify-content: center; text-align: center; }
  .mobile-nav ul { justify-content: center; text-align: center; align-items: center; }
  .mobile-nav a { display: block; text-align: center; }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    padding: 0 var(--space-md);
  }

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

@media (max-width: 767px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .floating-buttons {
    bottom: 16px;
    left: 16px;
  }

  .floating-btn {
    width: 48px;
    height: 48px;
  }

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

  .testimonial-card { min-width: 280px; }
}
