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

:root {
  --navy: #0d7377;
  --navy-dark: #074a50;
  --navy-light: #0f9090;
  --gold: #e8a020;
  --gold-light: #f5b942;
  --gold-dark: #c8861a;
  --white: #ffffff;
  --off-white: #f8f9fb;
  --text: #2d3748;
  --text-light: #718096;
  --border: #e2e8f0;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,.10);
  --shadow-lg: 0 16px 64px rgba(0,0,0,.14);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
input, select, textarea, button { font-family: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ═══════════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
═══════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal[data-delay="100"] { transition-delay: .1s; }
.reveal[data-delay="150"] { transition-delay: .15s; }
.reveal[data-delay="200"] { transition-delay: .2s; }
.reveal[data-delay="300"] { transition-delay: .3s; }
.reveal[data-delay="450"] { transition-delay: .45s; }

/* ═══════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,160,32,.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,255,255,.25);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-full { width: 100%; justify-content: center; padding: 16px; }
.btn-sm { padding: 10px 20px; font-size: .85rem; }

/* ═══════════════════════════════════════════════════
   SECTION COMMON
═══════════════════════════════════════════════════ */
.section-header { text-align: center; margin-bottom: 56px; }
.section-badge {
  display: inline-block;
  background: rgba(13,115,119,.12);
  color: var(--navy);
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--navy-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}
.accent { color: var(--gold); }

/* ═══════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: background .4s, box-shadow .4s, padding .4s;
}
.navbar.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  padding: 12px 0;
}
.navbar.scrolled .nav-link { color: var(--text); }
.navbar.scrolled .nav-link:hover { color: var(--gold-dark); }
.navbar.scrolled .logo-text { color: var(--navy-dark); }
.navbar.scrolled .nav-cta { color: var(--navy-dark) !important; }

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.4rem;
  color: var(--white);
  transition: var(--transition);
}
.navbar.scrolled .nav-logo { color: var(--navy-dark); }
.logo-icon { font-size: 1.6rem; }
.logo-text strong { color: var(--gold); }
.nav-logo-img {
  height: 48px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: var(--transition);
}
.navbar.scrolled .nav-logo-img { filter: none; }
.footer-logo-img {
  height: 52px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-link {
  color: rgba(255,255,255,.9);
  font-size: .9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,.1); }
.nav-cta {
  background: var(--navy);
  color: var(--white) !important;
  font-weight: 700;
}
.nav-cta:hover { background: var(--navy-dark); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.navbar.scrolled .hamburger span { background: var(--navy-dark); }

/* ═══════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 40%, #0f9688 100%);
}
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(4, 28, 30, 0.25);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  max-width: 760px;
  padding-left: 24px;
  padding-right: 24px;
  width: 100%;
}
.hero-badge {
  display: inline-block;
  background: var(--navy);
  color: #ffffff;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  padding: 8px 18px;
  border-radius: 100px;
  border: 1px solid rgba(232,160,32,.3);
  margin-bottom: 24px;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero-accent { color: #ffffff; }
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.8);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.75);
  font-size: .9rem;
}
.trust-icon {
  width: 22px;
  height: 22px;
  background: var(--gold);
  color: var(--navy-dark);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 700;
  flex-shrink: 0;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-arrow {
  width: 30px;
  height: 30px;
  border-right: 2px solid rgba(255,255,255,.4);
  border-bottom: 2px solid rgba(255,255,255,.4);
  transform: rotate(45deg);
  animation: scrollBounce 2s infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 1; }
  50% { transform: rotate(45deg) translateY(8px); opacity: .5; }
}

/* ═══════════════════════════════════════════════════
   STATS
═══════════════════════════════════════════════════ */
.stats {
  background: var(--navy-dark);
  padding: 64px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-item { color: var(--white); }
.stat-number {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  font-family: 'Inter', sans-serif;
}
.stat-suffix { font-size: clamp(1.5rem, 3vw, 2.5rem); font-weight: 900; color: var(--gold); }
.stat-label {
  font-size: .9rem;
  color: rgba(255,255,255,.65);
  margin-top: 8px;
  font-weight: 500;
}

/* ═══════════════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════════════ */
.services { padding: 100px 0; background: var(--off-white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--border);
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: var(--navy);
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before { background: var(--gold); }
.service-card.featured {
  background: var(--navy-dark);
  color: var(--white);
  border-color: transparent;
}
.service-card.featured::before { background: var(--gold); }
.service-card.featured h3 { color: var(--white); }
.service-card.featured p { color: rgba(255,255,255,.75); }
.service-card.featured .service-list li { color: rgba(255,255,255,.7); }
.service-card.featured .service-list li::before { color: var(--gold); }
.service-card.featured .service-link { color: var(--gold); }

.service-badge-card {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--gold);
  color: var(--navy-dark);
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 5px 12px;
  border-radius: 100px;
}
.service-icon-wrap {
  width: 64px; height: 64px;
  background: rgba(232,160,32,.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-card.featured .service-icon-wrap { background: rgba(255,255,255,.1); }
.service-icon { font-size: 2rem; }
.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 12px;
}
.service-card p { font-size: .9rem; color: var(--text-light); margin-bottom: 20px; line-height: 1.6; }
.service-list { margin-bottom: 24px; }
.service-list li {
  font-size: .875rem;
  color: var(--text-light);
  padding: 5px 0;
  padding-left: 20px;
  position: relative;
}
.service-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: .8rem;
}
.service-link {
  font-size: .875rem;
  font-weight: 700;
  color: var(--navy);
  transition: var(--transition);
}
.service-link:hover { color: var(--gold-dark); }

/* ═══════════════════════════════════════════════════
   WHY US
═══════════════════════════════════════════════════ */
.why-us { padding: 100px 0; background: var(--white); }
.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-us-visual {
  position: relative;
  min-height: 380px;
}
.visual-photo-wrap {
  position: absolute;
  top: 0; left: 0; right: 60px; bottom: 40px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  z-index: 2;
  box-shadow: var(--shadow-lg);
}
.visual-photo-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.visual-card {
  background: var(--navy-dark);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: absolute;
}
.secondary-card {
  bottom: 0; right: 0;
  padding: 24px 28px;
  background: var(--gold);
  color: var(--navy-dark);
  z-index: 3;
  box-shadow: var(--shadow-md);
}
.visual-icon { font-size: 2.5rem; margin-bottom: 12px; }
.rating-stars { font-size: 1.3rem; color: var(--navy-dark); margin-bottom: 6px; }
.rating-text { font-size: .9rem; font-weight: 600; color: var(--navy-dark); }
.visual-accent-circle {
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  border: 2px dashed rgba(232,160,32,.3);
  bottom: -20px; left: -20px;
  z-index: 0;
}

.why-us-content .section-badge { display: inline-block; }
.why-us-content .section-title { text-align: left; margin-bottom: 20px; }
.why-intro { font-size: 1rem; color: var(--text-light); margin-bottom: 36px; line-height: 1.7; }
.why-features { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.why-feature {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.why-feature:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
  background: rgba(232,160,32,.04);
}
.why-feature-icon {
  font-size: 1.6rem;
  width: 48px; height: 48px;
  background: rgba(232,160,32,.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.why-feature h4 { font-size: .95rem; font-weight: 700; color: var(--navy-dark); margin-bottom: 4px; }
.why-feature p { font-size: .875rem; color: var(--text-light); }

/* ═══════════════════════════════════════════════════
   PROCESS
═══════════════════════════════════════════════════ */
.process { padding: 100px 0; background: var(--off-white); }
.process-timeline {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
}
.process-step {
  flex: 1;
  text-align: center;
  position: relative;
}
.process-connector {
  flex: 0 0 auto;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--navy), var(--gold));
  margin-top: 44px;
  opacity: .3;
}
.step-number {
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(26,58,92,.08);
  line-height: 1;
  margin-bottom: 4px;
  font-family: 'Inter', sans-serif;
}
.step-content {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1px solid var(--border);
  transition: var(--transition);
  margin: 0 8px;
}
.process-step:hover .step-content {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.step-icon { font-size: 2rem; margin-bottom: 12px; }
.step-content h3 { font-size: 1rem; font-weight: 700; color: var(--navy-dark); margin-bottom: 10px; }
.step-content p { font-size: .875rem; color: var(--text-light); line-height: 1.6; }

/* ═══════════════════════════════════════════════════
   GALLERY
═══════════════════════════════════════════════════ */
.gallery { padding: 100px 0; background: var(--white); }
.gallery-filters {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 10px 24px;
  border-radius: 100px;
  border: 2px solid var(--border);
  background: var(--white);
  color: var(--text-light);
  font-size: .875rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--navy-dark);
  color: var(--white);
  border-color: var(--navy-dark);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}
.gallery-item { border-radius: var(--radius-lg); overflow: hidden; }
.gallery-card {
  height: 260px;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  background: #1a3a5c;
}
.gallery-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery-card:hover img { transform: scale(1.06); }
.gallery-card.large { height: 540px; }
.gallery-card.tall { height: 380px; }
.gallery-card:hover { transform: scale(1.01); }
.gallery-card:hover .gallery-overlay { opacity: 1; }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,30,60,.85) 0%, rgba(10,30,60,.3) 60%, transparent 100%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  z-index: 2;
}
.gallery-category {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gold-light);
  margin-bottom: 6px;
}
.gallery-overlay h4 { color: var(--white); font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.gallery-overlay p { color: rgba(255,255,255,.7); font-size: .8rem; }

.gallery-item:nth-child(2) { grid-row: span 2; }
.gallery-item:nth-child(4) { grid-row: span 2; }

.gallery-cta { text-align: center; margin-top: 48px; }

/* ═══════════════════════════════════════════════════
   BEFORE & AFTER
═══════════════════════════════════════════════════ */
.before-after { padding: 100px 0; background: var(--navy-dark); }
.before-after .section-badge { background: rgba(13,115,119,.15); color: var(--navy); }
.before-after .section-title { color: var(--white); }
.before-after .section-subtitle { color: rgba(255,255,255,.65); }

.ba-grid {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.ba-pair {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}
.ba-pair:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(232,160,32,.3);
}

.ba-images {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: center;
  margin-bottom: 24px;
}

.ba-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.ba-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.ba-item:hover img { transform: scale(1.04); }

.ba-label {
  position: absolute;
  top: 12px; left: 12px;
  padding: 5px 14px;
  border-radius: 100px;
  font-size: .75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.ba-label.antes {
  background: rgba(0,0,0,.65);
  color: rgba(255,255,255,.85);
  border: 1px solid rgba(255,255,255,.2);
}
.ba-label.despues {
  background: var(--gold);
  color: var(--navy-dark);
}

.ba-arrow {
  font-size: 2rem;
  color: var(--gold);
  font-weight: 700;
  text-align: center;
  flex-shrink: 0;
}

.ba-info { border-top: 1px solid rgba(255,255,255,.08); padding-top: 20px; }
.ba-info h4 { font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.ba-info p { font-size: .9rem; color: rgba(255,255,255,.6); line-height: 1.6; margin-bottom: 12px; }
.ba-category-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 2px solid rgba(232,160,32,.3);
}
.ba-category-icon { font-size: 1.6rem; }

.ba-tag {
  display: inline-block;
  background: rgba(13,115,119,.4);
  color: var(--gold-light);
  font-size: .75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  border: 1px solid rgba(13,115,119,.5);
}

@media (max-width: 640px) {
  .ba-images { grid-template-columns: 1fr; }
  .ba-arrow { transform: rotate(90deg); }
}

/* ═══════════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════════ */
.testimonials { padding: 100px 0; background: var(--off-white); }
.testimonials-slider { position: relative; overflow: hidden; }
.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
  cursor: grab;
}
.testimonials-track:active { cursor: grabbing; }
.testimonial-card {
  min-width: calc(33.333% - 16px);
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--border);
  flex-shrink: 0;
  transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); border-color: var(--gold); }
.testimonial-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-text {
  font-size: .95rem;
  color: var(--text);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
}
.testimonial-text::before { content: '"'; color: var(--gold); font-size: 2rem; line-height: 0; vertical-align: -0.5em; margin-right: 4px; }
.testimonial-author { display: flex; gap: 14px; align-items: center; }
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy-dark);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  font-weight: 700;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: .9rem; color: var(--navy-dark); }
.testimonial-author span { font-size: .8rem; color: var(--text-light); }

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
}
.slider-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--white);
  color: var(--navy);
  font-size: 1.4rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.slider-btn:hover { background: var(--navy-dark); color: var(--white); border-color: var(--navy-dark); }
.slider-dots { display: flex; gap: 8px; }
.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  padding: 0;
}
.slider-dot.active { background: var(--navy-dark); width: 24px; border-radius: 4px; }

/* ═══════════════════════════════════════════════════
   CTA BANNER
═══════════════════════════════════════════════════ */
.cta-banner {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-light) 100%);
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-content { text-align: center; }
.cta-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 16px;
  font-weight: 700;
}
.cta-content p { font-size: 1.1rem; color: rgba(255,255,255,.75); margin-bottom: 36px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════════ */
.contact { padding: 100px 0; background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.contact-info .section-title { text-align: left; font-size: 2rem; margin-bottom: 16px; }
.contact-info > p { color: var(--text-light); margin-bottom: 36px; line-height: 1.7; }
.contact-details { display: flex; flex-direction: column; gap: 16px; margin-bottom: 36px; }
.contact-detail {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 16px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.contact-detail:hover { border-color: var(--gold); background: rgba(232,160,32,.04); }
.contact-detail-icon {
  font-size: 1.4rem;
  width: 44px; height: 44px;
  background: rgba(232,160,32,.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail strong { display: block; font-size: .8rem; color: var(--text-light); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 2px; }
.contact-detail a, .contact-detail span { font-size: .9rem; color: var(--navy); font-weight: 500; }
.contact-detail a:hover { color: var(--gold-dark); }
.contact-social { display: flex; align-items: center; gap: 12px; }
.contact-social > span { font-size: .9rem; color: var(--text-light); }
.social-btn {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: var(--navy-dark);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  font-weight: 700;
  transition: var(--transition);
}
.social-btn:hover { background: var(--gold); color: var(--navy-dark); transform: translateY(-2px); }

.contact-form-wrap {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border);
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: .875rem; font-weight: 600; color: var(--navy-dark); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: .9rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(26,58,92,.08);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23718096' d='M1 1l5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }

.radio-group { display: flex; gap: 16px; flex-wrap: wrap; }
.radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: .875rem;
  color: var(--text);
  padding: 10px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  transition: var(--transition);
}
.radio-label:hover { border-color: var(--navy); }
.radio-label input { accent-color: var(--navy); }
.radio-label input:checked + span { color: var(--navy); font-weight: 600; }
.radio-label:has(input:checked) { border-color: var(--navy); background: rgba(26,58,92,.04); }

.checkbox-group { flex-direction: row !important; align-items: flex-start !important; }
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: .875rem;
  color: var(--text-light);
}
.checkbox-label input { accent-color: var(--navy); margin-top: 2px; flex-shrink: 0; }

.form-success {
  text-align: center;
  padding: 48px 24px;
}
.success-icon { font-size: 3rem; margin-bottom: 16px; }
.form-success h3 { font-size: 1.4rem; color: var(--navy-dark); margin-bottom: 12px; }
.form-success p { color: var(--text-light); }

/* ═══════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════ */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.7);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-logo { margin-bottom: 16px; }
.footer-logo .logo-text { color: var(--white); }
.footer-brand p { font-size: .875rem; line-height: 1.7; margin-bottom: 20px; }
.footer-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.badge {
  display: inline-block;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.7);
  font-size: .75rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,.12);
}
.footer-links h4, .footer-contact h4 {
  color: var(--white);
  font-size: .9rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links li a {
  font-size: .875rem;
  color: rgba(255,255,255,.6);
  transition: var(--transition);
}
.footer-links li a:hover { color: var(--gold-light); padding-left: 4px; }
.footer-contact p { font-size: .875rem; margin-bottom: 10px; }
.footer-contact a { color: rgba(255,255,255,.7); transition: var(--transition); }
.footer-contact a:hover { color: var(--gold-light); }
.footer-cta { margin-top: 20px; }
.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: rgba(255,255,255,.4); transition: var(--transition); }
.footer-bottom-links a:hover { color: rgba(255,255,255,.7); }

/* ═══════════════════════════════════════════════════
   BACK TO TOP
═══════════════════════════════════════════════════ */
.back-to-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--navy-dark);
  color: var(--white);
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 100;
  opacity: 0;
  transform: translateY(16px);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--gold); color: var(--navy-dark); transform: translateY(-3px); }

/* ═══════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(2) { grid-row: span 1; }
  .gallery-item:nth-child(4) { grid-row: span 1; }
  .gallery-card.large, .gallery-card.tall { height: 260px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-us-grid { gap: 48px; }
  .contact-grid { gap: 48px; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 80px 24px 40px;
    align-items: flex-start;
    gap: 4px;
    box-shadow: var(--shadow-lg);
    transition: right .35s cubic-bezier(.4,0,.2,1);
    z-index: 999;
  }
  .nav-links.open { right: 0; }
  .nav-link { color: var(--text) !important; width: 100%; padding: 12px 16px; }
  .nav-cta { background: var(--navy) !important; color: var(--white) !important; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .why-us-grid { grid-template-columns: 1fr; }
  .why-us-visual { min-height: 280px; }
  .visual-photo-wrap { right: 20px; }
  .process-timeline { flex-direction: column; gap: 20px; align-items: stretch; }
  .process-connector { display: none; }
  .gallery-grid { grid-template-columns: 1fr; }
  .testimonials-track { gap: 16px; }
  .testimonial-card { min-width: calc(100% - 8px); }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: fit-content; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-trust { flex-direction: column; gap: 12px; }
  .cta-actions { flex-direction: column; align-items: center; }
}
