/* ============ DESIGN TOKENS ============ */
:root {
  --blue:        #1a56db;
  --blue-dark:   #102a6e;
  --blue-light:  #eaf1ff;
  --gold:        #d4a531;
  --gold-light:  #f6e6bd;
  --ink:         #16213a;
  --muted:       #5a6480;
  --line:        #e6eaf2;
  --bg:          #ffffff;
  --bg-alt:      #f6f8fc;
  --white:       #ffffff;
  --shadow-sm:   0 4px 14px rgba(16, 42, 110, .07);
  --shadow-md:   0 14px 40px rgba(16, 42, 110, .12);
  --shadow-lg:   0 24px 60px rgba(16, 42, 110, .18);
  --radius:      16px;
  --radius-lg:   24px;
  --max:         1180px;
  --ease:        cubic-bezier(.22, 1, .36, 1);
}

/* ============ RESET ============ */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: "Inter", "Poppins", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
}
h1, h2, h3, h4, .logo-text { font-family: "Poppins", sans-serif; line-height: 1.2; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
section { scroll-margin-top: 70px; }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 22px; }
.text-gold { color: var(--gold); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: "Poppins", sans-serif; font-weight: 600; font-size: .95rem;
  padding: .8rem 1.5rem; border-radius: 50px; border: 2px solid transparent;
  cursor: pointer; transition: all .3s var(--ease); white-space: nowrap;
}
.btn:active { transform: scale(.97); }
.btn-sm { padding: .55rem 1.1rem; font-size: .85rem; }
.btn-lg { padding: 1rem 2rem; font-size: 1.02rem; }
.btn-block { width: 100%; }

.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 8px 22px rgba(26,86,219,.32); }
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-3px); box-shadow: 0 14px 30px rgba(26,86,219,.42); }

.btn-light { background: #fff; color: var(--blue-dark); }
.btn-light:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.btn-outline { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn-outline:hover { background: var(--blue); color: #fff; }

.btn-ghost { background: var(--blue-light); color: var(--blue-dark); }
.btn-ghost:hover { background: #ddeafe; transform: translateY(-3px); }

.btn-whatsapp { background: #25d366; color: #fff; box-shadow: 0 8px 22px rgba(37,211,102,.35); }
.btn-whatsapp:hover { background: #1eb858; transform: translateY(-3px); }

/* ============ HEADER ============ */
.header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  transition: all .35s var(--ease); padding: .9rem 0;
}
.header.scrolled { background: rgba(255,255,255,.96); backdrop-filter: blur(10px); box-shadow: var(--shadow-sm); padding: .55rem 0; }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }

.logo { display: flex; align-items: center; gap: .55rem; font-family: "Poppins"; font-weight: 700; font-size: 1.3rem; color: #fff; transition: color .35s; }
.header.scrolled .logo { color: var(--ink); }
.logo-mark {
  width: 40px; height: 40px; border-radius: 11px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: #fff; display: grid; place-items: center; font-size: 1.1rem;
  box-shadow: 0 6px 16px rgba(26,86,219,.4);
}
.logo-accent { color: var(--gold); }

.nav-menu { display: flex; align-items: center; gap: .3rem; }
.nav-link {
  position: relative; font-weight: 500; font-size: .95rem; padding: .5rem .85rem;
  color: rgba(255,255,255,.92); border-radius: 8px; transition: color .3s;
}
.header.scrolled .nav-link { color: var(--ink); }
.nav-link::after {
  content: ""; position: absolute; left: 50%; bottom: .25rem; width: 0; height: 2px;
  background: var(--gold); transition: all .3s var(--ease); transform: translateX(-50%);
}
.nav-link:hover { color: var(--gold); }
.nav-link:hover::after { width: 55%; }

.nav-actions { display: flex; align-items: center; gap: .6rem; }
.header:not(.scrolled) .btn-outline { color: #fff; border-color: rgba(255,255,255,.7); }
.header:not(.scrolled) .btn-outline:hover { background: #fff; color: var(--blue); border-color: #fff; }

.nav-toggle { display: none; background: none; border: 0; font-size: 1.5rem; color: #fff; cursor: pointer; }
.header.scrolled .nav-toggle { color: var(--ink); }

/* ============ HERO ============ */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  background: url("images/hero.jpg") center/cover fixed no-repeat;
  color: #fff; text-align: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(16,42,110,.92) 0%, rgba(16,42,110,.7) 45%, rgba(26,86,219,.55) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 880px; margin: 0 auto; padding-top: 80px; padding-bottom: 60px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem; background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.3); padding: .45rem 1.1rem; border-radius: 50px;
  font-size: .85rem; font-weight: 500; margin-bottom: 1.4rem; backdrop-filter: blur(6px);
}
.hero-badge i { color: var(--gold); }
.hero-title { font-size: clamp(2.1rem, 5.2vw, 3.7rem); font-weight: 800; margin-bottom: 1.1rem; letter-spacing: -.5px; }
.hero-subtitle { font-size: clamp(1rem, 2.2vw, 1.25rem); color: rgba(255,255,255,.9); max-width: 640px; margin: 0 auto 2rem; font-weight: 300; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3rem; }

.hero-stats { display: inline-flex; align-items: center; gap: 1.4rem; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); padding: 1rem 1.8rem; border-radius: var(--radius); backdrop-filter: blur(8px); }
.stat { display: flex; flex-direction: column; }
.stat-num { font-family: "Poppins"; font-size: 1.6rem; font-weight: 700; color: var(--gold); }
.stat-label { font-size: .78rem; color: rgba(255,255,255,.85); }
.stat-divider { width: 1px; height: 38px; background: rgba(255,255,255,.25); }

.scroll-down {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 2;
  width: 42px; height: 42px; border: 2px solid rgba(255,255,255,.5); border-radius: 50%;
  display: grid; place-items: center; color: #fff; animation: bob 1.8s infinite;
}
@keyframes bob { 0%,100% { transform: translate(-50%,0); } 50% { transform: translate(-50%,8px); } }

/* ============ SECTIONS ============ */
.section { padding: 5.5rem 0; }
.section-alt { background: var(--bg-alt); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 3.2rem; }
.section-tag {
  display: inline-block; font-family: "Poppins"; font-weight: 600; font-size: .8rem;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--blue);
  background: var(--blue-light); padding: .35rem 1rem; border-radius: 50px; margin-bottom: 1rem;
}
.section-title { font-size: clamp(1.7rem, 3.6vw, 2.5rem); font-weight: 700; margin-bottom: .9rem; }
.section-sub { color: var(--muted); font-size: 1.05rem; }

/* ============ ABOUT ============ */
.about-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 3.5rem; align-items: center; }
.about-media { position: relative; }
.about-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); width: 100%; height: 480px; object-fit: cover; }
.about-badge {
  position: absolute; bottom: -22px; left: -22px; background: #fff; padding: 1rem 1.3rem;
  border-radius: var(--radius); box-shadow: var(--shadow-md); display: flex; align-items: center; gap: .8rem;
}
.about-badge i { font-size: 1.7rem; color: var(--gold); }
.about-badge strong { display: block; font-family: "Poppins"; font-size: .95rem; }
.about-badge span { font-size: .8rem; color: var(--muted); }
.about-text > p { color: var(--muted); margin-bottom: 1.4rem; }
.about-list { display: grid; gap: .9rem; margin-bottom: 1.8rem; }
.about-list li { display: flex; gap: .7rem; align-items: flex-start; font-size: .98rem; }
.about-list i { color: var(--blue); margin-top: .25rem; font-size: 1.05rem; }
.about-cta { display: flex; gap: .8rem; flex-wrap: wrap; }

/* ============ AMENITIES ============ */
.amenities-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.3rem; }
.amenity {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem 1.2rem;
  text-align: center; transition: all .35s var(--ease);
}
.amenity:hover { transform: translateY(-7px); box-shadow: var(--shadow-md); border-color: transparent; }
.amenity-icon {
  width: 58px; height: 58px; margin: 0 auto .9rem; border-radius: 15px;
  background: linear-gradient(135deg, var(--blue-light), #fff); color: var(--blue);
  display: grid; place-items: center; font-size: 1.4rem; transition: all .35s var(--ease);
}
.amenity:hover .amenity-icon { background: linear-gradient(135deg, var(--blue), var(--blue-dark)); color: #fff; transform: rotate(-6deg) scale(1.05); }
.amenity h4 { font-size: .98rem; font-weight: 600; }

/* ============ GALLERY ============ */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.gallery-item {
  position: relative; overflow: hidden; border-radius: var(--radius);
  aspect-ratio: 4/3; cursor: pointer; box-shadow: var(--shadow-sm);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gallery-item:hover img { transform: scale(1.12); }
.gallery-caption {
  position: absolute; inset: 0; display: flex; align-items: flex-end; padding: 1.1rem;
  background: linear-gradient(to top, rgba(16,42,110,.8), transparent 55%);
  color: #fff; font-family: "Poppins"; font-weight: 600; opacity: 0; transition: opacity .35s;
}
.gallery-item:hover .gallery-caption { opacity: 1; }
.gallery-caption i { margin-right: .4rem; color: var(--gold); }

/* ============ PRICING ============ */
.pricing-wrap { display: flex; justify-content: center; }
.price-card {
  position: relative; background: #fff; border-radius: var(--radius-lg); padding: 2.6rem 2.2rem;
  max-width: 420px; width: 100%; text-align: center; box-shadow: var(--shadow-lg);
  border: 2px solid var(--gold-light);
}
.price-ribbon {
  position: absolute; top: 18px; right: -34px; background: var(--gold); color: #fff;
  font-family: "Poppins"; font-weight: 600; font-size: .75rem; letter-spacing: .5px;
  padding: .35rem 2.6rem; transform: rotate(45deg);
}
.price-name { font-size: 1.35rem; font-weight: 700; margin-bottom: .5rem; }
.price-amount { font-family: "Poppins"; font-size: 3rem; font-weight: 800; color: var(--blue-dark); line-height: 1; margin-bottom: .5rem; }
.price-currency { font-size: 1.5rem; vertical-align: super; margin-right: 2px; }
.price-period { font-size: 1rem; font-weight: 500; color: var(--muted); }
.price-desc { color: var(--muted); font-size: .92rem; margin-bottom: 1.5rem; }
.price-features { text-align: left; display: grid; gap: .75rem; margin-bottom: 1.8rem; }
.price-features li { display: flex; align-items: center; gap: .7rem; font-size: .95rem; }
.price-features i {
  color: #fff; background: var(--blue); width: 22px; height: 22px; border-radius: 50%;
  display: grid; place-items: center; font-size: .65rem; flex-shrink: 0;
}
.price-call { display: inline-block; margin-top: 1rem; color: var(--blue); font-weight: 600; font-family: "Poppins"; }
.price-call:hover { color: var(--gold); }

/* ============ WHY CHOOSE US ============ */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.why-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem 1.7rem;
  transition: all .35s var(--ease); position: relative; overflow: hidden;
}
.why-card::before {
  content: ""; position: absolute; top: 0; left: 0; width: 4px; height: 0;
  background: var(--gold); transition: height .35s var(--ease);
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.why-card:hover::before { height: 100%; }
.why-icon {
  width: 54px; height: 54px; border-radius: 14px; margin-bottom: 1.1rem;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark)); color: #fff;
  display: grid; place-items: center; font-size: 1.3rem; box-shadow: 0 8px 18px rgba(26,86,219,.3);
}
.why-card h3 { font-size: 1.15rem; margin-bottom: .5rem; }
.why-card p { color: var(--muted); font-size: .93rem; }

/* ============ LOCATION ============ */
.location-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 3rem; align-items: center; }
.location-info > p { color: var(--muted); margin-bottom: 1.6rem; display: flex; gap: .55rem; align-items: flex-start; }
.location-sub { font-size: 1.05rem; margin-bottom: 1rem; font-family: "Poppins"; }
.location-list { display: grid; grid-template-columns: 1fr 1fr; gap: .85rem; margin-bottom: 1.8rem; }
.location-list li { display: flex; align-items: center; gap: .6rem; font-size: .95rem; color: var(--ink); }
.location-list i { color: var(--blue); width: 22px; text-align: center; }
.location-map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); height: 400px; }
.location-map iframe { height: 100%; }

/* ============ TESTIMONIALS ============ */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testimonial {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem 1.7rem;
  position: relative; transition: all .35s var(--ease);
}
.testimonial:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.testimonial .quote-mark { font-size: 2.6rem; color: var(--gold-light); font-family: Georgia, serif; line-height: .6; position: absolute; top: 1.4rem; right: 1.4rem; }
.testimonial .stars { color: var(--gold); margin-bottom: .9rem; font-size: .9rem; }
.testimonial p { color: var(--muted); font-size: .95rem; margin-bottom: 1.4rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: .8rem; }
.testimonial-avatar {
  width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--gold));
  color: #fff; display: grid; place-items: center; font-family: "Poppins"; font-weight: 600;
}
.testimonial-author strong { display: block; font-family: "Poppins"; font-size: .95rem; }
.testimonial-author span { font-size: .82rem; color: var(--muted); }

/* ============ CONTACT ============ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.contact-info > p { color: var(--muted); margin-bottom: 1.8rem; }
.contact-cards { display: grid; gap: 1rem; margin-bottom: 1.8rem; }
.contact-card {
  display: flex; align-items: center; gap: 1rem; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1rem 1.2rem; transition: all .3s var(--ease);
}
.contact-card:hover { transform: translateX(5px); box-shadow: var(--shadow-sm); border-color: var(--blue-light); }
.contact-icon { width: 46px; height: 46px; flex-shrink: 0; border-radius: 12px; background: var(--blue-light); color: var(--blue); display: grid; place-items: center; font-size: 1.1rem; }
.contact-label { display: block; font-size: .78rem; color: var(--muted); }
.contact-card strong { font-family: "Poppins"; font-size: .95rem; }
.contact-quick { display: flex; gap: .8rem; flex-wrap: wrap; }

/* Centered single-column contact (no form) */
.contact-single { max-width: 820px; margin: 0 auto; text-align: center; }
.contact-single .contact-info > p { margin-left: auto; margin-right: auto; max-width: 560px; }
.contact-single .contact-cards { grid-template-columns: 1fr 1fr; text-align: left; }
.contact-single .contact-quick { justify-content: center; }
@media (max-width: 620px) {
  .contact-single .contact-cards { grid-template-columns: 1fr; }
}

.contact-form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 2.2rem; box-shadow: var(--shadow-sm); }
.contact-form h3 { font-size: 1.3rem; margin-bottom: 1.3rem; }
.form-row { margin-bottom: 1rem; }
.contact-form input, .contact-form textarea {
  width: 100%; padding: .85rem 1.1rem; border: 1.5px solid var(--line); border-radius: 12px;
  font-family: inherit; font-size: .95rem; color: var(--ink); transition: border .25s, box-shadow .25s; resize: vertical;
}
.contact-form input:focus, .contact-form textarea:focus { outline: 0; border-color: var(--blue); box-shadow: 0 0 0 3px var(--blue-light); }
.form-note { margin-top: .9rem; font-size: .9rem; font-weight: 500; text-align: center; }
.form-note.ok { color: #1a9c54; }
.form-note.err { color: #d83a3a; }

/* ============ FOOTER ============ */
.footer { background: var(--blue-dark); color: rgba(255,255,255,.8); padding: 3.5rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1.4fr; gap: 2.5rem; padding-bottom: 2.5rem; }
.footer-logo { color: #fff; margin-bottom: 1rem; }
.footer-col > p { font-size: .92rem; margin-bottom: 1.2rem; max-width: 320px; }
.footer-col h4 { color: #fff; font-size: 1.05rem; margin-bottom: 1.1rem; }
.footer-links li, .footer-contact li { margin-bottom: .7rem; font-size: .92rem; }
.footer-links a:hover { color: var(--gold); padding-left: 4px; transition: all .25s; }
.footer-contact li { display: flex; align-items: flex-start; gap: .6rem; }
.footer-contact i { color: var(--gold); margin-top: .3rem; }
.footer-contact a:hover { color: var(--gold); }
.social-links { display: flex; gap: .6rem; }
.social-links a {
  width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.1);
  display: grid; place-items: center; color: #fff; transition: all .3s var(--ease);
}
.social-links a:hover { background: var(--gold); transform: translateY(-4px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 1.3rem 0; text-align: center; }
.footer-bottom p { font-size: .85rem; }

/* ============ FLOATING WHATSAPP ============ */
.whatsapp-float {
  position: fixed; bottom: 26px; right: 26px; z-index: 999;
  width: 58px; height: 58px; border-radius: 50%; background: #25d366; color: #fff;
  display: grid; place-items: center; font-size: 1.7rem; box-shadow: 0 8px 24px rgba(37,211,102,.5);
  transition: transform .3s var(--ease);
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-pulse {
  position: absolute; inset: 0; border-radius: 50%; background: #25d366; z-index: -1;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0% { transform: scale(1); opacity: .7; } 100% { transform: scale(1.8); opacity: 0; } }

/* ============ BACK TO TOP ============ */
.back-to-top {
  position: fixed; bottom: 26px; left: 26px; z-index: 998; width: 46px; height: 46px;
  border: 0; border-radius: 12px; background: var(--blue); color: #fff; font-size: 1rem; cursor: pointer;
  opacity: 0; visibility: hidden; transform: translateY(15px); transition: all .35s var(--ease);
  box-shadow: var(--shadow-md);
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--blue-dark); }

/* ============ REVEAL ANIMATION ============ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   ✨ PREMIUM STYLE LAYER — gradients, glow, glass, motion
   ============================================================ */

/* ---- Animated gradient hero overlay + floating blobs ---- */
.hero-overlay {
  background:
    radial-gradient(1100px 600px at 80% -10%, rgba(212,165,49,.28), transparent 60%),
    linear-gradient(125deg, rgba(13,28,77,.94) 0%, rgba(16,42,110,.82) 42%, rgba(26,86,219,.55) 100%);
}
.hero::before, .hero::after {
  content: ""; position: absolute; border-radius: 50%; z-index: 1; pointer-events: none;
  filter: blur(8px); opacity: .55;
}
.hero::before {
  width: 380px; height: 380px; top: -90px; right: -60px;
  background: radial-gradient(circle at 30% 30%, rgba(212,165,49,.55), transparent 70%);
  animation: floaty 9s ease-in-out infinite;
}
.hero::after {
  width: 300px; height: 300px; bottom: -80px; left: -70px;
  background: radial-gradient(circle at 70% 70%, rgba(26,86,219,.6), transparent 70%);
  animation: floaty 11s ease-in-out infinite reverse;
}
@keyframes floaty {
  0%,100% { transform: translate(0,0) scale(1); }
  50%     { transform: translate(-26px, 24px) scale(1.08); }
}

/* ---- Shimmering gold gradient on the hero accent ---- */
.hero-title .text-gold {
  background: linear-gradient(100deg, #f6e6bd 0%, #d4a531 35%, #fff3cf 55%, #d4a531 75%, #f6e6bd 100%);
  background-size: 220% auto;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: shimmer 5s linear infinite;
}
@keyframes shimmer { to { background-position: 220% center; } }

.hero-title { text-shadow: 0 18px 50px rgba(0,0,0,.25); }
.hero-badge { box-shadow: 0 8px 30px rgba(0,0,0,.18); }

/* ---- Glassy hero stat bar with sheen ---- */
.hero-stats {
  background: rgba(255,255,255,.09);
  box-shadow: 0 18px 50px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.25);
}

/* ---- Buttons: gradient fills + shine sweep ---- */
.btn { position: relative; overflow: hidden; }
.btn::after {
  content: ""; position: absolute; top: 0; left: -130%; width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.45), transparent);
  transform: skewX(-20deg); transition: left .6s var(--ease);
}
.btn:hover::after { left: 130%; }
.btn-primary {
  background: linear-gradient(120deg, #1a56db, #2f74ff 55%, #0d2c66);
  background-size: 180% auto; transition: background-position .5s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
}
.btn-primary:hover { background-position: right center; }
.btn-whatsapp { background: linear-gradient(120deg, #25d366, #1aa34a); }

/* ---- Section titles: subtle gradient ink + decorative tag ---- */
.section-title {
  background: linear-gradient(120deg, var(--ink) 0%, #2b3f72 60%, var(--blue) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.section-tag {
  background: linear-gradient(120deg, var(--blue-light), #fff);
  box-shadow: inset 0 0 0 1px rgba(26,86,219,.18), 0 6px 16px rgba(26,86,219,.1);
}
.section-head .section-title::after {
  content: ""; display: block; width: 64px; height: 4px; margin: 1rem auto 0;
  border-radius: 4px; background: linear-gradient(90deg, var(--blue), var(--gold));
}

/* ---- Soft decorative blobs behind alt sections ---- */
.section-alt { position: relative; overflow: hidden; }
.section-alt::before {
  content: ""; position: absolute; width: 420px; height: 420px; top: -160px; right: -140px;
  background: radial-gradient(circle, rgba(26,86,219,.08), transparent 70%); border-radius: 50%; z-index: 0;
}
.section-alt::after {
  content: ""; position: absolute; width: 360px; height: 360px; bottom: -150px; left: -120px;
  background: radial-gradient(circle, rgba(212,165,49,.1), transparent 70%); border-radius: 50%; z-index: 0;
}
.section-alt .container { position: relative; z-index: 1; }

/* ---- Amenity cards: gradient border + glow ---- */
.amenity {
  background: linear-gradient(#fff, #fff) padding-box,
             linear-gradient(135deg, var(--line), var(--line)) border-box;
  border: 1.5px solid transparent;
}
.amenity:hover {
  background: linear-gradient(#fff, #fff) padding-box,
             linear-gradient(135deg, var(--blue), var(--gold)) border-box;
  box-shadow: 0 22px 44px rgba(16,42,110,.16);
}
.amenity:hover h4 { color: var(--blue-dark); }
.amenity-icon { box-shadow: inset 0 0 0 1px rgba(26,86,219,.08); }
.amenity:hover .amenity-icon { box-shadow: 0 12px 22px rgba(26,86,219,.35); }

/* ---- Gallery: gradient frame + zoom-icon badge ---- */
.gallery-item { box-shadow: 0 10px 30px rgba(16,42,110,.1); }
.gallery-item::after {
  content: "\f00e"; font-family: "Font Awesome 6 Free"; font-weight: 900;
  position: absolute; top: 14px; right: 14px; width: 38px; height: 38px;
  display: grid; place-items: center; border-radius: 50%; color: #fff;
  background: rgba(26,86,219,.85); backdrop-filter: blur(4px);
  transform: scale(0) rotate(-30deg); transition: transform .4s var(--ease); z-index: 2;
}
.gallery-item:hover::after { transform: scale(1) rotate(0); }

/* ---- Pricing card: gradient halo + glass ---- */
.price-card {
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, var(--gold), var(--blue)) border-box;
  border: 2px solid transparent;
  box-shadow: 0 30px 70px rgba(16,42,110,.2);
}
.price-card::before {
  content: ""; position: absolute; inset: -2px; border-radius: var(--radius-lg);
  background: radial-gradient(400px 200px at 50% 0%, rgba(212,165,49,.18), transparent 70%);
  z-index: -1;
}
.price-amount {
  background: linear-gradient(120deg, var(--blue-dark), var(--blue));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent;
}
.price-amount-text { font-size: 1.9rem; letter-spacing: -.5px; }
.price-ribbon { box-shadow: 0 6px 16px rgba(212,165,49,.5); }

/* ---- Why / testimonial cards: lift + glow + gradient icon halo ---- */
.why-card, .testimonial { transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease); }
.why-card:hover, .testimonial:hover { box-shadow: 0 26px 50px rgba(16,42,110,.16); border-color: transparent; }
.why-icon { position: relative; }
.why-icon::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  box-shadow: 0 0 0 0 rgba(26,86,219,.4); transition: box-shadow .4s var(--ease);
}
.why-card:hover .why-icon::after { box-shadow: 0 0 0 8px rgba(26,86,219,.12); }
.testimonial-avatar { box-shadow: 0 8px 18px rgba(26,86,219,.3); }

/* ---- Contact form: gradient frame ---- */
.contact-form {
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, rgba(26,86,219,.25), rgba(212,165,49,.25)) border-box;
  border: 1.5px solid transparent;
  box-shadow: 0 24px 60px rgba(16,42,110,.12);
}
.contact-icon { transition: transform .3s var(--ease), background .3s; }
.contact-card:hover .contact-icon { background: linear-gradient(135deg, var(--blue), var(--blue-dark)); color: #fff; transform: rotate(-6deg); }

/* ---- Nav: glass + gradient logo glow ---- */
.header.scrolled { background: rgba(255,255,255,.82); -webkit-backdrop-filter: blur(16px) saturate(140%); backdrop-filter: blur(16px) saturate(140%); }
.logo-mark { background: linear-gradient(135deg, #2f74ff, var(--blue-dark)); position: relative; }
.logo-mark::after { content: ""; position: absolute; inset: 0; border-radius: inherit; box-shadow: inset 0 1px 0 rgba(255,255,255,.4); }

/* ---- Footer: gradient depth + top accent line ---- */
.footer { background: linear-gradient(180deg, #0d1c4d, var(--blue-dark)); position: relative; }
.footer::before {
  content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--gold), var(--blue));
}

/* ---- Floating buttons: gradient + glow ---- */
.whatsapp-float { background: linear-gradient(135deg, #25d366, #1aa34a); box-shadow: 0 10px 30px rgba(37,211,102,.55); }
.back-to-top { background: linear-gradient(135deg, var(--blue), var(--blue-dark)); }

/* ---- Selection colour ---- */
::selection { background: var(--gold); color: #fff; }

/* ---- Pretty scrollbar ---- */
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--bg-alt); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--blue), var(--blue-dark)); border-radius: 10px; border: 2px solid var(--bg-alt); }

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .amenities-grid { grid-template-columns: repeat(3, 1fr); }
  .about-grid, .location-grid, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-media img { height: 380px; }
  .why-grid, .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .hero { background-attachment: scroll; }
  .nav-menu {
    position: fixed; top: 0; right: -100%; width: 75%; max-width: 320px; height: 100vh;
    background: #fff; flex-direction: column; align-items: flex-start; justify-content: flex-start;
    padding: 5rem 1.8rem; gap: .4rem; box-shadow: var(--shadow-lg); transition: right .4s var(--ease); z-index: 1100;
  }
  .nav-menu.open { right: 0; }
  .nav-menu .nav-link { color: var(--ink); width: 100%; padding: .8rem 0; font-size: 1.05rem; border-bottom: 1px solid var(--line); }
  .nav-menu .nav-link::after { display: none; }
  .nav-toggle { display: block; z-index: 1200; }
  .nav-menu.open ~ .nav-toggle, .header .nav-toggle { color: var(--ink); }
  .nav-actions .btn-outline { display: none; }
  .hero-stats { flex-wrap: wrap; gap: 1rem 1.4rem; justify-content: center; }
  .stat-divider { display: none; }
}

@media (max-width: 560px) {
  .section { padding: 4rem 0; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid, .testimonial-grid, .footer-grid, .location-list { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .about-badge { left: 50%; transform: translateX(-50%); bottom: -26px; }
  .price-card { padding: 2rem 1.4rem; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
