/* ==========================================================================
   MAIN.CSS — Global styles, variables, typography, layout utilities
   Indies 365 Hôtel
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. GOOGLE FONTS IMPORT
   -------------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,400;1,500&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,400&family=Space+Mono:wght@400;700&display=swap');

/* --------------------------------------------------------------------------
   2. CSS CUSTOM PROPERTIES
   -------------------------------------------------------------------------- */
:root {
  /* ── BRAND PALETTE ──────────────────────────────────────────
     Teal  #1B6B72   ·   Orange  #F47B20   ·   Cream  #FBF5E8
     ──────────────────────────────────────────────────────── */
  --teal: #1b6b72;
  --teal-dark: #134f55;
  --teal-light: #2a8f98;
  --orange: #f47b20;
  --orange-dark: #c9620f;
  --orange-light: #f79548;
  --orange-header: #ff5a00;

  /* Aliases kept for backward-compat across existing CSS */
  --primary: #f47b20;
  --primary-dark: #c9620f;
  --primary-light: #f79548;
  --white: #ffffff;
  --black: #134f55; /* dark teal for headings/text */
  --off-white: #fbf5e8;
  --charcoal: #fbf5e8; /* no dark bg — maps to cream */
  --warm-dark: #fbf5e8; /* no dark bg — maps to cream */
  --warm-dark-2: #eee8d8;
  --parchment: #fbf5e8;
  --parchment-mid: #eee8d8;
  --gold: #f47b20; /* orange replaces gold accent */
  --gold-light: #f79548;
  --gold-dark: #c9620f;

  /* Neutral Grays */
  --gray-100: #f5f5f5;
  --gray-200: #e8e8e8;
  --gray-300: #d0d0d0;
  --gray-400: #a0a0a0;
  --gray-500: #707070;
  --gray-600: #505050;
  --gray-700: #383838;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, -apple-system, sans-serif;
  --font-accent: 'Space Mono', 'Courier New', monospace;

  /* Font Sizes (fluid scale) */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;
  --text-7xl: 4.5rem;

  /* Fluid Hero Size */
  --hero-title-size: clamp(2.5rem, 6vw, 5rem);
  --section-title-size: clamp(2rem, 4vw, 3rem);

  /* Spacing Scale */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Layout */
  --container-max: 1280px;
  --container-px: 1.5rem;
  --section-py: 5rem;
  --navbar-height: 80px;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  --radius-2xl: 28px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1), 0 4px 10px rgba(0, 0, 0, 0.06);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.14), 0 8px 16px rgba(0, 0, 0, 0.08);
  --shadow-orange: 0 4px 20px rgba(244, 123, 32, 0.35);
  --shadow-card: 0 8px 30px rgba(0, 0, 0, 0.08);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;
  --transition-spring: 400ms cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Z-index Scale */
  --z-base: 1;
  --z-raised: 10;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-fixed: 300;
  --z-modal: 400;
  --z-preloader: 500;
}

@keyframes scaleimage {
  0% {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--navbar-height) + 36px);
  -webkit-text-size-adjust: 100%;
}

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

/* Custom cursor — only hide native cursor when JS confirms it's running */
.custom-cursor-active body,
.custom-cursor-active a,
.custom-cursor-active button,
.custom-cursor-active [role='button'],
.custom-cursor-active input,
.custom-cursor-active select,
.custom-cursor-active textarea,
.custom-cursor-active label {
  cursor: none;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

ul,
ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

address {
  font-style: normal;
}

/* --------------------------------------------------------------------------
   4. TYPOGRAPHY
   -------------------------------------------------------------------------- */

/* Hero "365" — Playfair Display 700 with gold shimmer
   Creates a bold typographic break inside the Cormorant heading:
   "Indies" (thin elegant serif) + "365" (heavy editorial serif, gold)
   + "Hôtel" (thin elegant serif again). */
.hero-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-style: normal;
  font-variant-numeric: lining-nums;
  letter-spacing: -0.02em;
}
h1,
.h1 {
  font-family: var(--font-display);
  font-size: var(--hero-title-size);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h2,
.h2 {
  font-family: var(--font-display);
  font-size: var(--section-title-size);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h3,
.h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 1.75rem);
  font-weight: 500;
  line-height: 1.3;
}

h4,
.h4 {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 500;
  line-height: 1.4;
}

h5,
.h5 {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 600;
  line-height: 1.4;
}

.display-text {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  line-height: 1.05;
}

.eyebrow {
  font-family: var(--font-accent);
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
}

.eyebrow-gold {
  font-family: var(--font-accent);
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
}

.lead {
  font-size: var(--text-lg);
  line-height: 1.8;
  color: var(--gray-600);
}

.text-primary {
  color: var(--primary);
}
.text-gold {
  color: var(--gold);
}
.text-white {
  color: var(--white);
}
.text-charcoal {
  color: var(--teal);
}
.text-muted {
  color: var(--gray-500);
}

/* --------------------------------------------------------------------------
   5. LAYOUT — CONTAINER & SECTIONS
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-px);
}

.container-sm {
  width: 100%;
  max-width: 900px;
  margin-inline: auto;
  padding-inline: var(--container-px);
}

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

.section-sm {
  padding-block: 3rem;
}

.section-lg {
  padding-block: 7rem;
}

/* Section Title Group */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header .eyebrow,
.section-header .eyebrow-gold {
  display: block;
  margin-bottom: 0.75rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  max-width: 600px;
  margin-inline: auto;
  color: var(--gray-600);
}

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 140px;
  margin: 1.25rem auto 0;
}

.section-divider::before,
.section-divider::after {
  content: '';
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--teal));
}

.section-divider::after {
  background: linear-gradient(90deg, var(--teal), transparent);
}

.section-divider > span,
.section-divider:empty::before {
  display: block;
}

div.section-divider:empty {
  display: block;
  width: 80px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--teal) 40%,
    var(--teal) 60%,
    transparent 100%
  );
  margin: 1.25rem auto 0;
  border-radius: var(--radius-full);
}

.section-divider-gold {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 160px;
  margin: 1.25rem auto 0;
}

.section-divider-gold::before,
.section-divider-gold::after {
  content: '';
  flex: 1;
  height: 2px;
  background: var(--orange);
  opacity: 0.8;
}

div.section-divider-gold:empty {
  display: block;
  width: 100px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--orange) 30%,
    var(--orange) 70%,
    transparent 100%
  );
  margin: 1.25rem auto 0;
  border-radius: var(--radius-full);
}

/* Section backgrounds */
.bg-white {
  background-color: var(--white);
}
.bg-off-white {
  background-color: var(--off-white);
}
.bg-parchment {
  background-color: var(--parchment);
}
.bg-charcoal {
  background-color: var(--off-white);
  color: var(--teal);
}
.bg-warm-dark {
  background-color: var(--off-white);
  color: var(--teal);
}
.bg-teal {
  background-color: var(--teal);
  color: var(--white);
}
.bg-primary {
  background-color: var(--orange);
  color: var(--white);
}
.bg-gray-100 {
  background-color: var(--gray-100);
}

/* Diagonal section separator */
.section-diagonal-bottom {
  clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%);
  padding-bottom: 8rem;
}

.section-diagonal-top {
  clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 100%);
  padding-top: 8rem;
}

/* --------------------------------------------------------------------------
   6. GRID UTILITIES
   -------------------------------------------------------------------------- */
.grid {
  display: grid;
  gap: 2rem;
}

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

.flex {
  display: flex;
}
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.flex-col {
  display: flex;
  flex-direction: column;
}
.gap-1 {
  gap: 0.25rem;
}
.gap-2 {
  gap: 0.5rem;
}
.gap-3 {
  gap: 0.75rem;
}
.gap-4 {
  gap: 1rem;
}
.gap-6 {
  gap: 1.5rem;
}
.gap-8 {
  gap: 2rem;
}

/* --------------------------------------------------------------------------
   7. SPACING UTILITIES
   -------------------------------------------------------------------------- */
.mt-auto {
  margin-top: auto;
}
.mb-1 {
  margin-bottom: var(--space-1);
}
.mb-2 {
  margin-bottom: var(--space-2);
}
.mb-3 {
  margin-bottom: var(--space-3);
}
.mb-4 {
  margin-bottom: var(--space-4);
}
.mb-6 {
  margin-bottom: var(--space-6);
}
.mb-8 {
  margin-bottom: var(--space-8);
}
.mb-12 {
  margin-bottom: var(--space-12);
}

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

/* --------------------------------------------------------------------------
   8. ACCESSIBILITY
   -------------------------------------------------------------------------- */
:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

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

/* Skip to content link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: calc(var(--z-preloader) + 1);
  background: var(--primary);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  font-weight: 600;
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: 0;
}

/* --------------------------------------------------------------------------
   9. HERO BASE
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--warm-dark);
}

.hero-bg {
  line-height: 0;
}

.hero-bg img {
  width: 100%;
  object-fit: cover;
  object-position: center top;
  will-change: transform;
  animation: scaleimage 4s 1 normal;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(10, 10, 10, 0.6) 0%,
    rgba(10, 10, 10, 0.2) 45%,
    rgba(10, 10, 10, 0.5) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding-block: 8rem 6rem;
}

/* Page hero (smaller) */
.page-hero {
  display: block;
  overflow: hidden;
  line-height: 0;
}

.page-hero .hero-content {
  /* padding-block: 8rem 4rem; */
}

/* --------------------------------------------------------------------------
   10. OVERLAY & IMAGE UTILITIES
   -------------------------------------------------------------------------- */
.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-ratio {
  position: relative;
  overflow: hidden;
}

.img-ratio-16-9 {
  aspect-ratio: 16 / 9;
}
.img-ratio-4-3 {
  aspect-ratio: 4 / 3;
}
.img-ratio-3-2 {
  aspect-ratio: 3 / 2;
}
.img-ratio-1-1 {
  aspect-ratio: 1 / 1;
}
.img-ratio-hotel {
  aspect-ratio: 3 / 2;
}

.img-ratio img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

/* --------------------------------------------------------------------------
   11. BADGE & TAG
   -------------------------------------------------------------------------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-family: var(--font-accent);
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.badge-primary {
  background-color: var(--primary);
  color: var(--white);
}
.badge-gold {
  background-color: var(--gold);
  color: var(--white);
}
.badge-outline {
  border: 1.5px solid currentColor;
}
.badge-white {
  background-color: rgba(255, 255, 255, 0.15);
  color: var(--white);
  backdrop-filter: blur(4px);
}

/* --------------------------------------------------------------------------
   12. DIVIDERS
   -------------------------------------------------------------------------- */
hr.divider {
  border: none;
  height: 1px;
  background: var(--gray-200);
  margin-block: 2rem;
}

/* --------------------------------------------------------------------------
   13. SCROLL DOWN ARROW
   -------------------------------------------------------------------------- */
.scroll-arrow {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  opacity: 0.8;
  animation: bounceArrow 2s ease-in-out infinite;
}

.scroll-arrow span {
  font-family: var(--font-accent);
  font-size: var(--text-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.scroll-arrow svg {
  animation: bounceArrow 1.5s ease-in-out infinite;
}

/* --------------------------------------------------------------------------
   14. STAT COUNTERS
   -------------------------------------------------------------------------- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
}

.stat-item {
  background: var(--white);
  border: 1px solid rgba(27, 107, 114, 0.15);
  border-radius: var(--radius-xl);
  padding: 2.75rem 1.75rem 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

/* Teal top accent bar */
.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--orange), var(--teal));
  opacity: 0.7;
  transition: opacity 0.35s ease;
}

/* Subtle glow bottom */
.stat-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 20%;
  right: 20%;
  height: 40px;
  background: radial-gradient(
    ellipse at center,
    rgba(27, 107, 114, 0.08) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.stat-item:hover {
  transform: translateY(-6px);
  background: var(--white);
  border-color: rgba(27, 107, 114, 0.4);
  box-shadow:
    0 12px 36px rgba(27, 107, 114, 0.12),
    0 0 0 1px rgba(27, 107, 114, 0.1);
}

.stat-item:hover::before {
  opacity: 1;
}
.stat-item:hover::after {
  opacity: 1;
}

/* Icon badge */
.stat-icon {
  width: 58px;
  height: 58px;
  background: rgba(27, 107, 114, 0.1);
  border: 1px solid rgba(27, 107, 114, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--gold);
  transition:
    background 0.35s ease,
    transform 0.35s ease,
    border-color 0.35s ease;
}

.stat-item:hover .stat-icon {
  background: rgba(27, 107, 114, 0.18);
  border-color: rgba(27, 107, 114, 0.5);
  transform: scale(1.1);
}

/* Number + unit side-by-side, baseline-aligned */
.stat-number-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.15em;
  line-height: 1;
}

/* ── Animated integer ──
   Playfair Display 700: high-contrast editorial serifs, thick/thin
   strokes look extraordinary at display scale — the luxury hotel
   standard on Awwwards-recognised sites.
   tabular-nums = fixed-width digits so the counter never shifts layout. */
.stat-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(3.25rem, 5.5vw, 5.5rem);
  font-weight: 700;
  font-style: normal;
  font-variant-numeric: tabular-nums lining-nums;
  font-feature-settings:
    'kern' 1,
    'liga' 1;
  color: var(--teal);
  line-height: 1;
  letter-spacing: -0.025em;
  text-rendering: optimizeLegibility;
  transition: color 0.35s ease;
}

.stat-item:hover .stat-number {
  color: var(--orange);
}

/* ── Unit / suffix ── */
.stat-suffix {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.2rem, 2.2vw, 1.85rem);
  font-weight: 400;
  font-style: italic;
  color: rgba(27, 107, 114, 0.6);
  line-height: 1;
  letter-spacing: 0.06em;
  padding-bottom: 0.2em; /* visual baseline alignment with Playfair */
  transition: color 0.35s ease;
}

.stat-item:hover .stat-suffix {
  color: var(--teal);
}

.stat-rule {
  width: 32px;
  height: 2px;
  background: rgba(244, 123, 32, 0.35);
  margin: 1.25rem auto 1rem;
  transition:
    width 0.4s ease,
    background 0.3s ease;
}

.stat-item:hover .stat-rule {
  width: 52px;
  background: var(--orange);
}

.stat-label {
  font-family: var(--font-accent);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-500);
  display: block;
  line-height: 1.7;
  transition: color 0.3s ease;
}

.stat-item:hover .stat-label {
  color: var(--black);
}

/* --------------------------------------------------------------------------
   15. AMENITIES STRIP
   -------------------------------------------------------------------------- */
.amenities-strip {
  background: var(--parchment-mid);
  padding-block: 3rem;
  border-top: 1px solid rgba(27, 107, 114, 0.15);
  border-bottom: 1px solid rgba(27, 107, 114, 0.15);
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  text-align: center;
}

.amenity-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem 1rem;
}

.amenity-icon {
  font-size: 2rem;
  line-height: 1;
}

.amenity-label {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--black);
  text-align: center;
  line-height: 1.4;
  letter-spacing: 0.01em;
}

/* --------------------------------------------------------------------------
   16. TESTIMONIALS
   -------------------------------------------------------------------------- */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  box-shadow:
    0 2px 20px rgba(27, 107, 114, 0.07),
    0 6px 24px rgba(27, 107, 114, 0.04);
  border: 1px solid rgba(27, 107, 114, 0.15);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--teal),
    var(--orange),
    var(--teal),
    transparent
  );
}

.testimonial-stars {
  color: var(--orange);
  font-size: var(--text-base);
  letter-spacing: 0.15em;
  margin-bottom: 1.25rem;
  display: block;
}

.testimonial-quote {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-style: italic;
  line-height: 1.8;
  color: var(--gray-700);
  margin-bottom: 1.75rem;
}

.testimonial-quote::before {
  content: '\201C';
  font-size: 3.5rem;
  color: var(--teal);
  opacity: 0.35;
  line-height: 0;
  vertical-align: -1.4rem;
  margin-right: 0.15rem;
  font-family: var(--font-display);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(27, 107, 114, 0.15);
}

.testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 600;
  font-size: var(--text-base);
  flex-shrink: 0;
  font-family: var(--font-heading);
}

.testimonial-name {
  font-weight: 600;
  font-size: var(--text-sm);
  font-family: var(--font-heading);
  color: var(--black);
  display: block;
}

.testimonial-location {
  font-size: var(--text-xs);
  color: var(--gray-500);
  font-family: var(--font-accent);
  letter-spacing: 0.05em;
  display: block;
  margin-top: 0.15rem;
}

/* --------------------------------------------------------------------------
   17. GALLERY PREVIEW STRIP
   -------------------------------------------------------------------------- */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}

.gallery-strip-item {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
}

.gallery-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform var(--transition-slow),
    filter var(--transition-slow);
}

.gallery-strip-item:hover img {
  transform: scale(1.08);
  filter: brightness(0.8);
}

.gallery-strip-overlay {
  position: absolute;
  inset: 0;
  background: var(--primary);
  opacity: 0;
  transition: opacity var(--transition-base);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
}

.gallery-strip-item:hover .gallery-strip-overlay {
  opacity: 0.6;
}

/* --------------------------------------------------------------------------
   18. SPLIT SECTION (image + text)
   -------------------------------------------------------------------------- */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.split-section.reverse {
  direction: rtl;
}

.split-section.reverse > * {
  direction: ltr;
}

.split-image {
  position: relative;
  overflow: hidden;
  min-height: 400px;
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.split-content {
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* --------------------------------------------------------------------------
   19. PLACEHOLDER IMAGE (for missing images)
   -------------------------------------------------------------------------- */
.img-placeholder {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-accent);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   20. PRINT STYLES
   -------------------------------------------------------------------------- */
@media print {
  .navbar,
  .footer,
  .whatsapp-float,
  .back-to-top,
  .cookie-consent,
  .preloader,
  .scroll-progress {
    display: none !important;
  }

  body {
    background: white;
    color: black;
  }
}
