/* ============================================
   JAG – Vŕtanie studní | Website Styles
   ============================================ */

/* --- CSS Variables (overridden by content.json theme) --- */
:root {
  --primary: #1A6FA0;
  --secondary: #0D3B5E;
  --accent: #3DB8E8;
  --dark: #0A1F33;
  --light: #F0F7FC;
  --text: #2C3E50;
  --text-light: #7F8C9A;

  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --nav-height: 80px;
  --container-width: 1200px;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(10, 31, 51, 0.08);
  --shadow-lg: 0 12px 48px rgba(10, 31, 51, 0.12);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html, body {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100vw;
}

html {
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: #ffffff;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

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

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

/* --- Accessibility --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  padding: 8px 16px;
  background: var(--primary);
  color: white;
  z-index: 10000;
  border-radius: 4px;
  font-size: 14px;
}

.skip-link:focus {
  top: 8px;
}

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

button:focus:not(:focus-visible) {
  outline: none;
}

/* --- Page Loader --- */
#page-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
}

.loader-content {
  text-align: center;
  color: white;
}

.loader-content span {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 16px;
  letter-spacing: 4px;
}

.loader-drop {
  width: 20px;
  height: 20px;
  background: var(--accent);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  margin: 0 auto;
  animation: drop-pulse 1s ease-in-out infinite;
}

@keyframes drop-pulse {
  0%, 100% { transform: rotate(-45deg) scale(1); opacity: 1; }
  50% { transform: rotate(-45deg) scale(1.3); opacity: 0.6; }
}

/* --- Container --- */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Section Headers --- */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
  position: relative;
}

.section-header h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  margin: 16px auto 0;
  border-radius: 2px;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   NAVIGATION
   ============================================ */
nav#nav_1 {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: all 0.4s ease;
}

nav#nav_1.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(10, 31, 51, 0.1);
  border-bottom-color: rgba(10, 31, 51, 0.06);
}

.nav-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: #ffffff !important;
  letter-spacing: 2px;
  transition: color 0.4s ease;
}

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

.logo-well {
  fill: #ffffff;
  transition: fill 0.4s ease;
}

nav#nav_1.scrolled .logo {
  color: var(--primary) !important;
}

nav#nav_1.scrolled .logo-well {
  fill: var(--secondary);
}

#nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}

#nav-links a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
  transition: color 0.4s ease;
}

nav#nav_1.scrolled #nav-links a {
  color: var(--text);
}

#nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width var(--transition);
}

#nav-links a:hover::after,
#nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all var(--transition);
  white-space: nowrap;
}

nav#nav_1.scrolled .nav-cta {
  background: var(--primary);
  border-color: var(--primary);
}

.nav-cta:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(61, 184, 232, 0.3);
}

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

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all var(--transition);
}

nav#nav_1.scrolled .hamburger span {
  background: var(--dark);
}

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

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

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

/* ============================================
   HERO — Light blue background, dark ocean water effects
   ============================================ */
.hero-section {
  min-height: 100vh;
  padding-top: var(--nav-height);
  overflow: hidden;
  position: relative;
  background: #0a1e33;
  max-width: 100vw;
}

.hero-inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  min-height: calc(100vh - var(--nav-height));
  padding-top: 60px;
  padding-bottom: 60px;
}

.hero-text {
  position: relative;
  z-index: 4;
}

.hero-text h1 {
  font-size: clamp(2.5rem, 4.5vw, 3.8rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero-sub {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
  line-height: 1.8;
}

/* Hero CTA — light blue on dark bg */
.btn-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 42px;
  background: linear-gradient(135deg, #3DB8E8, #5ccdf0);
  color: #0a1e33 !important;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.3px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 30px rgba(61, 184, 232, 0.35), 0 0 60px rgba(61, 184, 232, 0.15);
  border: none;
}

.btn-hero-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transition: left 0.5s ease;
}

.btn-hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(61, 184, 232, 0.5), 0 0 80px rgba(61, 184, 232, 0.2);
  background: linear-gradient(135deg, #5ccdf0, #7ddbf5);
}

.btn-hero-cta:hover::before {
  left: 100%;
}

/* Pulsing glow ring around CTA */
.btn-hero-cta::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50px;
  border: 2px solid rgba(61, 184, 232, 0.3);
  animation: cta-pulse 2s ease-in-out infinite;
  pointer-events: none;
}

@keyframes cta-pulse {
  0%, 100% { opacity: 0; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.04); }
}

/* General btn-primary (used in other sections) */
.btn-primary {
  display: inline-block;
  padding: 16px 36px;
  background: var(--primary);
  color: white !important;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  background: var(--secondary);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26, 111, 160, 0.35);
}

/* Featured image — floating with shadow + border */
.hero-featured-image {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-featured-image img {
  width: 100%;
  max-width: 440px;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 80px rgba(61, 184, 232, 0.1);
  border: 2px solid rgba(61, 184, 232, 0.2);
  object-fit: cover;
}

/* ============================================
   Horizontal River Flow — left to right
   ============================================ */
.river-container {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

/* Each river streak — light blue flowing left to right with subtle wave shape */
.river-streak {
  position: absolute;
  left: -120%;
  border-radius: 40% 60% 55% 45% / 60% 40% 55% 45%;
  animation: river-flow-lr linear infinite, river-shape 3s ease-in-out infinite;
}

/* Flow left to right */
@keyframes river-flow-lr {
  0%   { transform: translateX(0) translateY(0); opacity: 0; }
  3%   { opacity: 1; }
  25%  { transform: translateX(55vw) translateY(-2px); }
  50%  { transform: translateX(110vw) translateY(3px); }
  75%  { transform: translateX(165vw) translateY(-2px); }
  92%  { opacity: 1; }
  100% { transform: translateX(220vw) translateY(0); opacity: 0; }
}

/* Subtle organic shape morphing — the streak gently warps like water */
@keyframes river-shape {
  0%, 100% { border-radius: 40% 60% 55% 45% / 60% 40% 55% 45%; }
  33%      { border-radius: 55% 45% 40% 60% / 45% 55% 60% 40%; }
  66%      { border-radius: 45% 55% 60% 40% / 55% 45% 40% 60%; }
}

/* ============================================
   Water essence — blue water accents for sections
   ============================================ */
.water-essence {
  position: relative;
  overflow: hidden;
}

/* Top-left glow */
.water-essence::before {
  content: '';
  position: absolute;
  top: -60px;
  left: -5%;
  width: 55%;
  height: 350px;
  background: radial-gradient(ellipse at 30% 40%, rgba(61, 184, 232, 0.07) 0%, rgba(26, 111, 160, 0.03) 40%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Bottom-right glow */
.water-essence::after {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -5%;
  width: 50%;
  height: 320px;
  background: radial-gradient(ellipse at 70% 60%, rgba(26, 111, 160, 0.06) 0%, rgba(61, 184, 232, 0.02) 40%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.water-essence > .container {
  position: relative;
  z-index: 1;
}

/* Wavy blue divider line at the top of each water-essence section */
.water-essence > .container::before {
  content: '';
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, transparent, rgba(61, 184, 232, 0.3), var(--accent), rgba(61, 184, 232, 0.3), transparent);
  border-radius: 2px;
}

/* Subtle water droplet decorations via box-shadow */
.about-section.water-essence::before {
  background: radial-gradient(ellipse at 20% 30%, rgba(61, 184, 232, 0.08) 0%, transparent 60%);
}

.gallery-section.water-essence::after {
  background: radial-gradient(ellipse at 80% 70%, rgba(61, 184, 232, 0.07) 0%, transparent 60%);
}

/* ============================================
   Water edges — wavy SVG dividers between sections
   ============================================ */
.water-edge {
  position: relative;
  margin-top: -1px;
  z-index: 2;
  line-height: 0;
}

.water-edge svg {
  display: block;
  width: 100%;
  height: 40px;
}

.water-edge-flip {
  transform: scaleX(-1);
}

/* Drip row sits on top of the wavy edge */
.drip-row {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0;
}

/* Standalone drip edge (no SVG wave, just drips) */
.drip-edge {
  position: relative;
  height: 0;
  z-index: 2;
}

.drip-edge-light {
  background: transparent;
}

.drip-edge-dark {
  background: transparent;
}

/* Water drip — teardrop that forms, stretches, and drops */
.drip {
  position: absolute;
  top: -2px;
  width: 6px;
  height: 6px;
  background: rgba(61, 184, 232, 0.4);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  animation: drip-fall 3s ease-in infinite;
  z-index: 3;
}

/* Light-colored drips for dark section edges */
.drip-light {
  background: rgba(61, 184, 232, 0.5);
}

@keyframes drip-fall {
  0% {
    transform: translateY(0) scaleY(1) scaleX(1);
    opacity: 0;
  }
  /* Drip forms — grows at the edge */
  15% {
    transform: translateY(0) scaleY(1) scaleX(1);
    opacity: 0.7;
  }
  /* Stretches as it's about to detach */
  35% {
    transform: translateY(4px) scaleY(1.6) scaleX(0.7);
    opacity: 0.8;
  }
  /* Detaches and falls */
  50% {
    transform: translateY(20px) scaleY(1.2) scaleX(0.85);
    opacity: 0.6;
  }
  70% {
    transform: translateY(45px) scaleY(1) scaleX(1);
    opacity: 0.3;
  }
  /* Fades out */
  100% {
    transform: translateY(65px) scaleY(0.8) scaleX(1.2);
    opacity: 0;
  }
}

/* Ripple that appears where the drip lands */
.drip::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%) scale(0);
  width: 14px;
  height: 5px;
  border: 1px solid rgba(61, 184, 232, 0.25);
  border-radius: 50%;
  background: transparent;
  animation: drip-ripple 3s ease-out infinite;
  animation-delay: inherit;
}

@keyframes drip-ripple {
  0%, 55% {
    transform: translateX(-50%) scale(0);
    opacity: 0;
  }
  60% {
    transform: translateX(-50%) scale(0.5);
    opacity: 0.5;
  }
  80% {
    transform: translateX(-50%) scale(2);
    opacity: 0.2;
  }
  100% {
    transform: translateX(-50%) scale(3);
    opacity: 0;
  }
}

/* ============================================
   ABOUT US (Intro) SECTION — image + text
   ============================================ */
.about-intro-section {
  padding: 100px 0;
  background: #ffffff;
}

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

.about-intro-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-intro-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.about-intro-text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin-bottom: 20px;
  position: relative;
}

.about-intro-text h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  margin-top: 16px;
  border-radius: 2px;
}

.about-intro-text p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.9;
}

/* About info cards — small badges below text */
.about-info-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 24px;
}

.about-info-card {
  background: var(--secondary);
  border-radius: 8px;
  padding: 12px 14px;
  color: #ffffff;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-info-card:hover {
  background: var(--dark);
}

.about-info-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(61, 184, 232, 0.15);
  border-radius: 8px;
  flex-shrink: 0;
  color: var(--accent);
}

.about-info-icon svg,
.about-info-icon i {
  width: 16px;
  height: 16px;
}

.about-info-card h4 {
  font-size: 0.75rem;
  font-family: var(--font-body);
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  line-height: 1.3;
}

.about-info-card p {
  display: none;
}

/* ============================================
   ABOUT / WHY US SECTION
   ============================================ */
.about-section {
  padding: 100px 0;
  background: #ffffff;
}

.about-description {
  text-align: center;
  font-size: 1.125rem;
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto 56px;
  line-height: 1.8;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.feature-card {
  padding: 32px 28px;
  background: linear-gradient(135deg, #ffffff 0%, rgba(240, 247, 252, 0.8) 100%);
  border-radius: var(--radius);
  text-align: center;
  transition: all var(--transition);
  border: 1px solid rgba(61, 184, 232, 0.08);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(26, 111, 160, 0.1);
  border-color: rgba(61, 184, 232, 0.15);
}

.feature-card .feature-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 14px;
  margin: 0 auto 20px;
  color: white;
}

.feature-card h3 {
  font-size: 1.125rem;
  margin-bottom: 10px;
  font-family: var(--font-body);
  font-weight: 600;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ============================================
   White gridlines background — shared by dark sections
   ============================================ */
.dark-gridlines {
  position: relative;
}

.dark-gridlines > .container {
  position: relative;
  z-index: 1;
}

.dark-gridlines::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 79px,
      rgba(255, 255, 255, 0.03) 79px,
      rgba(255, 255, 255, 0.03) 80px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 79px,
      rgba(255, 255, 255, 0.03) 79px,
      rgba(255, 255, 255, 0.03) 80px
    );
  pointer-events: none;
  z-index: 0;
}

/* ============================================
   SERVICES SECTION — Dark blue bg, wide cards
   ============================================ */
.services-section {
  padding: 100px 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

/* White accent decorations */
.services-section::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -5%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.025) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.services-section > .container {
  position: relative;
  z-index: 1;
}

.services-section .section-header h2 {
  color: #ffffff;
}

.services-section .section-header h2::after {
  background: linear-gradient(90deg, var(--accent), var(--primary));
}

.services-section .section-header p {
  color: rgba(255, 255, 255, 0.6);
}

.services-grid {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 960px;
  margin: 0 auto;
}

.service-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(61, 184, 232, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

/* Alternate: even cards flip image to the right */
.service-card:nth-child(even) {
  grid-template-columns: 1fr 300px;
}

.service-card:nth-child(even) .service-card-image {
  order: 2;
}

.service-card:nth-child(even) .service-card-body {
  order: 1;
}

.service-card-image {
  position: relative;
  overflow: hidden;
  min-height: 220px;
}

.service-card-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.6s ease;
  background: rgba(255, 255, 255, 0.03);
}

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

.service-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10, 31, 51, 0.3));
}

.service-card-icon {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(26, 111, 160, 0.3);
}

.service-card:nth-child(even) .service-card-icon {
  left: 14px;
  right: auto;
}

.service-card-body {
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-card-body h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  color: #ffffff;
}

.service-card-body p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

/* Service number badge */
.service-card-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(61, 184, 232, 0.1);
  line-height: 1;
  margin-bottom: 8px;
}

/* ============================================
   GALLERY SECTION — Images + Video Embeds (separated)
   ============================================ */
.gallery-section {
  padding: 100px 0;
  background: #ffffff;
}

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

.gallery-column {
  min-width: 0;
}

.gallery-group-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.15rem;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--light);
}

.gallery-group-title svg,
.gallery-group-title i {
  color: var(--primary);
  width: 20px;
  height: 20px;
}

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

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

/* Shared hover */
.gallery-card:hover,
.gallery-video-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

/* ---- Video cards — portrait, natural size (the reference) ---- */
.gallery-video-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  aspect-ratio: 9/16;
  background: var(--dark);
}

.gallery-video-card .video-embed-wrapper {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.gallery-video-card .video-embed-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.gallery-video-card .video-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 14px;
  background: linear-gradient(180deg, transparent, rgba(10, 31, 51, 0.85));
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.gallery-video-card .video-caption .play-icon {
  width: 22px;
  height: 22px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.gallery-video-card .video-caption .play-icon svg {
  width: 9px;
  height: 9px;
  fill: white;
  margin-left: 2px;
}

.gallery-video-card .video-caption span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.75rem;
  font-weight: 500;
}

/* ---- Image cards — same 9/16 portrait as videos ---- */
.gallery-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  cursor: pointer;
  aspect-ratio: 9/16;
}

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

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

.gallery-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10, 31, 51, 0.7));
  display: flex;
  align-items: flex-end;
  padding: 14px;
  opacity: 0;
  transition: opacity var(--transition);
}

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

.gallery-card-overlay span {
  color: white;
  font-weight: 600;
  font-size: 0.85rem;
}

/* Gallery card type badge */
.gallery-type-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  background: rgba(10, 31, 51, 0.7);
  backdrop-filter: blur(8px);
  color: white;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 3px 8px;
  border-radius: 20px;
}

.gallery-type-badge.badge-video {
  background: rgba(26, 111, 160, 0.8);
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  align-items: center;
  justify-content: center;
  display: none;
}

.lightbox:not([hidden]) {
  display: flex;
}

.lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
}

.lightbox-content {
  position: relative;
  z-index: 2;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
}

.lightbox-content iframe {
  width: min(400px, 85vw);
  height: min(710px, 85vh);
  border: 0;
  border-radius: 8px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  z-index: 3;
  background: none;
  border: none;
  color: white;
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
  padding: 8px;
  transition: opacity 0.2s;
}

.lightbox-close:hover { opacity: 0.7; }

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 1.5rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

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

.lightbox-caption {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: white;
  font-size: 0.95rem;
  font-weight: 500;
  text-align: center;
  max-width: 80%;
}

.lightbox-counter {
  position: absolute;
  top: 28px;
  left: 24px;
  z-index: 3;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  .lightbox-prev,
  .lightbox-next {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }

  .lightbox-content iframe {
    width: 85vw;
    height: 75vh;
  }
}

/* ============================================
   TESTIMONIALS — alternating speech bubbles
   ============================================ */
.testimonials-section {
  padding: 100px 0;
  background: #ffffff;
}

.testimonials-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 700px;
  margin: 0 auto;
}

.testimonial-bubble {
  position: relative;
  max-width: 85%;
}

.testimonial-bubble.bubble-left {
  align-self: flex-start;
}

.testimonial-bubble.bubble-right {
  align-self: flex-end;
}

.bubble-content {
  background: var(--light);
  border-radius: 20px;
  padding: 28px 28px 24px;
  position: relative;
  border: 1px solid rgba(61, 184, 232, 0.08);
  transition: all var(--transition);
}

.testimonial-bubble:hover .bubble-content {
  box-shadow: 0 8px 32px rgba(10, 31, 51, 0.08);
  border-color: rgba(61, 184, 232, 0.15);
}

/* Speech bubble tail */
.bubble-tail {
  position: absolute;
  bottom: -10px;
  width: 20px;
  height: 20px;
  background: var(--light);
  border-bottom: 1px solid rgba(61, 184, 232, 0.08);
  border-right: 1px solid rgba(61, 184, 232, 0.08);
}

.bubble-left .bubble-tail {
  left: 32px;
  transform: rotate(45deg);
}

.bubble-right .bubble-tail {
  right: 32px;
  transform: rotate(45deg);
}

/* Stars */
.bubble-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}

.bubble-stars .star-filled,
.bubble-stars i {
  width: 16px;
  height: 16px;
  color: #f5a623;
  fill: #f5a623;
}

/* Quote */
.bubble-quote {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 16px;
}

/* Author */
.bubble-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bubble-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--dark);
}

.bubble-location {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8rem;
  color: var(--text-light);
}

.bubble-location i,
.bubble-location svg {
  width: 13px;
  height: 13px;
}

@media (max-width: 768px) {
  .testimonial-bubble {
    max-width: 95%;
  }

  .bubble-content {
    padding: 22px 20px 18px;
  }

  .bubble-quote {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .testimonial-bubble {
    max-width: 100%;
  }

  .testimonials-list {
    gap: 28px;
  }
}

/* ============================================
   CTA BANNER SECTION
   ============================================ */
.cta-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  align-items: center;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 31, 51, 0.85) 0%, rgba(13, 59, 94, 0.75) 100%);
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: #ffffff;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  margin-bottom: 36px;
}

.btn-cta {
  display: inline-block;
  padding: 16px 40px;
  background: linear-gradient(135deg, #3DB8E8, #5ccdf0);
  color: #0a1e33 !important;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.05rem;
  transition: all var(--transition);
  box-shadow: 0 6px 24px rgba(61, 184, 232, 0.35);
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(61, 184, 232, 0.5);
  background: linear-gradient(135deg, #5ccdf0, #7ddbf5);
}

/* ============================================
   REGIONS SECTION
   ============================================ */
.regions-section {
  padding: 100px 0;
  background: var(--dark);
  color: white;
  overflow: hidden;
}

.regions-section .section-header h2 {
  color: white;
}

.regions-section .section-header h2::after {
  background: linear-gradient(90deg, var(--accent), var(--primary));
}

.regions-section .section-header p {
  color: rgba(255, 255, 255, 0.6);
}

.regions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.region-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: all var(--transition);
}

.region-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent);
  transform: translateY(-4px);
}

.region-card .region-icon {
  color: var(--accent);
  margin-bottom: 12px;
}

.region-card h3 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 6px;
  font-family: var(--font-body);
  font-weight: 600;
}

.region-card p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
  padding: 100px 0;
  background: var(--light);
}

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

.contact-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
  margin-bottom: 28px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid rgba(10, 31, 51, 0.06);
}

.contact-item:last-child {
  border-bottom: none;
}

.contact-item svg,
.contact-item i {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.contact-item a,
.contact-item span {
  font-weight: 500;
  display: block;
}

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 260px;
  box-shadow: var(--shadow);
}

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

/* Contact Form */
.contact-form-wrapper {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}

.contact-form-wrapper h3 {
  font-size: 1.5rem;
  margin-bottom: 28px;
  font-family: var(--font-heading);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(10, 31, 51, 0.12);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--light);
  transition: all var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(26, 111, 160, 0.1);
}

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

.form-consent {
  margin-bottom: 24px;
}

.consent-label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.85rem;
  color: var(--text-light);
  cursor: pointer;
}

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

.consent-label a {
  text-decoration: underline;
}

.contact-form button[type="submit"] {
  width: 100%;
  padding: 14px 32px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all var(--transition);
}

.contact-form button[type="submit"]:hover {
  background: var(--secondary);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(26, 111, 160, 0.3);
}

.form-success,
.form-error {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
}

.form-success {
  background: #e8f5e9;
  color: #2e7d32;
}

.form-error {
  background: #fbe9e7;
  color: #c62828;
}

/* ============================================
   PRIVACY — Collapsible toggle
   ============================================ */
.privacy-toggle-section {
  padding: 20px 0 40px;
  background: #ffffff;
}

.privacy-toggle-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 14px 20px;
  background: var(--light);
  border: 1px solid rgba(10, 31, 51, 0.08);
  border-radius: 8px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  transition: all var(--transition);
  text-align: left;
}

.privacy-toggle-btn:hover {
  background: rgba(61, 184, 232, 0.06);
  border-color: rgba(61, 184, 232, 0.15);
}

.privacy-toggle-btn svg,
.privacy-toggle-btn i {
  color: var(--primary);
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.privacy-chevron {
  margin-left: auto;
  transition: transform var(--transition);
}

.privacy-toggle-btn[aria-expanded="true"] .privacy-chevron {
  transform: rotate(180deg);
}

.privacy-panel {
  padding: 24px 20px;
  max-width: 800px;
}

.privacy-content {
  font-size: 0.85rem;
  line-height: 1.8;
  color: var(--text-light);
  white-space: pre-line;
}

/* ============================================
   WhatsApp icon on CTA buttons
   ============================================ */
.wa-icon {
  flex-shrink: 0;
  vertical-align: middle;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 0 0;
}

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

.footer-brand h3 {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-contact h4 {
  color: white;
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  margin-bottom: 10px;
}

.footer-icon {
  width: 16px;
  height: 16px;
  color: var(--accent);
  flex-shrink: 0;
}

.footer-social h4,
.footer-legal h4 {
  color: white;
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-social a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  margin-bottom: 10px;
  transition: color var(--transition);
}

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

.footer-legal a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  margin-bottom: 10px;
  transition: color var(--transition);
}

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

.footer-bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-credit {
  margin-top: 8px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer-credit a {
  color: rgba(61, 184, 232, 0.6);
  transition: color var(--transition);
}

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

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  background: var(--dark);
  color: white;
  padding: 20px 24px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.cookie-content h3 {
  font-size: 16px;
  font-weight: 600;
  width: 100%;
  margin: 0;
  color: white;
}

.cookie-content p {
  flex: 1;
  font-size: 14px;
  margin: 0;
  opacity: 0.85;
  min-width: 200px;
}

.cookie-actions {
  display: flex;
  gap: 8px;
}

.cookie-btn-accept {
  padding: 10px 24px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  background: var(--primary);
  color: white;
  font-weight: 600;
  font-size: 14px;
  transition: background var(--transition);
}

.cookie-btn-accept:hover {
  background: var(--accent);
}

.cookie-btn-decline {
  padding: 10px 24px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  background: transparent;
  color: white;
  font-size: 14px;
}

.cookie-link {
  color: rgba(255, 255, 255, 0.6) !important;
  font-size: 12px;
  text-decoration: underline !important;
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 88px;
  right: 24px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all var(--transition);
}

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

/* ============================================
   SCROLL TO TOP
   ============================================ */
.scroll-top-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(26, 111, 160, 0.3);
  transition: all var(--transition);
  opacity: 0;
  visibility: hidden;
}

.scroll-top-btn:not([hidden]) {
  opacity: 1;
  visibility: visible;
}

.scroll-top-btn:hover {
  background: var(--secondary);
  transform: translateY(-2px);
}

/* ============================================
   ANIMATIONS — GSAP handles all initial states
   via gsap.from(). No CSS opacity:0 needed.
   ============================================ */

/* ============================================
   OVERFLOW CONTAINMENT — prevent GSAP x-animations from causing scroll
   ============================================ */
.about-intro-section,
.about-section,
.services-section,
.gallery-section,
.testimonials-section,
.contact-section,
.regions-section,
.cta-section,
.privacy-toggle-section {
  overflow-x: hidden;
}

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

/* --- 1024px: hamburger nav, hide hero image, stack layouts --- */
@media (max-width: 1024px) {
  /* Nav — hamburger + solid dark bg */
  nav#nav_1 {
    background: rgba(10, 31, 51, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }

  nav#nav_1.scrolled {
    background: rgba(255, 255, 255, 0.97);
  }

  nav#nav_1.scrolled .hamburger span {
    background: var(--dark);
  }

  nav#nav_1.scrolled .logo {
    color: var(--primary) !important;
  }

  nav#nav_1.scrolled .logo-well {
    fill: var(--secondary);
  }

  .hamburger {
    display: flex;
  }

  #nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(280px, 85vw);
    height: 100vh;
    background: white;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding: 32px;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.15);
    transition: right var(--transition);
    z-index: 1001;
    overflow-y: auto;
  }

  #nav-links.open {
    right: 0;
  }

  #nav-links a {
    font-size: 1.1rem;
    color: var(--text);
  }

  .nav-cta {
    display: none;
  }

  /* Hero — centered text, no image */
  .hero-section {
    min-height: 0;
    height: auto;
  }

  .hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: calc(100vh - var(--nav-height));
    min-height: calc(100dvh - var(--nav-height));
    padding: 40px 24px;
    gap: 0;
  }

  .hero-featured-image {
    display: none;
  }

  .hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 540px;
  }

  .hero-text h1 {
    font-size: clamp(1.5rem, 5vw, 2.4rem);
    width: 100%;
  }

  .hero-sub {
    font-size: clamp(0.85rem, 2.5vw, 1rem);
    margin-bottom: 28px;
    width: 100%;
  }

  .btn-hero-cta {
    padding: 14px 32px;
    font-size: clamp(0.85rem, 2.5vw, 0.95rem);
  }

  /* About */
  .about-intro-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
  }

  .about-intro-text h2::after {
    margin-left: auto;
    margin-right: auto;
  }

  .about-info-cards {
    justify-content: center;
  }

  /* Services */
  .services-grid {
    max-width: 100%;
  }

  .service-card {
    grid-template-columns: 1fr;
  }

  .service-card:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .service-card:nth-child(even) .service-card-image { order: 0; }
  .service-card:nth-child(even) .service-card-body { order: 0; }

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

  /* Gallery */
  .gallery-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .gallery-images-grid,
  .gallery-videos-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Regions */
  .regions-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  }

  /* CTA */
  .cta-section { min-height: 280px; padding: 60px 0; }
  .cta-content h2 { font-size: 1.5rem; }
  .cta-content p { font-size: 0.95rem; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; }

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

  /* Cookie */
  .cookie-content { flex-direction: column; text-align: center; }
  .cookie-actions { width: 100%; justify-content: center; }

  /* Floating buttons */
  .whatsapp-float { bottom: 80px; right: 16px; width: 48px; height: 48px; }
  .scroll-top-btn { right: 16px; bottom: 20px; width: 42px; height: 42px; }

  .water-edge svg { height: 28px; }
}

/* --- 480px: tighter spacing --- */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .section-header {
    margin-bottom: 36px;
  }

  .section-header h2 {
    font-size: 1.5rem;
  }

  .about-info-cards {
    grid-template-columns: 1fr;
  }

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

  .gallery-images-grid,
  .gallery-videos-grid {
    grid-template-columns: 1fr;
  }

  .contact-card {
    padding: 20px;
  }

  .contact-form-wrapper {
    padding: 24px 16px;
  }

  .contact-item {
    word-break: break-all;
  }

  .map-container {
    height: 180px;
  }

  .cta-content h2 {
    font-size: 1.25rem;
  }

  .water-edge svg {
    height: 20px;
  }

  .whatsapp-float {
    right: 12px;
    bottom: 72px;
    width: 44px;
    height: 44px;
  }

  .scroll-top-btn {
    right: 12px;
    bottom: 16px;
    width: 38px;
    height: 38px;
  }
}

/* --- 350px: ultra compact --- */
@media (max-width: 350px) {
  .container {
    padding: 0 12px;
  }

  :root {
    --nav-height: 56px;
  }

  .logo {
    font-size: 1.2rem;
  }

  .logo-icon {
    width: 22px;
    height: 22px;
  }

  .section-header h2 {
    font-size: 1.3rem;
  }

  .region-card {
    padding: 16px 12px;
  }

  .region-card h3 {
    font-size: 0.95rem;
  }

  .service-card-body {
    padding: 16px;
  }

  .service-card-body h3 {
    font-size: 1rem;
  }

  .service-card-body p {
    font-size: 0.8rem;
  }
}

/* --- 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;
  }

  .river-container {
    display: none;
  }
}

/* --- Print Styles --- */
@media print {
  nav, footer, .whatsapp-float, .scroll-top-btn, #page-loader, .cookie-banner {
    display: none !important;
  }
  section { break-inside: avoid; page-break-inside: avoid; }
  * { color: #000 !important; background: #fff !important; }
}