/* ==============================================
   AQUABELLA GROUP — Mobile-First Premium CSS
   ============================================== */
:root {
  --gold:    #c9a55c;
  --gold2:   #e8c97e;
  --golddark:#7a5f28;
  --dark:    #09090b;
  --dark2:   #0e1017;
  --dark3:   #141720;
  --dark4:   #1b1f2b;
  --border:  rgba(255,255,255,0.08);
  --borderg: rgba(201,165,92,0.2);
  --text:    #e2e4ed;
  --muted:   #6b7280;
  --white:   #ffffff;
  --fh: 'Playfair Display', Georgia, serif;
  --fb: 'Plus Jakarta Sans', sans-serif;
  --r: 12px;
  --ease: cubic-bezier(.4,0,.2,1);
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { background: var(--dark); color: var(--text); font-family: var(--fb); font-size: 16px; line-height: 1.65; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
.wrap { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 16px; }
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .55s var(--ease), transform .55s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }

/* === BUTTONS === */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 28px; background: var(--gold); color: #000;
  font-family: var(--fb); font-weight: 700; font-size: .88rem;
  letter-spacing: .06em; text-transform: uppercase; border-radius: var(--r);
  border: none; cursor: pointer; transition: .25s var(--ease);
  -webkit-tap-highlight-color: transparent;
}
.btn-primary:hover, .btn-primary:active { background: var(--gold2); transform: translateY(-1px); }
.btn-primary.btn-full { width: 100%; }
.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 28px; border: 1.5px solid var(--borderg); color: var(--gold);
  font-family: var(--fb); font-weight: 600; font-size: .88rem;
  letter-spacing: .06em; text-transform: uppercase; border-radius: var(--r);
  cursor: pointer; transition: .25s var(--ease);
  -webkit-tap-highlight-color: transparent;
}
.btn-ghost:hover { background: rgba(201,165,92,.07); }

/* === TYPOGRAPHY === */
.sec-eyebrow { display: block; font-size: .7rem; font-weight: 700; letter-spacing: .26em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.sec-h2 { font-family: var(--fh); font-size: 1.9rem; font-weight: 700; color: var(--white); line-height: 1.2; margin-bottom: 10px; }
.sec-sub { font-size: .88rem; color: var(--muted); }
.sec-title-block { margin-bottom: 32px; }
.sec-title-block--c { text-align: center; }

/* === NAV === */
#nav { position: fixed; top: 0; left: 0; right: 0; z-index: 900; padding: 12px 0; transition: background .3s var(--ease), border-color .3s; border-bottom: 1px solid transparent; }
#nav.scrolled { background: rgba(9,9,11,.96); backdrop-filter: blur(20px); border-color: var(--border); }
.nav-wrap { max-width: 1160px; margin: 0 auto; padding: 0 16px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.nav-logo { display: flex; align-items: center; gap: 9px; }
.nl-box { width: 34px; height: 34px; background: linear-gradient(135deg, var(--gold), var(--golddark)); border-radius: 7px; display: flex; align-items: center; justify-content: center; font-family: var(--fh); font-weight: 900; font-size: .95rem; color: #000; flex-shrink: 0; }
.nl-text { display: flex; flex-direction: column; line-height: 1; }
.nl-name { font-family: var(--fh); font-size: .9rem; font-weight: 700; letter-spacing: .12em; color: var(--gold); }
.nl-tag { font-size: .5rem; font-weight: 700; letter-spacing: .28em; color: var(--muted); margin-top: 1px; }
/* Mobile: hide links, show burger */
.nav-links { display: none; }
.menu-btn { background: none; border: none; cursor: pointer; padding: 8px; display: flex; flex-direction: column; gap: 5px; touch-action: manipulation; -webkit-tap-highlight-color: transparent; }
.menu-btn span { display: block; width: 22px; height: 2px; background: var(--gold); border-radius: 2px; transition: .28s var(--ease); }
.menu-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-btn.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
/* Mobile Drawer */
.nav-links.open {
  display: flex; flex-direction: column; align-items: flex-start; gap: 0;
  position: fixed; top: 0; right: 0; bottom: 0; width: 80vw; max-width: 300px;
  background: var(--dark2); border-left: 1px solid var(--border);
  padding: 80px 28px 40px; z-index: 901; box-shadow: -8px 0 40px rgba(0,0,0,.6);
  overflow-y: auto;
}
.nav-links a { font-size: 1rem; font-weight: 500; color: var(--text); padding: 13px 0; border-bottom: 1px solid var(--border); width: 100%; transition: color .2s; }
.nav-links a:last-child { border: none; }
.nav-links a:hover { color: var(--gold); }
.nav-book-btn { background: var(--gold) !important; color: #000 !important; font-weight: 700 !important; padding: 13px 20px !important; border-radius: var(--r) !important; text-align: center; border: none !important; margin-top: 16px !important; }
.nav-backdrop { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.6); z-index: 900; }
.nav-backdrop.show { display: block; }

/* === HERO === */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; padding: 100px 16px 60px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-img-wrap { position: absolute; inset: 0; }
.hero-img { object-position: center; filter: brightness(.18) saturate(.6); transform: scale(1.04); transition: transform 8s ease; }
.hero:hover .hero-img { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top,  rgba(9,9,11,1) 0%, rgba(9,9,11,.85) 45%, rgba(9,9,11,.45) 100%),
    linear-gradient(to right, rgba(9,9,11,.6) 0%, transparent 70%);
}

/* Hero content — fade+slide in on load */
.hero-content { position: relative; z-index: 2; max-width: 640px; width: 100%; }
.hero-content > * { opacity: 0; transform: translateY(22px); animation: heroFadeUp .75s var(--ease) forwards; }
.hero-content > *:nth-child(1) { animation-delay: .1s; }
.hero-content > *:nth-child(2) { animation-delay: .25s; }
.hero-content > *:nth-child(3) { animation-delay: .4s; }
.hero-content > *:nth-child(4) { animation-delay: .55s; }
.hero-content > *:nth-child(5) { animation-delay: .68s; }
@keyframes heroFadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* Eyebrow badge */
.hero-eyebrow {
  display: inline-block; padding: 7px 18px;
  border: 1px solid rgba(201,165,92,.5);
  background: rgba(9,9,11,.5);
  border-radius: 50px;
  font-size: .68rem; font-weight: 700; letter-spacing: .24em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 22px;
  backdrop-filter: blur(12px);
}

/* Main title — bigger, bolder */
.hero-h1 {
  font-family: var(--fh);
  font-size: clamp(3.4rem, 11vw, 8rem);
  font-weight: 900; color: #ffffff;
  line-height: .92; letter-spacing: .02em;
  margin-bottom: 10px;
  text-shadow: 0 2px 24px rgba(0,0,0,.8), 0 4px 48px rgba(0,0,0,.6);
}
.hero-h1 em {
  display: block; font-style: italic; font-weight: 700;
  font-size: clamp(2.2rem, 7vw, 5.2rem);
  color: var(--gold); line-height: 1.15; margin-top: 6px;
}

/* Tagline — reduced opacity, elegant */
.hero-tagline {
  font-size: .78rem; font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; color: #a0aabb;
  margin-bottom: 32px;
}

/* Buttons — better spacing, more prominent primary */
.hero-actions { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.hero-actions .btn-primary {
  width: 100%; font-size: .9rem; font-weight: 700;
  padding: 16px 32px; letter-spacing: .08em;
  box-shadow: 0 4px 24px rgba(201,165,92,.35);
}
.hero-actions .btn-primary:hover { box-shadow: 0 8px 32px rgba(201,165,92,.5); }
.hero-actions .btn-ghost {
  width: 100%; font-size: .88rem;
  padding: 15px 32px;
  border: 1.5px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.8);
  backdrop-filter: blur(6px);
}
.hero-actions .btn-ghost:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,165,92,.07); }

/* Trust pills */
.hero-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.hero-pills span {
  font-size: .68rem; font-weight: 600; color: rgba(255,255,255,.85);
  background: rgba(0,0,0,.4);
  border: 1px solid rgba(255,255,255,.2);
  padding: 5px 12px; border-radius: 50px;
  backdrop-filter: blur(10px);
}

/* === SERVICES === */
.services { padding: 64px 0; background: var(--dark2); }
.cards { display: flex; flex-direction: column; gap: 16px; }
.card { display: block; background: var(--dark3); border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; transition: .28s var(--ease); -webkit-tap-highlight-color: transparent; }
.card:hover, .card:active { border-color: var(--borderg); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,.4); }
.card-img { height: 200px; position: relative; overflow: hidden; background: var(--dark4); flex-shrink: 0; }
.card-img img { transition: transform .5s var(--ease); }
.card:hover .card-img img { transform: scale(1.04); }
.card-badge { position: absolute; top: 12px; left: 12px; background: var(--gold); color: #000; font-size: .65rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 4px 10px; border-radius: 50px; }
.card-img--finance { background: linear-gradient(135deg, #0a1f1a, #061510); height: 200px; display: flex; align-items: center; justify-content: center; }
.finance-visual { position: relative; width: 120px; height: 120px; display: flex; align-items: center; justify-content: center; }
.fv-ring { position: absolute; border-radius: 50%; border: 1.5px solid rgba(201,165,92,.2); }
.r1 { width: 60px; height: 60px; animation: spin 8s linear infinite; }
.r2 { width: 90px; height: 90px; animation: spin 12s linear infinite reverse; }
.r3 { width: 120px; height: 120px; animation: spin 18s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.fv-icon { font-family: var(--fh); font-size: 1.4rem; font-weight: 700; color: var(--gold); z-index: 1; }
.card-body { padding: 20px; }
.card-cat { font-size: .65rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 6px; }
.card-title { font-family: var(--fh); font-size: 1.35rem; font-weight: 700; color: var(--white); margin-bottom: 8px; line-height: 1.2; }
.card-desc { font-size: .85rem; color: var(--muted); line-height: 1.65; margin-bottom: 14px; }
.card-perks { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
.card-perks li { font-size: .72rem; font-weight: 600; color: var(--text); background: var(--dark4); border: 1px solid var(--border); padding: 4px 10px; border-radius: 50px; }
.card-footer { border-top: 1px solid var(--border); padding-top: 14px; }
.card-cta { display: block; text-align: center; padding: 12px; background: var(--gold); color: #000; font-family: var(--fb); font-weight: 700; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; border-radius: 8px; transition: .25s; }
.card:hover .card-cta { background: var(--gold2); }

/* === GALLERY === */
.gallery { padding: 64px 0; background: var(--dark); }
.gal { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.gal-item { position: relative; border-radius: 8px; overflow: hidden; aspect-ratio: 1; cursor: pointer; }
.gal-big { grid-column: 1 / 3; aspect-ratio: 16/9; }
.gal-item img { transition: transform .5s var(--ease); }
.gal-item:hover img { transform: scale(1.06); }
.gal-item span { position: absolute; bottom: 0; left: 0; right: 0; padding: 12px; background: linear-gradient(to top, rgba(0,0,0,.75), transparent); color: #fff; font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; opacity: 0; transform: translateY(4px); transition: .28s; }
.gal-item:hover span { opacity: 1; transform: none; }

/* === ABOUT === */
.about { padding: 64px 0; background: var(--dark2); }
.about-grid { display: flex; flex-direction: column; gap: 36px; }
.about-left p { font-size: .9rem; color: var(--muted); line-height: 1.8; margin-bottom: 14px; }
.about-stats { display: flex; gap: 0; border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; margin-top: 24px; }
.stat { flex: 1; padding: 16px 12px; text-align: center; border-right: 1px solid var(--border); }
.stat:last-child { border-right: none; }
.stat strong { display: block; font-family: var(--fh); font-size: 1.6rem; font-weight: 700; color: var(--gold); line-height: 1; }
.stat span { font-size: .68rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-top: 4px; display: block; }
.about-img-wrap { border-radius: var(--r); overflow: hidden; aspect-ratio: 16/9; }

/* === CONTACT === */
.contact { padding: 64px 0; background: var(--dark); }
.contact-grid { display: flex; flex-direction: column; gap: 40px; }
.contact-left .sec-h2 { margin-bottom: 10px; }
.contact-left > p { font-size: .9rem; color: var(--muted); margin-bottom: 28px; }
.contact-info { display: flex; flex-direction: column; gap: 16px; margin-bottom: 24px; }
.ci-row { display: flex; align-items: center; gap: 14px; }
.ci-icon { width: 40px; height: 40px; min-width: 40px; background: var(--dark3); border: 1px solid var(--border); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--gold); }
.ci-row span { font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: 2px; }
.ci-row a { font-size: .9rem; color: var(--text); transition: color .2s; }
.ci-row a:hover { color: var(--gold); }
.social-links { display: flex; gap: 10px; margin-top: 4px; }
.social-links a { width: 40px; height: 40px; border: 1px solid var(--border); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--muted); transition: .25s; }
.social-links a:hover { border-color: var(--borderg); color: var(--gold); }
.book-form { background: var(--dark3); border: 1px solid var(--border); border-radius: var(--r); padding: 24px; }
.book-form h3 { font-family: var(--fh); font-size: 1.4rem; font-weight: 700; color: var(--white); margin-bottom: 20px; }
.fg { margin-bottom: 14px; }
.fg-2 { display: flex; flex-direction: column; gap: 14px; margin-bottom: 14px; }
.fg label { display: block; font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.fg input, .fg select, .fg textarea { width: 100%; background: var(--dark4); border: 1px solid var(--border); border-radius: 8px; padding: 13px 14px; color: var(--text); font-family: var(--fb); font-size: .93rem; outline: none; transition: border-color .25s; -webkit-appearance: none; appearance: none; }
.fg select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%236b7280' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 32px; }
.fg select option { background: var(--dark4); }
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: rgba(201,165,92,.5); box-shadow: 0 0 0 3px rgba(201,165,92,.06); }
.fg input::placeholder, .fg textarea::placeholder { color: rgba(107,114,128,.45); }
.fg textarea { resize: vertical; min-height: 100px; }
.form-note { font-size: .75rem; color: var(--muted); text-align: center; margin-top: 10px; }
.form-ok { display: none; margin-top: 12px; padding: 12px; background: rgba(16,185,129,.08); border: 1px solid rgba(16,185,129,.2); border-radius: 8px; color: #6ee09a; font-size: .85rem; text-align: center; }
.form-ok.show { display: block; }

/* === FOOTER === */
.footer { padding: 36px 0; background: var(--dark2); border-top: 1px solid var(--border); }
.footer-wrap { display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; }
.footer-logo { display: flex; align-items: center; gap: 9px; }
.footer-links { font-size: .78rem; color: var(--muted); }
.footer-copy { font-size: .72rem; color: rgba(107,114,128,.5); }

/* === WA BUTTON === */
.wa-btn { position: fixed; bottom: 24px; right: 20px; z-index: 800; width: 48px; height: 48px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; box-shadow: 0 2px 12px rgba(0,0,0,.3), 0 4px 16px rgba(37,211,102,.35); transition: .25s var(--ease); -webkit-tap-highlight-color: transparent; }
.wa-btn:hover { transform: scale(1.08) translateY(-2px); box-shadow: 0 4px 20px rgba(0,0,0,.3), 0 8px 24px rgba(37,211,102,.45); }

/* ============================================
   TABLET — 600px+
   ============================================ */
@media (min-width: 600px) {
  .wrap { padding: 0 24px; }
  .hero-actions { flex-direction: row; }
  .hero-actions .btn-primary, .hero-actions .btn-ghost { width: auto; }
  .cards { display: grid; grid-template-columns: 1fr 1fr; }
  .card--wide { grid-column: 1 / 3; }
  .card--wide .card-img { height: 260px; }
  .card--wide .card-body { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }
  .card--wide .card-footer { grid-column: 1 / 3; }
  .gal { grid-template-columns: repeat(3, 1fr); }
  .gal-big { grid-column: 1 / 4; }
  .fg-2 { flex-direction: row; }
  .about-grid { flex-direction: row; align-items: center; gap: 48px; }
  .about-left, .about-right { flex: 1; }
}

/* ============================================
   DESKTOP — 1024px+
   ============================================ */
@media (min-width: 1024px) {
  .menu-btn { display: none; }
  .nav-links { display: flex !important; position: static; width: auto; height: auto; background: none; border: none; padding: 0; box-shadow: none; flex-direction: row; align-items: center; gap: 28px; overflow: visible; }
  .nav-links a { font-size: .78rem; font-weight: 500; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); padding: 0; border: none; width: auto; transition: color .2s; }
  .nav-links a:hover { color: var(--white); }
  .nav-book-btn { padding: 9px 20px !important; margin-top: 0 !important; font-size: .78rem !important; }
  .nav-backdrop { display: none !important; }
  .sec-h2 { font-size: 2.5rem; }
  .services { padding: 96px 0; }
  .gallery { padding: 96px 0; }
  .about { padding: 96px 0; }
  .contact { padding: 96px 0; }
  .contact-grid { flex-direction: row; gap: 72px; align-items: start; }
  .contact-left { flex: 1; }
  .book-form { flex: 1.5; }
  .gal { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; }
  .gal-big { grid-column: 1 / 3; grid-row: 1 / 3; aspect-ratio: unset; }
}
