/* =====================================================
   SELIDBE TIP-TOP — MAIN STYLESHEET v2.0
   Full redesign: animations, glassmorphism, scroll-reveal
   Mobile-first, iOS-safe, no external dependencies
   ===================================================== */

/* ─── Google Fonts ─────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Montserrat:wght@700;800;900&display=swap');

/* ─── CSS Custom Properties ─────────────────────────── */
:root {
  /* Colors */
  --navy:        #0A2540;
  --navy-light:  #0D3060;
  --navy-dark:   #061828;
  --orange:      #FF6B00;
  --orange-dark: #E55A00;
  --orange-glow: rgba(255, 107, 0, 0.35);
  --white:       #FFFFFF;
  --off-white:   #F7F9FC;
  --text-body:   #425466;
  --text-muted:  #718096;
  --border:      #E2E8F0;
  --shadow-sm:   0 2px 8px rgba(10,37,64,0.08);
  --shadow-md:   0 8px 24px rgba(10,37,64,0.12);
  --shadow-lg:   0 20px 48px rgba(10,37,64,0.18);
  --shadow-card: 0 4px 16px rgba(10,37,64,0.1);
  --shadow-card-hover: 0 16px 40px rgba(10,37,64,0.18);

  /* Typography — fluid with clamp() */
  --text-xs:   clamp(0.75rem, 1.5vw, 0.85rem);
  --text-sm:   clamp(0.875rem, 1.8vw, 1rem);
  --text-base: clamp(1rem, 2vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 2.5vw, 1.375rem);
  --text-xl:   clamp(1.25rem, 3vw, 1.75rem);
  --text-2xl:  clamp(1.5rem, 4vw, 2.25rem);
  --text-3xl:  clamp(1.875rem, 5vw, 3rem);
  --text-4xl:  clamp(2.25rem, 6vw, 3.75rem);
  --text-hero: clamp(2.5rem, 7vw, 5rem);

  /* Spacing */
  --section-py: clamp(4rem, 8vw, 7rem);
  --container:  1200px;
  --radius-sm:  6px;
  --radius:     12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  /* Transitions */
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:    cubic-bezier(0.55, 0, 1, 0.45);
  --ease-spring:cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition: 0.3s var(--ease-out);
  --transition-fast: 0.18s var(--ease-out);
}

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

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

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: var(--text-base);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ─── Container ─────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1rem, 5vw, 2rem);
}

/* ─── SCROLL REVEAL SYSTEM ──────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

[data-reveal="left"] {
  transform: translateX(-40px);
}

[data-reveal="right"] {
  transform: translateX(40px);
}

[data-reveal="scale"] {
  transform: scale(0.92);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* Stagger children */
[data-stagger] > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

[data-stagger].is-visible > *:nth-child(1) { transition-delay: 0.05s; }
[data-stagger].is-visible > *:nth-child(2) { transition-delay: 0.12s; }
[data-stagger].is-visible > *:nth-child(3) { transition-delay: 0.19s; }
[data-stagger].is-visible > *:nth-child(4) { transition-delay: 0.26s; }
[data-stagger].is-visible > *:nth-child(5) { transition-delay: 0.33s; }
[data-stagger].is-visible > *:nth-child(6) { transition-delay: 0.40s; }
[data-stagger].is-visible > *:nth-child(7) { transition-delay: 0.47s; }
[data-stagger].is-visible > *:nth-child(8) { transition-delay: 0.54s; }
[data-stagger].is-visible > *:nth-child(9) { transition-delay: 0.61s; }
[data-stagger].is-visible > *:nth-child(10) { transition-delay: 0.68s; }
[data-stagger].is-visible > *:nth-child(11) { transition-delay: 0.75s; }
[data-stagger].is-visible > *:nth-child(12) { transition-delay: 0.82s; }

[data-stagger].is-visible > * {
  opacity: 1;
  transform: none;
}

/* Card 3D tilt on hover */
[data-tilt] {
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
  transform-style: preserve-3d;
}

[data-tilt]:hover {
  transform: perspective(800px) rotateY(-2deg) rotateX(2deg) translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}

/* Float hover on CTAs */
.btn-float:hover,
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255,107,0,0.3);
}

/* ─── KEYFRAME ANIMATIONS ───────────────────────────── */
@keyframes pulseRing {
  0%   { transform: scale(1); opacity: 0.8; }
  70%  { transform: scale(1.6); opacity: 0; }
  100% { transform: scale(1.6); opacity: 0; }
}

@keyframes pulseRing2 {
  0%   { transform: scale(1); opacity: 0.5; }
  70%  { transform: scale(1.9); opacity: 0; }
  100% { transform: scale(1.9); opacity: 0; }
}

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

@keyframes floatSlow {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50%       { transform: translateY(-12px) rotate(2deg); }
}

@keyframes iconBounce {
  0%, 100% { transform: translateY(0); }
  30%       { transform: translateY(-10px); }
  60%       { transform: translateY(-4px); }
}

@keyframes iconSpin {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes strokeDraw {
  from { stroke-dashoffset: 100; }
  to   { stroke-dashoffset: 0; }
}

@keyframes tickClock {
  0%, 100% { transform: rotate(0deg);   transform-origin: bottom center; }
  50%       { transform: rotate(15deg);  transform-origin: bottom center; }
}

@keyframes barGrow {
  from { transform: scaleY(0); }
  to   { transform: scaleY(1); }
}

@keyframes starFill {
  0%   { fill: transparent; }
  100% { fill: #FF6B00; }
}

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

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

@keyframes ripple {
  to { transform: scale(4); opacity: 0; }
}

@keyframes slideInRight {
  from { transform: translateX(100%); }
  to   { transform: translateX(0); }
}

@keyframes slideOutRight {
  from { transform: translateX(0); }
  to   { transform: translateX(100%); }
}

/* ─── HEADER ────────────────────────────────────────── */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #0A2540;
  border-bottom: 3px solid var(--orange);
  transition: box-shadow var(--transition), transform 0.4s var(--ease-out);
  will-change: transform;
}

/* Safe area for notched devices */
#site-header {
  padding-top: env(safe-area-inset-top, 0);
}

#site-header.scrolled {
  box-shadow: 0 4px 28px rgba(0,0,0,0.35);
}

#site-header.scrolled .header-topbar {
  height: 0;
  opacity: 0;
  pointer-events: none;
}

#site-header.header-hidden {
  transform: translateY(-100%);
}

#site-header.header-visible {
  transform: translateY(0);
}

/* Top info bar */
.header-topbar {
  height: 38px;
  background: rgba(0,0,0,0.28);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  transition: height 0.35s var(--ease-out), opacity 0.35s var(--ease-out);
}

.topbar-inner {
  height: 38px;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.775rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.025em;
}

.topbar-info {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.topbar-info svg {
  width: 11px;
  height: 11px;
  flex-shrink: 0;
  opacity: 0.65;
}

.topbar-sep {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

.topbar-phone-link {
  margin-left: auto;
  color: var(--orange);
  font-weight: 600;
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: opacity 0.2s;
}

.topbar-phone-link svg {
  width: 11px;
  height: 11px;
  flex-shrink: 0;
}

.topbar-phone-link:hover { opacity: 0.75; }

/* Main nav row */
.header-main-row {
  height: 88px;
}

.header-inner {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  animation: fadeInDown 0.6s var(--ease-out) both;
}

.site-logo img {
  height: 80px;
  width: auto;
  transition: transform var(--transition);
}

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

/* Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  animation: fadeInDown 0.6s 0.1s var(--ease-out) both;
}

.main-nav a {
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.5rem 0.9rem;
  position: relative;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0.9rem;
  right: 0.9rem;
  height: 2px;
  background: var(--orange);
  border-radius: 1px;
  transform: scaleX(0);
  transition: transform 0.25s ease;
  transform-origin: center;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--white);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}

/* Header CTA */
.header-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--orange);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  white-space: nowrap;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  animation: fadeInDown 0.6s 0.2s var(--ease-out) both;
  box-shadow: 0 3px 14px rgba(255,107,0,0.3);
  flex-shrink: 0;
}

.header-cta:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255,107,0,0.42);
}

.header-cta svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* Hamburger */
.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.08);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  transition: background var(--transition-fast);
  flex-shrink: 0;
  padding: 0;
}

.nav-toggle:hover {
  background: rgba(255,255,255,0.14);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.3s, width 0.3s;
  transform-origin: center;
}

/* Hamburger → X animation */
.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
  width: 0;
}
.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav Close Button */
.mobile-nav-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  cursor: pointer;
  transition: background var(--transition-fast);
  flex-shrink: 0;
}

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

/* Mobile Nav Panel */
.mobile-nav-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(85vw, 340px);
  background: var(--navy-dark);
  z-index: 1001;
  padding: 5rem 2rem 2rem;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-out);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: calc(2rem + env(safe-area-inset-bottom, 0));
}

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

.mobile-nav-panel a {
  display: block;
  color: rgba(255,255,255,0.85);
  font-size: 1.2rem;
  font-weight: 600;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color var(--transition-fast), padding-left var(--transition-fast);
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.4s, transform 0.4s, color 0.2s, padding-left 0.2s;
}

.nav-open .mobile-nav-panel a:nth-child(1) { opacity: 1; transform: none; transition-delay: 0.1s; }
.nav-open .mobile-nav-panel a:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.15s; }
.nav-open .mobile-nav-panel a:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.2s; }
.nav-open .mobile-nav-panel a:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.25s; }
.nav-open .mobile-nav-panel a:nth-child(5) { opacity: 1; transform: none; transition-delay: 0.3s; }
.nav-open .mobile-nav-panel a:nth-child(6) { opacity: 1; transform: none; transition-delay: 0.35s; }

.mobile-nav-panel a:hover {
  color: var(--orange);
  padding-left: 0.5rem;
}

.mobile-nav-cta {
  margin-top: 2rem;
}

.mobile-nav-cta a {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  background: var(--orange) !important;
  color: var(--white) !important;
  border-radius: var(--radius) !important;
  border-bottom: none !important;
  font-size: 1.1rem !important;
  padding: 1rem 1.5rem !important;
  transition-delay: 0.4s !important;
  box-shadow: 0 8px 24px rgba(255,107,0,0.35);
}

/* Nav Overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}

.nav-open .nav-overlay {
  opacity: 1;
  pointer-events: all;
}

/* ─── HERO ──────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-dark);
  padding-top: 91px; /* header offset */
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/van-coastal.jpg');
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.05);
  transition: transform 8s ease-out;
  will-change: transform;
}

.hero-bg.loaded {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(6,24,40,0.92) 0%,
    rgba(10,37,64,0.82) 45%,
    rgba(10,37,64,0.45) 100%
  );
}

/* Animated grid lines overlay */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(to bottom, transparent, rgba(0,0,0,0.5) 30%, rgba(0,0,0,0.5) 70%, transparent);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: clamp(3rem, 8vw, 5rem) 0;
  max-width: 700px;
}

/* Animated badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,107,0,0.15);
  border: 1px solid rgba(255,107,0,0.4);
  color: var(--orange);
  font-size: var(--text-xs);
  font-weight: 600;
  padding: 0.375rem 0.875rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  animation: fadeInDown 0.7s 0.3s var(--ease-out) both;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  animation: float 1.5s ease-in-out infinite;
}

.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: var(--text-hero);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.7s 0.5s var(--ease-out) both;
}

.hero-title-accent {
  color: var(--orange);
  display: inline-block;
  position: relative;
}

.hero-subtitle {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.75);
  margin-bottom: 2.5rem;
  line-height: 1.6;
  max-width: 540px;
  animation: fadeInUp 0.7s 0.65s var(--ease-out) both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
  animation: fadeInUp 0.7s 0.75s var(--ease-out) both;
}

/* ─── BUTTONS ───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: var(--text-sm);
  padding: clamp(0.8rem, 2vw, 1rem) clamp(1.25rem, 3vw, 1.875rem);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* Ripple container */
.btn .ripple {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  transform: scale(0);
  animation: ripple 0.6s linear;
  pointer-events: none;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 6px 24px var(--orange-glow);
  position: relative;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 10px;
  border: 2px solid var(--orange-glow);
  animation: pulseRing 2.5s ease-out infinite;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 14px;
  border: 2px solid var(--orange-glow);
  animation: pulseRing2 2.5s 0.5s ease-out infinite;
}

.btn-primary .ripple {
  background: rgba(255,255,255,0.35);
}

.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(255,107,0,0.5);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.35);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-2px);
}

.btn-outline .ripple {
  background: rgba(255,255,255,0.2);
}

/* Hero stats row */
.hero-stats {
  display: flex;
  gap: 2rem;
  animation: fadeInUp 0.7s 0.9s var(--ease-out) both;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-number {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: var(--text-2xl);
  color: var(--white);
  line-height: 1;
}

.hero-stat-number span {
  color: var(--orange);
}

.hero-stat-label {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.55);
  margin-top: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ─── TRUST BAR ─────────────────────────────────────── */
#trust-bar {
  background: var(--navy);
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.5rem, 4vw, 4rem);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
}

.trust-icon-wrap {
  width: 44px;
  height: 44px;
  background: rgba(255,107,0,0.12);
  border: 1px solid rgba(255,107,0,0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.trust-item:hover .trust-icon-wrap {
  background: rgba(255,107,0,0.22);
  border-color: rgba(255,107,0,0.45);
  transform: translateY(-2px);
}

.trust-icon-wrap svg {
  width: 22px;
  height: 22px;
  color: var(--orange);
}

.trust-text strong {
  display: block;
  font-weight: 700;
  font-size: var(--text-sm);
  line-height: 1.2;
}

.trust-text span {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.55);
}

/* ─── SECTION HEADERS ───────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-tag {
  display: inline-block;
  background: rgba(255,107,0,0.1);
  color: var(--orange);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.875rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: var(--text-lg);
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ─── SERVICES SECTION ──────────────────────────────── */
#services {
  padding: var(--section-py) 0;
  background: var(--off-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
  cursor: default;
}

/* Top gradient border reveal on hover */
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), #FF9A00);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(255,107,0,0.15);
}

.card-icon-wrap {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(255,107,0,0.1), rgba(255,107,0,0.05));
  border: 1px solid rgba(255,107,0,0.15);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform var(--transition), background var(--transition);
}

.service-card:hover .card-icon-wrap {
  background: linear-gradient(135deg, rgba(255,107,0,0.18), rgba(255,107,0,0.08));
  transform: scale(1.08);
}

.card-icon-wrap svg {
  width: 32px;
  height: 32px;
  color: var(--orange);
}

/* Icon animations on hover */
.service-card:hover .icon-house { animation: iconBounce 0.6s var(--ease-spring); }
.service-card:hover .icon-office { animation: float 1s ease-in-out infinite; }
.service-card:hover .icon-globe  { animation: iconSpin 2s linear infinite; }
.service-card:hover .icon-piano  { animation: floatSlow 2s ease-in-out infinite; }

.service-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

.service-card p {
  color: var(--text-muted);
  font-size: var(--text-sm);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  color: var(--orange);
  font-weight: 700;
  font-size: var(--text-sm);
  transition: gap var(--transition-fast);
}

.card-link svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-fast);
}

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

.service-card:hover .card-link {
  gap: 0.625rem;
}

/* ─── WHY US SECTION ────────────────────────────────── */
#why-us {
  padding: var(--section-py) 0;
  background: var(--white);
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.why-us-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.25rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: all var(--transition);
}

.feature-item:hover {
  background: var(--off-white);
  border-color: var(--border);
}

.feature-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(10,37,64,0.25);
  transition: transform var(--transition);
}

.feature-item:hover .feature-icon {
  transform: scale(1.08) rotate(-3deg);
}

.feature-icon svg {
  width: 26px;
  height: 26px;
  color: var(--white);
}

/* Animated stroke check */
.feature-icon .icon-check circle {
  stroke-dasharray: 100;
  stroke-dashoffset: 0;
}

.feature-item:hover .icon-check path {
  stroke-dasharray: 30;
  stroke-dashoffset: 30;
  animation: strokeDraw 0.4s var(--ease-out) forwards;
}

.feature-text h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: var(--text-base);
  color: var(--navy);
  margin-bottom: 0.375rem;
}

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

/* Stats card (right side) */
.why-us-card {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.why-us-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,0,0.15), transparent 70%);
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.stat-block {
  text-align: center;
}

.stat-number {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: var(--text-3xl);
  color: var(--white);
  line-height: 1;
  display: block;
}

.stat-number .count-suffix {
  color: var(--orange);
}

.stat-label {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.375rem;
  display: block;
}

.why-us-cta {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  text-align: center;
}

.why-us-cta p {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.25rem;
}

/* ─── PRICING TEASER ────────────────────────────────── */
#pricing {
  padding: var(--section-py) 0;
  background: var(--off-white);
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 2px solid var(--border);
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.pricing-card.featured {
  border-color: var(--orange);
  box-shadow: 0 12px 40px rgba(255,107,0,0.18);
}

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

.pricing-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--orange);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.625rem;
  border-radius: 100px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pricing-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  background: var(--off-white);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition);
}

.pricing-card:hover .pricing-icon {
  transform: scale(1.1);
}

.pricing-icon svg {
  width: 28px;
  height: 28px;
  color: var(--navy);
}

.pricing-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: var(--text-base);
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.pricing-price {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: var(--text-2xl);
  color: var(--orange);
  margin-bottom: 0.375rem;
}

.pricing-note {
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.pricing-features {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--text-sm);
  color: var(--text-body);
}

.pricing-features svg {
  width: 16px;
  height: 16px;
  color: var(--orange);
  flex-shrink: 0;
}

/* ─── CTA STRIP ─────────────────────────────────────── */
#cta-strip {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
  padding: clamp(3rem, 6vw, 5rem) 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

#cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255,107,0,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(255,107,0,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.cta-strip-inner {
  position: relative;
  z-index: 1;
}

.cta-strip-tag {
  display: inline-block;
  background: rgba(255,107,0,0.15);
  border: 1px solid rgba(255,107,0,0.3);
  color: var(--orange);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.875rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}

.cta-strip-title {
  font-family: 'Montserrat', sans-serif;
  font-size: var(--text-3xl);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.15;
}

.cta-strip-sub {
  color: rgba(255,255,255,0.65);
  font-size: var(--text-base);
  margin-bottom: 2.5rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.cta-strip-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.cta-strip-guarantee {
  margin-top: 1.5rem;
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
}

.cta-strip-guarantee svg {
  width: 14px;
  height: 14px;
  color: var(--orange);
  opacity: 0.7;
}

/* ─── REVIEWS ───────────────────────────────────────── */
#reviews {
  padding: var(--section-py) 0;
  background: var(--white);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.review-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
}

.review-card:hover {
  border-color: rgba(255,107,0,0.2);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.review-quote {
  position: absolute;
  top: 1.5rem;
  right: 1.75rem;
  font-size: 4rem;
  line-height: 1;
  color: rgba(255,107,0,0.1);
  font-family: Georgia, serif;
  pointer-events: none;
  user-select: none;
}

.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
}

.review-stars svg {
  width: 18px;
  height: 18px;
  color: var(--orange);
  fill: var(--orange);
}

.review-text {
  font-size: var(--text-sm);
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.review-name {
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--navy);
  line-height: 1.2;
}

.review-location {
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-top: 0.15rem;
}

/* Google badge */
.review-google {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-left: auto;
}

/* ─── MAP SECTION ───────────────────────────────────── */
#map-section {
  background: var(--off-white);
  padding: var(--section-py) 0;
}

.map-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: center;
}

.map-info h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 1rem;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.contact-item:hover {
  border-color: rgba(255,107,0,0.2);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.contact-item-icon {
  width: 42px;
  height: 42px;
  background: rgba(255,107,0,0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-icon svg {
  width: 20px;
  height: 20px;
  color: var(--orange);
}

.contact-item-text {
  font-size: var(--text-sm);
  color: var(--text-body);
  font-weight: 500;
}

.contact-item-text a {
  color: var(--navy);
  font-weight: 700;
  transition: color var(--transition-fast);
}

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

.map-embed {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 380px;
  border: 1px solid var(--border);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ─── WAVE DIVIDER ──────────────────────────────────── */
.wave-divider {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-bottom: -2px;
}

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

/* ─── FOOTER ────────────────────────────────────────── */
#site-footer {
  background: #0A2540;
  color: rgba(255,255,255,0.7);
  padding: clamp(3rem, 6vw, 5rem) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-brand .site-logo {
  margin-bottom: 1.25rem;
}

.footer-brand p {
  font-size: var(--text-sm);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.footer-socials a:hover {
  background: var(--orange);
  transform: translateY(-3px);
}

.footer-socials svg {
  width: 18px;
  height: 18px;
}

.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--white);
  margin-bottom: 1.25rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-col a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.55);
  transition: color var(--transition-fast), padding-left var(--transition-fast);
  display: inline-block;
}

.footer-col a:hover {
  color: var(--orange);
  padding-left: 0.375rem;
}

.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.35);
  padding-bottom: calc(1.5rem + env(safe-area-inset-bottom, 0));
}

.footer-bottom a {
  color: rgba(255,255,255,0.35);
  transition: color var(--transition-fast);
}

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

/* ─── SCROLL TO TOP ─────────────────────────────────── */
#scroll-top {
  position: fixed;
  bottom: calc(2rem + env(safe-area-inset-bottom, 0));
  right: 1.5rem;
  width: 48px;
  height: 48px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(255,107,0,0.45);
  opacity: 0;
  transform: translateY(16px) scale(0.8);
  transition: all var(--transition);
  pointer-events: none;
  z-index: 900;
  color: var(--white);
}

#scroll-top.visible {
  opacity: 1;
  transform: none;
  pointer-events: all;
}

#scroll-top:hover {
  background: var(--orange-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(255,107,0,0.5);
}

#scroll-top svg {
  width: 20px;
  height: 20px;
}

/* ─── MOBILE STICKY PHONE BAR ───────────────────────── */
#sticky-phone {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 800;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}

.sticky-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 0.75rem;
  padding-bottom: calc(0.875rem + env(safe-area-inset-bottom, 0));
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
}

.sticky-btn-phone {
  background: var(--orange);
}

.sticky-btn-whatsapp {
  background: #25D366;
}

.sticky-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ─── RESPONSIVE ────────────────────────────────────── */
@media (max-width: 1024px) {
  .why-us-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .why-us-card {
    order: -1;
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

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

@media (max-width: 768px) {
  .main-nav,
  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  #sticky-phone {
    display: flex;
  }

  /* Center logo in mobile header — 3-col grid: [spacer] [logo] [hamburger] */
  .header-inner {
    display: grid;
    grid-template-columns: 44px 1fr 44px;
    align-items: center;
    gap: 0;
  }

  .site-logo {
    grid-column: 2;
    justify-self: center;
    position: static;
    transform: none;
  }

  .nav-toggle {
    grid-column: 3;
    justify-self: end;
  }

  /* Height accommodates sticky phone bar on mobile */
  #site-footer {
    padding-bottom: calc(60px + env(safe-area-inset-bottom, 0));
  }

  .hero-stats {
    gap: 1.25rem;
  }

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

  .trust-bar-inner {
    gap: 1rem;
    justify-content: flex-start;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    gap: 1rem;
  }

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

  .cta-strip-actions {
    flex-direction: column;
  }

  .cta-strip-actions .btn {
    width: 100%;
    justify-content: center;
  }

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

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

  [data-reveal],
  [data-stagger] > * {
    opacity: 1;
    transform: none;
  }
}

/* ═══════════════════════════════════════════════════
   PHOTO GALLERY SECTION
═══════════════════════════════════════════════════ */
#photo-gallery {
  padding: var(--section-py) 0;
  background: var(--navy-dark);
  overflow: hidden;
}

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

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-out);
}

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,24,40,0.85) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.35s var(--ease-out);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

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

.gallery-item-caption {
  color: var(--white);
  font-size: var(--text-sm);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.gallery-item-caption svg {
  width: 18px;
  height: 18px;
  opacity: 0.8;
}

.gallery-zoom-icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.3s, transform 0.3s var(--ease-spring);
}

.gallery-zoom-icon svg {
  width: 18px;
  height: 18px;
  color: white;
}

.gallery-item:hover .gallery-zoom-icon {
  opacity: 1;
  transform: scale(1);
}

/* Lightbox */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0,0,0,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  padding: 1rem;
}

.gallery-lightbox.is-open {
  opacity: 1;
  pointer-events: all;
}

.gallery-lightbox img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 40px 80px rgba(0,0,0,0.6);
  transform: scale(0.92);
  transition: transform 0.35s var(--ease-spring);
}

.gallery-lightbox.is-open img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  border: none;
  transition: background var(--transition);
  backdrop-filter: blur(8px);
}

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

.lightbox-close svg {
  width: 22px;
  height: 22px;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  border: none;
  transition: background var(--transition), transform var(--transition);
}

.lightbox-nav:hover {
  background: rgba(255,255,255,0.22);
  transform: translateY(-50%) scale(1.08);
}

.lightbox-nav svg {
  width: 24px;
  height: 24px;
}

.lightbox-prev { left: 1.25rem; }
.lightbox-next { right: 1.25rem; }

.lightbox-counter {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  font-size: var(--text-sm);
  font-weight: 500;
  background: rgba(0,0,0,0.4);
  padding: 0.35rem 1rem;
  border-radius: 100px;
  backdrop-filter: blur(8px);
}

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

@media (min-width: 769px) and (max-width: 1023px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-item:last-child {
    grid-column: span 2;
    aspect-ratio: 16/7;
  }
}

/* ═══════════════════════════════════════════════════
   CJENIK PAGE
═══════════════════════════════════════════════════ */
.cjenik-hero {
  background: var(--navy-dark);
  padding: calc(var(--section-py) + 90px) 0 var(--section-py);
  text-align: center;
}

.cjenik-hero .section-tag { color: var(--orange); margin-bottom: 1rem; }
.cjenik-hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: var(--text-4xl);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 1rem;
}
.cjenik-hero p {
  color: rgba(255,255,255,0.65);
  font-size: var(--text-lg);
  max-width: 600px;
  margin: 0 auto;
}

.cjenik-section {
  padding: var(--section-py) 0;
  background: var(--off-white);
}

.rate-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.rate-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

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

.rate-card.featured {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.rate-card.featured::before {
  background: linear-gradient(90deg, var(--orange), #FF9500);
}

.rate-card-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  background: rgba(255,107,0,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition);
}

.rate-card.featured .rate-card-icon {
  background: rgba(255,107,0,0.2);
}

.rate-card:hover .rate-card-icon {
  transform: scale(1.1) rotate(-5deg);
}

.rate-card-icon svg {
  width: 32px;
  height: 32px;
  color: var(--orange);
}

.rate-card-title {
  font-weight: 700;
  font-size: var(--text-base);
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.rate-card.featured .rate-card-title {
  color: rgba(255,255,255,0.85);
}

.rate-card-price {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: var(--text-3xl);
  color: var(--orange);
  line-height: 1.1;
  margin-bottom: 0.25rem;
}

.rate-card-unit {
  font-size: var(--text-xs);
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}

.rate-card.featured .rate-card-unit {
  color: rgba(255,255,255,0.5);
}

.rate-card-note {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.5;
}

.rate-card.featured .rate-card-note {
  color: rgba(255,255,255,0.6);
}

.cjenik-table-section {
  padding: var(--section-py) 0;
  background: var(--white);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.price-table thead {
  background: var(--navy);
  color: var(--white);
}

.price-table th {
  padding: 1.125rem 1.5rem;
  text-align: left;
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.price-table th:last-child {
  text-align: right;
}

.price-table td {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border);
  font-size: var(--text-sm);
  vertical-align: middle;
}

.price-table td:last-child {
  text-align: right;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: var(--orange);
  font-size: var(--text-base);
  white-space: nowrap;
}

.price-table tr:last-child td {
  border-bottom: none;
}

.price-table tbody tr {
  background: var(--white);
  transition: background var(--transition-fast);
}

.price-table tbody tr:nth-child(even) {
  background: var(--off-white);
}

.price-table tbody tr:hover {
  background: rgba(255,107,0,0.04);
}

.price-table-icon {
  width: 36px;
  height: 36px;
  background: rgba(255,107,0,0.1);
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.75rem;
  vertical-align: middle;
  flex-shrink: 0;
}

.price-table-icon svg {
  width: 18px;
  height: 18px;
  color: var(--orange);
}

.price-tag-label {
  display: inline-flex;
  align-items: center;
}

.cjenik-note {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  margin-top: 2.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  color: var(--white);
}

.cjenik-note-icon {
  width: 48px;
  height: 48px;
  background: rgba(255,107,0,0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cjenik-note-icon svg {
  width: 24px;
  height: 24px;
  color: var(--orange);
}

.cjenik-note-text strong {
  display: block;
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--white);
}

.cjenik-note-text p {
  color: rgba(255,255,255,0.7);
  font-size: var(--text-sm);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════
   SAVJETI PAGE
═══════════════════════════════════════════════════ */
.savjeti-section {
  padding: var(--section-py) 0;
  background: var(--off-white);
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.tip-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.tip-number {
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: background var(--transition), transform var(--transition);
}

.tip-card:hover .tip-number {
  background: var(--orange);
  transform: rotate(-5deg) scale(1.05);
}

.tip-text {
  font-size: var(--text-sm);
  color: var(--text-body);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════════
   O NAMA PAGE
═══════════════════════════════════════════════════ */
.o-nama-section {
  padding: var(--section-py) 0;
}

.o-nama-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 2.5rem;
}

.o-nama-text p {
  font-size: var(--text-base);
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.o-nama-text p:last-child {
  margin-bottom: 0;
}

.o-nama-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.o-nama-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

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

.o-nama-contact-block {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-top: 2rem;
  border: 1px solid var(--border);
}

.o-nama-contact-block a {
  color: var(--orange);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.o-nama-contact-block a:hover {
  color: var(--orange-dark);
}

@media (max-width: 768px) {
  .o-nama-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .price-table th, .price-table td {
    padding: 0.875rem 1rem;
  }

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

  .cjenik-note {
    flex-direction: column;
  }
}

/* ═══════════════════════════════════════════════════
   HERO GRADIENT SHIFT (Apex-inspired)
═══════════════════════════════════════════════════ */
@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero-gradient-bg {
  background: linear-gradient(-45deg, #061828, #0A2540, #0D3060, #132E50);
  background-size: 400% 400%;
  animation: gradientShift 12s ease infinite;
}

/* ═══════════════════════════════════════════════════
   PARALLAX DIVIDER SECTIONS
═══════════════════════════════════════════════════ */
.parallax-divider {
  height: 200px;
  background: linear-gradient(135deg, #0A2540 0%, #0D3060 50%, #0A2540 100%);
  position: relative;
  overflow: hidden;
}

.parallax-divider::after {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(255,107,0,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(255,107,0,0.06) 0%, transparent 60%);
}

.parallax-divider-text {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: var(--text-2xl);
  text-align: center;
  padding: 2rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

/* ═══════════════════════════════════════════════════
   FAQ ACCORDION
═══════════════════════════════════════════════════ */
.faq-section {
  padding: var(--section-py) 0;
  background: var(--off-white);
}

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

.faq-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow var(--transition), border-color var(--transition);
}

.faq-item:hover {
  border-color: rgba(255,107,0,0.3);
}

.faq-item.is-open {
  box-shadow: var(--shadow-card);
  border-color: var(--orange);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--navy);
  font-family: inherit;
  transition: color var(--transition);
}

.faq-item.is-open .faq-question {
  color: var(--orange);
}

.faq-chevron {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform 0.35s var(--ease-spring), color 0.3s;
}

.faq-item.is-open .faq-chevron {
  transform: rotate(180deg);
  color: var(--orange);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out), padding 0.3s;
}

.faq-item.is-open .faq-answer {
  max-height: 400px;
}

.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: var(--text-sm);
  color: var(--text-body);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════
   GOOGLE REVIEWS SECTION
═══════════════════════════════════════════════════ */
.reviews-section {
  padding: var(--section-py) 0;
  background: var(--white);
}

.reviews-header-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,107,0,0.08);
  border: 1px solid rgba(255,107,0,0.2);
  border-radius: 100px;
  padding: 0.5rem 1.25rem;
  margin-bottom: 1.5rem;
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--orange);
}

.reviews-header-badge svg {
  width: 20px;
  height: 20px;
}

.reviews-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 0.5rem;
}

.reviews-stars svg {
  width: 20px;
  height: 20px;
  color: #FFC107;
  fill: #FFC107;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}

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

.review-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}

.review-name {
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--navy);
}

.review-source {
  font-size: var(--text-xs);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.review-source svg {
  width: 14px;
  height: 14px;
}

.review-card-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 0.75rem;
}

.review-card-stars svg {
  width: 16px;
  height: 16px;
  color: #FFC107;
  fill: #FFC107;
}

.review-text {
  font-size: var(--text-sm);
  color: var(--text-body);
  line-height: 1.65;
  font-style: italic;
}

.review-text::before {
  content: '"';
  font-size: 1.5em;
  color: var(--orange);
  font-weight: 800;
  margin-right: 2px;
}

.review-text::after {
  content: '"';
  font-size: 1.5em;
  color: var(--orange);
  font-weight: 800;
  margin-left: 2px;
}

.review-google-icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 24px;
  height: 24px;
  opacity: 0.12;
}

/* ═══════════════════════════════════════════════════
   CONTACT / PROCJENA FORM
═══════════════════════════════════════════════════ */
.form-section {
  padding: var(--section-py) 0;
  background: var(--off-white);
}

.procjena-form {
  max-width: 700px;
  margin: 2.5rem auto 0;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

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

.form-group.full-width {
  grid-column: span 2;
}

.form-label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--navy);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: var(--text-sm);
  color: var(--navy);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,107,0,0.12);
}

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

.form-submit {
  margin-top: 1.5rem;
}

.form-privacy {
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-top: 1rem;
  text-align: center;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-group.full-width {
    grid-column: span 1;
  }
  .procjena-form {
    padding: 1.5rem;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}


