/* Google Fonts are injected via shared.js initPage() to avoid render-blocking @import */

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

:root {
  --yellow: #0ABAB5;
  --yellow-dark: #008B8B;
  --black: #0A0A0A;
  --dark: #0F1117;
  --dark2: #171A22;
  --dark3: #1E222B;
  --dark4: #272C36;
  --white: #FFFFFF;
  --gray: #6E7380;
  --gray-light: #C2C6D0;
  --nav-h: 76px;
}

html { scroll-behavior: smooth; overflow-x: hidden; }
body { background: var(--black); color: var(--white); font-family: 'Barlow', sans-serif; font-size: 16px; line-height: 1.7; overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { text-decoration: none; }

/* ── TYPOGRAPHY ── */
.eyebrow { font-family: 'Barlow Condensed', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: var(--yellow); }
.section-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(44px, 5.5vw, 76px); line-height: 0.96; letter-spacing: 1px; color: var(--white); }
.section-title em { font-style: normal; color: var(--yellow); }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; max-width: 100%; font-family: 'Barlow Condensed', sans-serif; font-size: 14px; font-weight: 700; letter-spacing: 3px; text-align: center; text-transform: uppercase; padding: 16px 40px; cursor: pointer; border: none; border-radius: 8px; transition: transform 0.2s, background 0.25s, color 0.25s, box-shadow 0.25s; position: relative; overflow: hidden; white-space: normal; }
.btn:active { transform: scale(0.97); }
.btn-yellow { background: var(--yellow); color: var(--black); }
.btn-yellow:hover { background: var(--yellow-dark); box-shadow: 0 8px 32px rgba(10,186,181,0.4); transform: translateY(-2px); }
.btn-black { background: var(--black); color: var(--white); border: 1.5px solid rgba(255,255,255,0.2); }
.btn-black:hover { border-color: var(--yellow); color: var(--yellow); }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.3); }
.btn-outline:hover { border-color: var(--yellow); color: var(--yellow); }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 4%;
  background: rgba(10,10,10,0.92);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.09);
  transition: background 0.3s;
}

/* REAL LOGO in nav */
.nav-logo-wrap { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo-img {
  height: 50px; width: auto;
  object-fit: contain;
  filter: brightness(1);
  transition: opacity 0.2s;
}
.nav-logo-wrap:hover .nav-logo-img { opacity: 0.85; }

.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { font-family: 'Barlow Condensed', sans-serif; font-size: 16px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gray-light); transition: color 0.2s; position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 2px; background: var(--yellow); transform: scaleX(0); transform-origin: left; transition: transform 0.25s ease; }
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--yellow); }

.nav-book { background: var(--yellow); color: var(--black); font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 12px 26px; transition: background 0.2s, box-shadow 0.2s; white-space: nowrap; }
.nav-book:hover { background: var(--yellow-dark); box-shadow: 0 4px 20px rgba(10,186,181,0.35); }

/* hamburger */
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; background: none; border: none; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile menu */
.nav-mobile { display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; background: var(--dark); z-index: 190; padding: 24px 5% 36px; border-bottom: 3px solid var(--yellow); transform: translateY(-20px); opacity: 0; transition: transform 0.3s ease, opacity 0.3s ease; pointer-events: none; max-height: calc(100vh - var(--nav-h)); overflow-y: auto; }
.nav-mobile.open { transform: translateY(0); opacity: 1; pointer-events: all; }
.nav-mobile ul { list-style: none; }
.nav-mobile ul li a { display: block; padding: 14px 0; font-family: 'Barlow Condensed', sans-serif; font-size: 24px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--white); border-bottom: 1px solid rgba(255,255,255,0.06); transition: color 0.2s, transform 0.2s; }
.nav-mobile ul li a:hover { color: var(--yellow); transform: translateX(8px); }
.mob-book { display: inline-flex; margin-top: 24px; background: var(--yellow); color: var(--black); font-family: 'Barlow Condensed', sans-serif; font-size: 15px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; padding: 14px 32px; }

/* ── MARQUEE ── */
.marquee-strip { background: var(--yellow); padding: 13px 0; overflow: hidden; white-space: nowrap; }
.marquee-track { display: inline-flex; animation: marquee 25s linear infinite; }
.marquee-track span { font-family: 'Bebas Neue', sans-serif; font-size: 17px; letter-spacing: 4px; color: var(--black); padding: 0 36px; }
.marquee-track .dot { color: rgba(0,0,0,0.3); padding: 0; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── SECTION ── */
.section { padding: 100px 5%; }
.section > * { max-width: 1440px; margin-left: auto; margin-right: auto; }

/* ── HERO BASE ── */
.inner-hero { position: relative; min-height: 64vh; display: flex; align-items: flex-end; padding: 140px 5% 76px; overflow: hidden; }
.inner-hero-bg { position: absolute; inset: 0; background-repeat: no-repeat; background-size: cover; background-position: center center; transform-origin: center center; z-index: 0; animation: heroZoom 14s ease-in-out infinite alternate; }
@keyframes heroZoom { from { transform: scale(1); } to { transform: scale(1.04); } }
.inner-hero-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(to top, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.3) 55%, rgba(10,10,10,0.12) 100%); }
.inner-hero-content { position: relative; z-index: 2; }
.inner-hero-content .eyebrow { display: block; margin-bottom: 12px; }
.inner-hero-content h1 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(52px, 7.5vw, 104px); line-height: 0.9; letter-spacing: 2px; color: var(--white); }
.inner-hero-content h1 em { font-style: normal; color: var(--yellow); }

/* ── SERVICE CARD ── */
.service-card { position: relative; overflow: hidden; background: var(--dark2); cursor: pointer; border-radius: 12px; }
.service-card-img { width: 100%; aspect-ratio: 4 / 5; height: auto; object-fit: cover; transition: transform 0.7s ease, filter 0.4s ease; filter: brightness(0.62) saturate(0.8); }
.service-card:hover .service-card-img { transform: scale(1.08); filter: brightness(0.28) saturate(0.5); }
.service-card-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 28px 28px 32px; background: linear-gradient(to top, rgba(10,10,10,0.98) 0%, transparent 100%); }
.service-card-num { font-family: 'Barlow Condensed', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 4px; color: var(--yellow); margin-bottom: 6px; }
.service-card h3 { font-family: 'Bebas Neue', sans-serif; font-size: 30px; letter-spacing: 1px; line-height: 1; color: var(--white); margin-bottom: 8px; }
.service-card p { font-size: 14px; color: var(--gray-light); line-height: 1.6; max-height: 0; overflow: hidden; opacity: 0; transition: max-height 0.4s ease, opacity 0.35s ease; }
.service-card:hover p { max-height: 100px; opacity: 1; }
.service-card-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; font-family: 'Barlow Condensed', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--yellow); opacity: 0; transform: translateX(-10px); transition: opacity 0.3s 0.1s, transform 0.3s 0.1s; }
.service-card:hover .service-card-link { opacity: 1; transform: translateX(0); }

/* ── REVEAL ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.75s ease, transform 0.75s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateY(40px); transition: opacity 0.75s ease, transform 0.75s ease; }
.reveal-left.visible { opacity: 1; transform: translateY(0); }
.reveal-right { opacity: 0; transform: translateY(40px); transition: opacity 0.75s ease, transform 0.75s ease; }
.reveal-right.visible { opacity: 1; transform: translateY(0); }
.reveal-scale { opacity: 0; transform: scale(0.9); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* ── STAT ── */
.stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 56px; line-height: 1; color: var(--white); }
.stat-num em { font-style: normal; color: var(--yellow); }
.stat-label { font-family: 'Barlow Condensed', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gray); margin-top: 4px; }

/* ── PULSE ── */
.pulse-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--yellow); display: inline-block; animation: pdot 2s ease-in-out infinite; }
@keyframes pdot { 0%,100% { box-shadow: 0 0 0 0 rgba(10,186,181,0.6); } 50% { box-shadow: 0 0 0 8px rgba(10,186,181,0); } }

/* ── CTA BAND ── */
.cta-band { background: linear-gradient(120deg, var(--yellow) 0%, var(--yellow-dark) 100%); padding: 80px 6%; border-radius: 20px; margin: 80px 5% 60px; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; box-shadow: 0 24px 64px rgba(10,186,181,0.22); }
.cta-band h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(36px, 4.5vw, 64px); line-height: 0.95; color: var(--black); letter-spacing: 2px; max-width: 580px; }

/* ── CONTACT FORM ── */
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.contact-form input, .contact-form textarea, .contact-form select { background: var(--dark3); border: 1px solid rgba(255,255,255,0.07); color: var(--white); font-family: 'Barlow', sans-serif; font-size: 15px; padding: 16px 18px; outline: none; border-radius: 8px; transition: border-color 0.25s, box-shadow 0.25s; resize: vertical; -webkit-appearance: none; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: var(--gray); }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { border-color: var(--yellow); box-shadow: 0 0 0 3px rgba(10,186,181,0.12); }
.contact-form textarea { min-height: 130px; }

/* ── FOOTER ── */
footer { background: var(--black); border-top: 1px solid rgba(255,255,255,0.06); padding: 72px 5% 36px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 56px; }

/* REAL LOGO in footer */
.footer-logo-wrap { display: inline-block; margin-bottom: 16px; }
.footer-logo-img { height: 48px; width: auto; object-fit: contain; filter: brightness(1); opacity: 0.9; transition: opacity 0.2s; }
.footer-logo-wrap:hover .footer-logo-img { opacity: 1; }

.footer-desc { font-size: 14px; color: var(--gray); line-height: 1.8; margin-bottom: 24px; }
.social-row { display: flex; gap: 10px; }
.social-btn { width: 44px; height: 44px; border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: var(--gray-light); font-size: 13px; font-weight: 700; font-family: 'Barlow Condensed', sans-serif; border-radius: 8px; transition: all 0.2s; }
.social-btn:hover { background: var(--yellow); color: var(--black); border-color: var(--yellow); }
.footer-col h5 { font-family: 'Barlow Condensed', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--white); margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col a { font-size: 14px; color: var(--gray); transition: color 0.2s, transform 0.2s; display: block; line-height: 1.6; }
.footer-col a:hover { color: var(--yellow); transform: translateX(4px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: var(--gray); flex-wrap: wrap; gap: 12px; }
.footer-bottom a { color: var(--gray); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--yellow); }

/* ══════════════════════════
   RESPONSIVE
══════════════════════════ */
@media (max-width: 960px) {
  :root { --nav-h: 64px; }
  .inner-hero { padding-top: var(--nav-h); }
  .section { padding: 72px 5%; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
  .cta-band { border-radius: 16px; margin: 60px 5% 50px; padding: 64px 5%; }
  .inner-hero { min-height: 56vh; }
}
@media (max-width: 1240px) {
  :root { --nav-h: 64px; }
  .nav-links, .nav-book { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile { display: block; }
  .nav-logo-img { height: 40px; }
}
@media (max-width: 600px) {
  :root { --nav-h: 60px; }
  .nav-logo-img { height: 34px; }
  .section { padding: 56px 5% 56px; }
  .section-title { font-size: clamp(38px, 12vw, 56px); overflow-wrap: anywhere; }
  .inner-hero-content h1 { font-size: clamp(44px, 13vw, 68px); overflow-wrap: anywhere; }
  .eyebrow { letter-spacing: 3px; }
  .btn { width: 100%; padding: 15px 22px; font-size: 13px; letter-spacing: 2px; line-height: 1.2; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .cta-band { flex-direction: column; align-items: flex-start; padding: 52px 5%; margin: 40px 5% 40px; border-radius: 14px; }
  .cta-band h2 { max-width: 100%; }
  .inner-hero { min-height: 48vh; padding-bottom: 52px; }
}
@media (hover: none), (pointer: coarse) {
  .service-card p { max-height: none; opacity: 1; }
  .service-card-link { opacity: 1; transform: none; }
  .service-card-img { filter: brightness(0.45) saturate(0.8); }
}
@media (max-height: 500px) and (orientation: landscape) {
  .inner-hero { min-height: 100vh; padding-top: var(--nav-h); }
}

/* ── SKIP LINK ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--yellow);
  color: var(--black);
  padding: 12px 20px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 9999;
  transition: top 0.2s;
  border-radius: 0 0 8px 0;
  text-decoration: none;
}
.skip-link:focus { top: 0; }

/* ── WHATSAPP FLOAT ── */
.whatsapp-float { position: fixed; right: 24px; bottom: 24px; z-index: 300; display: block; line-height: 0; transition: transform 0.25s ease; }
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float img { width: 120px; height: auto; display: block; filter: drop-shadow(0 6px 18px rgba(0,0,0,0.35)); }
@media (max-width: 600px) {
  .whatsapp-float { right: 14px; bottom: 14px; }
  .whatsapp-float img { width: 84px; }
}

/* ── FOCUS VISIBLE ── */
:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 3px;
  border-radius: 3px;
}

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