/*
Theme Name: Miami Marine Canvas
Theme URI: https://miamimarinecanvas.com
Author: Miami Marine Canvas
Author URI: https://miamimarinecanvas.com
Description: Premium marine canvas and upholstery company website theme. Custom-built static theme with bilingual support (English/Spanish).
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: All Rights Reserved
Text Domain: miami-marine-canvas
Tags: custom-theme, marine, canvas, upholstery, bilingual
*/

/* ===============================================================
   MIAMI MARINE CANVAS — SHARED STYLES
   =============================================================== */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --navy: #0a1628;
  --navy-light: #121f33;
  --ocean: #1a6fa0;
  --ocean-light: #2185c0;
  --teal: #0d4f6e;
  --gold: #c9a84c;
  --gold-light: #ddc06a;
  --pink: #ec048b;
  --white: #ffffff;
  --off-white: #f4f1ec;
  --sand: #e8e2d8;
  --gray: #8a9ab5;
  --text: #1a1a2e;
  --text-light: #5a6a7a;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding-top: 124px;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

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

/* ── Animations ─────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease-out);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease-out);
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease-out);
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* stagger children */
.stagger > *:nth-child(1) { transition-delay: 0s; }
.stagger > *:nth-child(2) { transition-delay: 0.1s; }
.stagger > *:nth-child(3) { transition-delay: 0.2s; }
.stagger > *:nth-child(4) { transition-delay: 0.3s; }
.stagger > *:nth-child(5) { transition-delay: 0.4s; }
.stagger > *:nth-child(6) { transition-delay: 0.5s; }
.stagger > *:nth-child(7) { transition-delay: 0.6s; }
.stagger > *:nth-child(8) { transition-delay: 0.7s; }

/* ── Section Heading ────────────────────────────────────────── */
.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 600px;
  line-height: 1.7;
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.35);
}
.btn-outline {
  border: 2px solid rgba(255,255,255,0.5);
  color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-dark {
  background: var(--navy);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(10,22,40,0.3);
}

/* ===============================================================
   TOP BAR
   =============================================================== */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  background: var(--navy);
  color: var(--white);
  padding: 8px 0 16px;
  font-size: 0.78rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.4s var(--ease);
}
.top-bar .container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar a {
  color: var(--gray);
  transition: color 0.3s;
}
.top-bar a:hover { color: var(--gold); }
.top-bar-left {
  display: flex;
  gap: 24px;
  align-items: center;
}
.top-bar-right {
  display: flex;
  gap: 20px;
  align-items: center;
}
.top-bar-right a {
  font-size: 1rem;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===============================================================
   HEADER / NAV
   =============================================================== */
.header {
  position: fixed;
  top: 44px;
  left: 0;
  right: 0;
  z-index: 1002;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  transition: all 0.4s var(--ease);
  padding: 0;
  overflow: visible;
}
.header.scrolled {
  top: 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.12);
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.logo {
  position: relative;
  z-index: 2;
  background: var(--white);
  padding: 10px 16px;
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transition: all 0.3s var(--ease);
}
.logo img {
  height: 90px;
  width: auto;
  transition: height 0.3s;
}
.header.scrolled .logo {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}
.header.scrolled .logo img {
  height: 50px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links li {
  list-style: none;
}
.nav-links a {
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 4px;
  transition: all 0.3s;
  position: relative;
  display: block;
  white-space: nowrap;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}
.nav-links a:hover { color: var(--ocean); }

/* Dropdown */
.nav-dropdown {
  position: relative;
}
.nav-dropdown > a::after {
  content: '';
  display: inline-block;
  position: static;
  width: 0;
  height: 0;
  background: none;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  margin-left: 10px;
  vertical-align: middle;
  transition: transform 0.3s;
  left: auto;
  right: auto;
  bottom: auto;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 8px;
  padding: 8px 0;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s var(--ease);
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  z-index: 100;
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 0.8rem;
  text-transform: none;
  letter-spacing: 0;
}
.dropdown-menu a::after { display: none; }
.dropdown-menu a:hover {
  background: var(--off-white);
  color: var(--ocean);
}

.nav-cta {
  background: #25D366 !important;
  color: #fff !important;
  border-radius: 4px !important;
  font-weight: 600 !important;
  display: flex !important;
  align-items: center;
  gap: 6px;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: #1ebe5b !important;
  color: #fff !important;
}

/* Nav menu container */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Phone in nav */
.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.9rem;
  margin-left: 8px;
  white-space: nowrap;
}
.nav-phone svg { color: var(--ocean); }

/* Mobile header action buttons (call + WhatsApp) */
.mobile-header-actions {
  display: none;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  margin-right: 12px;
}
.mobile-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.mobile-action-btn:active {
  transform: scale(0.92);
}
.mobile-call-btn {
  background: var(--navy);
  color: var(--white);
}
.mobile-wa-btn {
  background: #25D366;
  color: var(--white);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}
.hamburger span {
  width: 26px;
  height: 2px;
  background: var(--navy);
  transition: all 0.3s;
  border-radius: 2px;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translateY(7px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translateY(-7px); }

/* Mobile nav */
@media (max-width: 1024px) {
  .top-bar { display: none; }
  body { padding-top: 80px; }
  .mobile-header-actions { display: flex; }
  .hamburger { display: flex; }
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: var(--navy);
    padding: 100px 32px 40px;
    transition: right 0.4s var(--ease-out);
    overflow-y: auto;
    z-index: 999;
    flex-direction: column;
    align-items: flex-start;
  }
  .header { top: 0; }
  .nav-menu.open { right: 0; }
  .nav-links { flex-direction: column; gap: 0; width: 100%; }
  .nav-links a { padding: 16px 0; font-size: 1.1rem; border-bottom: 1px solid rgba(255,255,255,0.08); color: var(--white); }
  .nav-links a::after { display: none; }
  .nav-dropdown > a::after { display: inline-block; }
  .nav-cta {
    margin-top: 8px;
    padding: 14px 24px !important;
    border-radius: 10px !important;
    font-size: 1rem !important;
    width: 100%;
    justify-content: center;
    gap: 10px;
  }
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0 0 0 16px;
    display: none;
    background: transparent;
  }
  .dropdown-menu a { color: var(--gray); font-size: 0.95rem; }
  .dropdown-menu.show { display: block; }
  .nav-phone {
    margin: 24px 0 0;
    color: var(--white);
    font-size: 1.1rem;
    width: 100%;
    justify-content: center;
  }
  .nav-cta-wrap { margin-top: 20px; }
  .mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 998;
  }
  .mobile-overlay.open {
    opacity: 1;
    visibility: visible;
  }
}

/* ===============================================================
   HERO (homepage full-screen parallax)
   =============================================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  max-height: 1000px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.15);
  animation: heroPan 25s ease-in-out infinite alternate;
}
@keyframes heroPan {
  0%   { transform: scale(1.15) translate(0, 0); }
  100% { transform: scale(1.25) translate(-2%, -1.5%); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.85) 0%, rgba(10,22,40,0.5) 50%, rgba(10,22,40,0.7) 100%);
  z-index: 1;
}
.hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  z-index: 2;
}
.hero-split {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 60px;
}
.hero-content {
  flex: 1;
  color: var(--white);
  max-width: 600px;
}

/* ---- Hero Fan Cards ---- */
.hero-cards {
  flex: 0 0 500px;
  height: 576px;
  position: relative;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 1.1s forwards;
}
.hero-fan {
  position: relative;
  width: 100%;
  height: 100%;
  perspective: 1200px;
}
.hero-fan-card {
  position: absolute;
  width: 360px;
  height: 480px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.4);
  border: 3px solid rgba(255,255,255,0.15);
  top: 50%;
  left: 50%;
  transform-origin: center center;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}
.hero-fan-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Fan positions: back-left, back-right, front-center */
.hero-fan-card[data-pos="0"] {
  transform: translate(-70%, -50%) rotate(-12deg) scale(0.85);
  z-index: 1;
  filter: brightness(0.7);
}
.hero-fan-card[data-pos="1"] {
  transform: translate(-10%, -50%) rotate(8deg) scale(0.85);
  z-index: 2;
  filter: brightness(0.7);
}
.hero-fan-card[data-pos="2"] {
  transform: translate(-40%, -52%) rotate(-2deg) scale(1);
  z-index: 3;
  filter: brightness(1);
  border-color: rgba(201,168,76,0.4);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(201,168,76,0.2);
}
@media (max-width: 1024px) {
  .hero {
    height: auto;
    min-height: unset;
    max-height: unset;
    padding: 120px 0 60px;
  }
  .hero-split {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
  .hero-content {
    max-width: 100%;
  }
  .hero-label {
    justify-content: center;
  }
  .hero-label::before {
    display: none;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-review-pill {
    font-size: 0.75rem;
    padding: 6px 16px 6px 10px;
  }
  .hero-cards {
    flex: 0 0 auto;
    width: 100%;
    max-width: 400px;
    height: 340px;
    margin: 0 auto;
  }
  .hero-fan-card {
    width: 220px;
    height: 300px;
  }
}
@media (max-width: 600px) {
  .hero {
    padding: 100px 0 40px;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .hero-sub {
    font-size: 0.95rem;
  }
  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
  }
  .hero-cards {
    height: 280px;
    max-width: 320px;
  }
  .hero-fan-card {
    width: 180px;
    height: 250px;
    border-radius: 12px;
  }
}
.hero-label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.3s forwards;
}
.hero-label::before {
  content: '';
  width: 50px;
  height: 1px;
  background: var(--gold);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.5s forwards;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  max-width: 520px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.7s forwards;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.9s forwards;
}

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

/* ---- Hero Review Pill ---- */
.hero-review-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  padding: 8px 20px 8px 14px;
  margin-bottom: 20px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.15s forwards;
}
.hero-review-pill:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(201,168,76,0.5);
  transform: translateY(-1px);
}
.hero-review-pill svg {
  flex-shrink: 0;
}
.pill-stars {
  color: #FBBC05;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

/* ===============================================================
   REVIEWS TICKER (auto-scrolling banner)
   =============================================================== */
.reviews-ticker {
  background: var(--navy);
  padding: 28px 0;
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.reviews-ticker::before,
.reviews-ticker::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.reviews-ticker::before {
  left: 0;
  background: linear-gradient(to right, var(--navy), transparent);
}
.reviews-ticker::after {
  right: 0;
  background: linear-gradient(to left, var(--navy), transparent);
}
.ticker-track {
  display: flex;
  gap: 40px;
  animation: tickerScroll 40s linear infinite;
  width: max-content;
}
.ticker-track:hover {
  animation-play-state: paused;
}
.ticker-item {
  flex-shrink: 0;
  width: 360px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 22px 26px;
  color: var(--white);
}
.ticker-stars {
  color: #FBBC05;
  font-size: 0.95rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.ticker-item p {
  font-family: var(--font-body);
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
  margin: 0 0 10px;
  font-style: italic;
}
.ticker-author {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.03em;
}
@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (max-width: 600px) {
  .ticker-item {
    width: 280px;
    padding: 18px 20px;
  }
  .reviews-ticker {
    padding: 20px 0;
  }
}

/* ===============================================================
   PAGE HERO (sub-pages: navy banner)
   =============================================================== */
.page-hero {
  padding: 160px 0 80px;
  background: var(--navy);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--white);
  font-weight: 700;
  margin-bottom: 12px;
}
.page-hero p {
  color: var(--gray);
  font-size: 1.05rem;
}

@media (max-width: 1024px) {
  .page-hero {
    padding: 120px 0 60px;
  }
}
@media (max-width: 600px) {
  .page-hero {
    padding: 100px 0 40px;
  }
  .page-hero h1 {
    font-size: 1.8rem;
  }
}

/* ===============================================================
   SERVICES STRIP (homepage)
   =============================================================== */
.services-strip {
  padding: 100px 0;
  background: var(--white);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 24px;
  margin-top: 48px;
}
.service-card {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(10,22,40,0.06);
  border-radius: 12px;
  transition: all 0.4s var(--ease);
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(10,22,40,0.1);
  border-color: transparent;
}
.service-card-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.service-card:hover .service-card-img img {
  transform: scale(1.08);
}
.service-card-body {
  padding: 24px 28px 28px;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--navy);
}
.service-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ===============================================================
   FULL-WIDTH GALLERY STRIP (auto-scrolling)
   =============================================================== */
.gallery-strip {
  overflow: hidden;
  padding: 0 0 15px;
  background: var(--off-white);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.gallery-strip-track {
  display: flex;
  gap: 6px;
  width: max-content;
}
.gallery-strip-row1 {
  animation: galleryScrollLeft 80s linear infinite;
}
.gallery-strip-row2 {
  animation: galleryScrollRight 80s linear infinite;
}
.gallery-strip-track:hover {
  animation-play-state: paused;
}
.gallery-strip-track img {
  height: 32vh;
  width: auto;
  max-width: none;
  object-fit: cover;
  border-radius: 4px;
  display: block;
  transition: transform 0.4s ease, filter 0.4s ease;
  filter: brightness(0.9);
}
.gallery-strip-track img:hover {
  transform: scale(1.04);
  filter: brightness(1);
  z-index: 1;
}
@keyframes galleryScrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes galleryScrollRight {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}
@media (max-width: 768px) {
  .gallery-strip-track img {
    height: 22vh;
  }
}

/* ===============================================================
   WHY CHOOSE US / STATS
   =============================================================== */
.stats-section {
  padding: 80px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(26,111,160,0.15), transparent 70%);
  border-radius: 50%;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
  z-index: 1;
}
.stat-item {
  text-align: center;
  color: var(--white);
}
.stat-number {
  font-family: var(--font-body);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray);
}

@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}

/* ===============================================================
   GALLERY PREVIEW (homepage)
   =============================================================== */
.gallery-preview {
  padding: 100px 0;
  background: var(--off-white);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.gallery-item:nth-child(1) { grid-row: span 2; aspect-ratio: auto; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.85) 0%, rgba(10,22,40,0.5) 60%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 18px 20px;
  transition: background 0.3s;
}
.gallery-item:hover .gallery-item-overlay {
  background: linear-gradient(to top, rgba(10,22,40,0.95) 0%, rgba(10,22,40,0.6) 70%, transparent 100%);
}
.gallery-item-overlay span {
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(1) { grid-row: span 1; aspect-ratio: 4/3; }
  .services-grid { grid-template-columns: 1fr; }
}

/* ===============================================================
   REVIEWS
   =============================================================== */
.reviews-section {
  padding: 100px 0;
  background: var(--off-white);
}
.reviews-header {
  text-align: center;
  margin-bottom: 48px;
}
.reviews-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}
.reviews-stars {
  color: #f4b400;
  font-size: 1.4rem;
  letter-spacing: 2px;
}
.reviews-count {
  font-size: 0.9rem;
  color: var(--text-light);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: 24px;
}
.review-card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(10,22,40,0.05);
  transition: all 0.3s var(--ease);
  position: relative;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(10,22,40,0.1);
}
.review-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 4rem;
  font-family: var(--font-display);
  color: var(--gold);
  opacity: 0.25;
  line-height: 1;
}
.review-stars {
  color: #f4b400;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.review-text {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ocean), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.review-author-info strong {
  display: block;
  font-size: 0.9rem;
  color: var(--navy);
}
.review-author-info span {
  font-size: 0.78rem;
  color: var(--text-light);
}
.reviews-cta {
  text-align: center;
  margin-top: 40px;
}
.reviews-google-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ocean);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.3s;
}
.reviews-google-link:hover {
  color: var(--navy);
}

/* ===============================================================
   CTA BANNER
   =============================================================== */
.cta-banner {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(201,168,76,0.08), transparent 60%);
  border-radius: 50%;
}
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
}
.cta-banner p {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  margin-bottom: 36px;
  position: relative;
}
.cta-banner .btn { position: relative; }

/* ===============================================================
   SERVICES PAGE
   =============================================================== */
.services-page { padding: 80px 0; }
.services-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: 32px;
  margin-top: 48px;
}
.service-detail-card {
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(10,22,40,0.06);
  transition: all 0.4s var(--ease);
}
.service-detail-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(10,22,40,0.1);
}
.service-detail-img {
  height: 240px;
  overflow: hidden;
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.service-detail-card:hover .service-detail-img img { transform: scale(1.06); }
.service-detail-body {
  padding: 28px;
}
.service-detail-body h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.service-detail-body p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 16px;
}
.service-link {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ocean);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s;
}
.service-link:hover { gap: 12px; color: var(--gold); }

/* ===============================================================
   GALLERY PAGE
   =============================================================== */
.gallery-page { padding: 80px 0; }
.gallery-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  justify-content: center;
}
.filter-btn {
  padding: 10px 20px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 100px;
  border: 1px solid rgba(10,22,40,0.12);
  color: var(--text-light);
  transition: all 0.3s;
  cursor: pointer;
  background: none;
  font-family: var(--font-body);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.gallery-masonry {
  columns: 3;
  column-gap: 16px;
}
.gallery-masonry-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-masonry-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s var(--ease);
}
.gallery-masonry-item:hover img { transform: scale(1.04); }
.gallery-masonry-item .gal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,22,40,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-masonry-item:hover .gal-overlay { opacity: 1; }
.gal-overlay svg {
  width: 40px;
  height: 40px;
  color: var(--white);
}
.load-more-wrap {
  text-align: center;
  margin-top: 40px;
}

/* Videos tab */
.gallery-videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-video-item {
  background: var(--dark, #0a1628);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}
.gallery-video-item video {
  width: 100%;
  display: block;
  aspect-ratio: 9/16;
  object-fit: cover;
  background: #000;
}
.gallery-video-info {
  padding: 16px 20px;
}
.gallery-video-info h3 {
  font-size: 1.1rem;
  color: var(--white, #fff);
  margin: 0 0 6px;
}
.gallery-video-info p {
  font-size: 0.9rem;
  color: var(--gray, #8a9bb5);
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .gallery-masonry { columns: 2; }
  .gallery-videos-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .gallery-videos-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .gallery-masonry { columns: 1; }
}

/* ===============================================================
   LIGHTBOX
   =============================================================== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10,22,40,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  backdrop-filter: blur(10px);
}
.lightbox.open {
  opacity: 1;
  visibility: visible;
}
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  transform: scale(0.9);
  transition: transform 0.3s var(--ease-out);
}
.lightbox.open img { transform: scale(1); }
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  color: var(--white);
  font-size: 32px;
  padding: 8px;
  cursor: pointer;
  background: none;
  border: none;
  transition: transform 0.3s;
  z-index: 10;
}
.lightbox-close:hover { transform: rotate(90deg); }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--white);
  font-size: 40px;
  padding: 16px;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s;
}
.lightbox-nav:hover { color: var(--gold); }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

/* ===============================================================
   ABOUT
   =============================================================== */
.about-section { padding: 80px 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 48px;
}
.about-image {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}
.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.about-image-accent {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 200px;
  height: 200px;
  border: 3px solid var(--gold);
  border-radius: 16px;
  z-index: -1;
}
.about-text h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.3;
}
.about-text p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.value-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.value-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--ocean);
}
.value-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}
.value-item p {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image img { height: 350px; }
  .values-grid { grid-template-columns: 1fr; }
}

/* ===============================================================
   CONTACT
   =============================================================== */
.contact-section {
  padding: 80px 0;
  background: var(--off-white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  margin-top: 48px;
}
.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(10,22,40,0.04);
}
.contact-cta-panel {
  background: var(--white);
  padding: 44px;
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(10,22,40,0.04);
}
.contact-big-btn {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 28px;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-bottom: 16px;
  border: 2px solid transparent;
}
.contact-big-btn:last-child {
  margin-bottom: 0;
}
.contact-big-btn svg {
  flex-shrink: 0;
}
.contact-big-btn-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}
.contact-big-btn-number {
  display: block;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
}
.contact-call-btn {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.contact-call-btn:hover {
  background: #0d1f3c;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(10,22,40,0.3);
}
.contact-wa-btn {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
}
.contact-wa-btn:hover {
  background: #1fb855;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.3);
}
.contact-download-btn {
  background: var(--white);
  color: var(--navy);
  border-color: rgba(10,22,40,0.12);
}
.contact-download-btn:hover {
  border-color: var(--ocean);
  background: rgba(26,111,160,0.04);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(26,111,160,0.12);
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--navy);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(10,22,40,0.12);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  transition: border-color 0.3s, box-shadow 0.3s;
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--ocean);
  box-shadow: 0 0 0 4px rgba(26,111,160,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-info-card {
  padding: 32px;
  background: var(--navy);
  border-radius: 16px;
  color: var(--white);
}
.contact-info-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 24px;
}
.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.contact-info-item h4 {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray);
  margin-bottom: 4px;
  font-weight: 600;
}
.contact-info-item p, .contact-info-item a {
  font-size: 0.95rem;
  color: var(--white);
  line-height: 1.5;
}
.contact-info-item a:hover { color: var(--gold); }

.contact-map {
  margin-top: 24px;
  border-radius: 12px;
  overflow: hidden;
  height: 200px;
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-socials {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}
.contact-socials a {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.3s;
  font-size: 1rem;
}
.contact-socials a:hover {
  background: var(--gold);
  color: var(--navy);
}

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-cta-panel { padding: 28px 20px; }
  .contact-big-btn { padding: 18px 20px; gap: 14px; }
  .contact-big-btn-number { font-size: 1.1rem; }
}

/* ===============================================================
   FOOTER
   =============================================================== */
.footer {
  background: var(--navy);
  color: var(--white);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-about img {
  height: 45px;
  margin-bottom: 16px;
}
.footer-about p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gold);
}
.footer-links {
  list-style: none;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: var(--gray);
  font-size: 0.88rem;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: var(--gray);
}
.footer-bottom a { color: var(--gold); }
.footer-bottom a:hover { text-decoration: underline; }

.footer-socials {
  display: flex;
  gap: 10px;
}
.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  transition: all 0.3s;
  font-size: 0.9rem;
}
.footer-socials a:hover {
  background: var(--gold);
  color: var(--navy);
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ── Scroll to top ──────────────────────────────────────────── */
.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 4px 20px rgba(201,168,76,0.4);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 100;
  border: none;
  cursor: pointer;
}
.scroll-top.show {
  opacity: 1;
  visibility: visible;
}
.scroll-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 30px rgba(201,168,76,0.5);
}

/* ── Privacy Policy Content ───────────────────────────────── */
.policy-content {
  max-width: 800px;
  margin: 0 auto;
}
.policy-effective {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 32px;
  font-style: italic;
}
.policy-content h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin: 40px 0 16px;
}
.policy-content h3 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin: 24px 0 12px;
}
.policy-content p {
  color: #444;
  line-height: 1.8;
  margin-bottom: 16px;
}
.policy-content ul {
  margin: 0 0 20px 24px;
  color: #444;
  line-height: 1.8;
}
.policy-content ul li {
  margin-bottom: 6px;
}
.policy-content a {
  color: var(--ocean);
  text-decoration: underline;
}
.policy-content a:hover {
  color: var(--gold);
}
.policy-content address {
  font-style: normal;
  line-height: 1.8;
  color: #444;
  margin-top: 12px;
}
.policy-content address a {
  text-decoration: none;
}

/* ===============================================================
   SERVICE PAGES (individual SEO landing pages)
   =============================================================== */

/* Services dropdown — wider for 13 items */
.services-dropdown .dropdown-menu {
  min-width: 240px;
  max-height: 70vh;
  overflow-y: auto;
}

/* Service Intro */
.service-intro {
  padding: 80px 0 60px;
}
.service-intro-content {
  max-width: 800px;
  margin: 0 auto;
}
.service-intro-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.3;
}
.service-intro-content p {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

/* Service Intro Featured Image */
.service-intro-image {
  margin-top: 40px;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
}
.service-intro-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}
.service-intro-image:hover img {
  transform: scale(1.03);
}
.service-intro-image-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ocean);
  transition: gap 0.3s, color 0.3s;
}
.service-intro-image-link:hover {
  gap: 14px;
  color: var(--gold);
}

@media (max-width: 768px) {
  .service-intro-image img { height: 280px; }
}

/* Benefits Grid */
.benefits-section {
  padding: 60px 0;
  background: var(--off-white);
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.benefit-card {
  background: var(--white);
  border-radius: 14px;
  padding: 32px 24px;
  text-align: center;
  border: 1px solid rgba(10,22,40,0.06);
  transition: all 0.4s var(--ease);
}
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(10,22,40,0.08);
}
.benefit-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--ocean), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--white);
}
.benefit-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.benefit-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .benefits-grid { grid-template-columns: 1fr; }
}

/* Our Process */
.process-section {
  padding: 80px 0;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 48px;
  counter-reset: step;
}
.process-step {
  text-align: center;
  position: relative;
}
.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.process-step h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.process-step p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
}
.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 24px;
  left: calc(50% + 32px);
  width: calc(100% - 64px);
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--sand));
}

@media (max-width: 768px) {
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .process-step:not(:last-child)::after { display: none; }
}
@media (max-width: 480px) {
  .process-steps { grid-template-columns: 1fr; }
}

/* Service Gallery Grid */
.service-gallery {
  padding: 60px 0;
  background: var(--off-white);
}
.service-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.service-gallery-item {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  aspect-ratio: 4/3;
}
.service-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.service-gallery-item:hover img {
  transform: scale(1.06);
}
.service-gallery-item .gal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,22,40,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.service-gallery-item:hover .gal-overlay { opacity: 1; }
.service-gallery-more {
  text-align: center;
  margin-top: 32px;
}

@media (max-width: 768px) {
  .service-gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .service-gallery-grid { grid-template-columns: 1fr; }
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
}
.faq-list {
  max-width: 800px;
  margin: 40px auto 0;
}
.faq-item {
  border: 1px solid rgba(10,22,40,0.08);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.faq-item:hover {
  box-shadow: 0 4px 20px rgba(10,22,40,0.06);
}
.faq-item summary {
  padding: 20px 24px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-item[open] summary::after {
  content: '\2212';
  transform: rotate(180deg);
}
.faq-item[open] summary {
  border-bottom: 1px solid rgba(10,22,40,0.06);
}
.faq-answer {
  padding: 20px 24px;
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* CTA Buttons Section */
.service-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.service-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(201,168,76,0.08), transparent 60%);
  border-radius: 50%;
}
.service-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  position: relative;
}
.service-cta p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  margin-bottom: 36px;
  position: relative;
}
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}
.cta-buttons .btn {
  min-width: 200px;
  justify-content: center;
}
.btn-whatsapp {
  background: #25D366;
  color: var(--white);
}
.btn-whatsapp:hover {
  background: #1fb855;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.35);
}

/* =============== TRANSLATE BUTTON =============== */
.translate-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1.5px solid var(--navy);
  color: var(--navy);
  padding: 6px 14px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
  margin-left: 12px;
}
.translate-btn:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.translate-btn svg { flex-shrink: 0; }
.translate-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

/* Hide Google Translate bar */
.goog-te-banner-frame, .skiptranslate { display: none !important; }
body { top: 0 !important; }

#google_translate_element { display: none; }

@media (max-width: 1024px) {
  .translate-btn {
    position: absolute;
    top: 12px;
    right: 120px;
    padding: 5px 10px;
    font-size: 0.72rem;
    margin-left: 0;
    border-color: var(--white);
    color: var(--white);
  }
  .translate-btn:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--gold);
    color: var(--gold);
  }
}
