/* ── RESET & BASE ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter Tight', sans-serif; color: #545454; background: #fff; overflow-x: hidden; line-height: 1.6; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

:root {
  --primary:   #042245;
  --accent:    #025BDE;
  --accent-dk: #0148b5;
  --bg-sec:    #F3F3F5;
  --text:      #545454;
  --white:     #ffffff;
  --border:    #e5e7eb;
  --radius:    6px;
}

/* ── UTILITIES ────────────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 90px 0; }

.section-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-heading {
  font-size: clamp(1.9rem, 4vw, 2.65rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 18px;
}
.section-heading span { color: var(--accent); }
.section-text {
  font-size: 1rem;
  color: var(--text);
  max-width: 520px;
  line-height: 1.75;
}
.text-center { text-align: center; }
.text-center .section-text { margin: 0 auto; }

.dark-section .section-label { color: rgba(255,255,255,.65); }
.dark-section .section-heading { color: #fff; }
.dark-section .section-text { color: rgba(255,255,255,.75); }
.dark-section p { color: rgba(255,255,255,.75); }

/* ── BUTTONS ──────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  padding: 14px 26px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background .22s, transform .18s, box-shadow .22s;
  white-space: nowrap;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dk); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(2,91,222,.35); }
.btn-outline { background: transparent; color: var(--accent); border: 2px solid var(--accent); }
.btn-outline:hover { background: var(--accent); color: #fff; }
.btn-outline-white { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.55); }
.btn-outline-white:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn-white { background: #fff; color: var(--primary); }
.btn-white:hover { background: #eaf0fb; transform: translateY(-2px); }
.btn-arrow::after {
  content: '';
  display: inline-block;
  width: 18px; height: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 18 18'%3E%3Cpath stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M3.75 9h10.5M9.75 4.5 14.25 9l-4.5 4.5'/%3E%3C/svg%3E") center/contain no-repeat;
}
.btn-arrow-dark::after {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 18 18'%3E%3Cpath stroke='%23042245' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M3.75 9h10.5M9.75 4.5 14.25 9l-4.5 4.5'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* ── HEADER ───────────────────────────────────────────── */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--primary);
  transition: box-shadow .3s;
}
#header.scrolled { box-shadow: 0 2px 20px rgba(4,34,69,.4); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -.01em;
  flex-shrink: 0;
}
.logo-icon {
  width: 38px; height: 38px;
  background: var(--accent);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-icon svg { width: 22px; height: 22px; }
.logo-text { line-height: 1.15; }
.logo-text span { display: block; font-size: .72rem; font-weight: 400; color: rgba(255,255,255,.6); letter-spacing: .04em; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  padding: 7px 14px;
  border-radius: 4px;
  transition: color .2s, background .2s;
}
.nav a:hover, .nav a.active { color: #fff; background: rgba(255,255,255,.12); }

.header-cta { display: flex; align-items: center; gap: 18px; flex-shrink: 0; }
.header-phone {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,.85); font-size: 14px; font-weight: 600;
}
.header-phone svg { opacity: .7; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: transform .25s, opacity .25s; }

@media (max-width: 900px) {
  .nav {
    display: none; position: absolute; top: 72px; left: 0; right: 0;
    background: var(--primary); flex-direction: column; align-items: flex-start;
    padding: 16px 24px 20px; gap: 2px; border-top: 1px solid rgba(255,255,255,.1);
  }
  .nav.open { display: flex; }
  .nav a { width: 100%; padding: 10px 14px; }
  .nav-toggle { display: flex; }
  .header-phone { display: none; }
}

/* ── PAGE HERO (interior pages) ──────────────────────── */
.page-hero {
  background: var(--primary);
  padding: 130px 0 70px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='40' cy='40' r='38' fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='1'/%3E%3C/svg%3E") repeat;
  background-size: 80px 80px;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,.7); font-size: 1.05rem; }
.breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.breadcrumb a { font-size: 13px; color: rgba(255,255,255,.6); font-weight: 500; transition: color .2s; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { font-size: 13px; color: rgba(255,255,255,.35); }

/* ── SERVICE CARDS ────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.svc-card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px 28px;
  border: 1.5px solid var(--border);
  transition: border-color .25s, box-shadow .25s, transform .25s;
}
.svc-card:hover { border-color: var(--accent); box-shadow: 0 12px 40px rgba(2,91,222,.13); transform: translateY(-4px); }
.svc-icon {
  width: 56px; height: 56px;
  background: rgba(2,91,222,.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: background .25s;
}
.svc-card:hover .svc-icon { background: var(--accent); }
.svc-icon svg { width: 28px; height: 28px; transition: stroke .25s; }
.svc-card:hover .svc-icon svg { stroke: #fff !important; }
.svc-title { font-size: 1.1rem; font-weight: 700; color: var(--primary); margin-bottom: 10px; }
.svc-desc { font-size: .9rem; color: var(--text); line-height: 1.7; }

@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }

/* ── CTA BANNER ───────────────────────────────────────── */
.cta-section {
  position: relative;
  background: var(--accent);
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='28' fill='none' stroke='rgba(255,255,255,0.07)' stroke-width='1'/%3E%3C/svg%3E") repeat;
  background-size: 60px 60px;
}
.cta-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  padding: 60px 0;
}
.cta-text .section-heading { color: #fff; font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 8px; }
.cta-text p { color: rgba(255,255,255,.82); }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── ABOUT SECTION ────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-img-wrap { position: relative; }
.about-img-main { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 16px; }
.about-img-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--accent); color: #fff;
  padding: 20px 24px; border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(2,91,222,.4);
}
.about-img-badge .num { display: block; font-size: 2.25rem; font-weight: 900; line-height: 1; margin-bottom: 4px; }
.about-img-badge .lbl { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; opacity: .9; }
.about-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 32px; }
.about-stat {
  background: var(--bg-sec); padding: 18px 14px; border-radius: 12px; text-align: center;
  transition: box-shadow .2s;
}
.about-stat:hover { box-shadow: 0 4px 20px rgba(4,34,69,.1); }
.about-stat-num { font-size: 1.75rem; font-weight: 900; color: var(--primary); line-height: 1; margin-bottom: 6px; }
.about-stat-num span { color: var(--accent); }
.about-stat-lbl { font-size: 11px; color: var(--text); font-weight: 600; text-transform: uppercase; letter-spacing: .07em; }
.about-features { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.about-feature { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--text); }
.feature-check {
  width: 22px; height: 22px;
  background: var(--accent); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}
.feature-check svg { width: 12px; height: 12px; }

@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img-badge { bottom: 12px; right: 12px; }
}

/* ── GALLERY GRID ─────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 12px;
}
.gallery-item {
  position: relative; overflow: hidden; border-radius: 12px; cursor: pointer;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(4,34,69,.75) 0%, transparent 55%);
  opacity: 0; transition: opacity .3s;
  display: flex; align-items: flex-end; padding: 20px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-caption { color: #fff; font-size: 14px; font-weight: 600; }
.gallery-zoom {
  position: absolute; top: 14px; right: 14px;
  width: 38px; height: 38px;
  background: rgba(255,255,255,.2); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .3s;
  backdrop-filter: blur(4px);
}
.gallery-item:hover .gallery-zoom { opacity: 1; }
.gallery-zoom svg { width: 18px; height: 18px; stroke: #fff; }

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

/* ── CONTACT / FORM ───────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 26px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon {
  width: 48px; height: 48px;
  background: rgba(2,91,222,.1); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-icon svg { width: 22px; height: 22px; }
.contact-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--accent); margin-bottom: 4px; }
.contact-val { font-size: 15px; color: var(--primary); font-weight: 600; }
.contact-val a { color: var(--primary); transition: color .2s; }
.contact-val a:hover { color: var(--accent); }

/* reservation form */
.form-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 40px;
}
.form-card h3 { font-size: 1.35rem; font-weight: 800; color: var(--primary); margin-bottom: 6px; }
.form-card .form-subtitle { font-size: 14px; color: var(--text); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group:last-child { margin-bottom: 0; }
.form-group label { font-size: 13px; font-weight: 700; color: var(--primary); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 14.5px;
  color: var(--primary);
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(2,91,222,.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23545454' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 16px; padding-right: 40px; }
.form-submit { width: 100%; padding: 15px; font-size: 16px; margin-top: 8px; }
.form-success {
  display: none;
  text-align: center;
  padding: 32px 20px;
}
.form-success-icon { font-size: 3rem; margin-bottom: 12px; }
.form-success h4 { font-size: 1.3rem; font-weight: 800; color: var(--primary); margin-bottom: 8px; }
.form-success p { color: var(--text); margin-bottom: 20px; }

@media (max-width: 800px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 28px 20px; }
}

/* ── SOCIAL ───────────────────────────────────────────── */
.contact-social { display: flex; gap: 10px; margin-top: 4px; }
.social-btn {
  width: 40px; height: 40px; background: var(--bg-sec); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s; color: var(--primary);
}
.social-btn:hover { background: var(--accent); color: #fff; }
.social-btn svg { width: 18px; height: 18px; }

/* ── FOOTER ───────────────────────────────────────────── */
footer {
  background: var(--primary);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand p { font-size: 14px; color: rgba(255,255,255,.6); line-height: 1.75; margin-top: 14px; max-width: 280px; }
.footer-col-title { font-size: 12px; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,.6); transition: color .2s, padding-left .2s; }
.footer-links a:hover { color: #fff; padding-left: 4px; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; gap: 16px; flex-wrap: wrap;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,.45); }
.footer-bottom a { color: rgba(255,255,255,.6); transition: color .2s; }
.footer-bottom a:hover { color: #fff; }

@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } .footer-brand { grid-column: span 2; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } .footer-brand { grid-column: auto; } }

/* ── LIGHTBOX ─────────────────────────────────────────── */
#lightbox {
  display: none; position: fixed; inset: 0;
  background: rgba(4,34,69,.94); z-index: 9999;
  align-items: center; justify-content: center;
  padding: 20px; backdrop-filter: blur(6px);
}
#lightbox.open { display: flex; }
#lightbox img { max-width: 90vw; max-height: 88vh; object-fit: contain; border-radius: 8px; }
#lb-close { position: absolute; top: 20px; right: 24px; color: rgba(255,255,255,.8); font-size: 32px; cursor: pointer; line-height: 1; transition: color .2s; background: none; border: none; }
#lb-close:hover { color: #fff; }
#lb-prev, #lb-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.15); border: none; color: #fff;
  width: 48px; height: 48px; border-radius: 50%; font-size: 24px;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
#lb-prev:hover, #lb-next:hover { background: var(--accent); }
#lb-prev { left: 16px; }
#lb-next { right: 16px; }

/* ── SCROLL REVEAL ────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ── HOW IT WORKS ─────────────────────────────────────── */
.how-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 8px; position: relative;
}
.how-grid::before {
  content: ''; position: absolute; top: 40px;
  left: calc(16.666% + 20px); right: calc(16.666% + 20px);
  height: 1px;
  background-image: repeating-linear-gradient(90deg, rgba(255,255,255,.25) 0, rgba(255,255,255,.25) 8px, transparent 8px, transparent 18px);
}
.how-step { text-align: center; padding: 32px 24px; }
.how-num-wrap {
  display: inline-flex; align-items: center; justify-content: center;
  width: 80px; height: 80px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,.2); background: rgba(255,255,255,.06);
  margin-bottom: 24px; position: relative;
}
.how-num-wrap::before { content: ''; position: absolute; inset: 6px; background: var(--accent); border-radius: 50%; opacity: .12; }
.how-num { font-size: 1.75rem; font-weight: 900; color: #fff; position: relative; }
.how-title { font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 10px; }
.how-desc { font-size: .9rem; color: rgba(255,255,255,.65); line-height: 1.7; }

@media (max-width: 680px) { .how-grid { grid-template-columns: 1fr; } .how-grid::before { display: none; } }

/* ── AREA TAGS ────────────────────────────────────────── */
.area-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.area-tag {
  background: var(--white); border: 1.5px solid var(--border);
  color: var(--primary); font-size: 13.5px; font-weight: 600;
  padding: 8px 16px; border-radius: 50px; transition: border-color .2s, color .2s;
}
.area-tag:hover { border-color: var(--accent); color: var(--accent); }

