/* ==========================================================================
   Endless Blue Hostel & Villa — Modern Design System
   Brand: "Endless Blue" — premium coastal blue
   ========================================================================== */

:root {
  /* Brand palette */
  --ink: #0c1f2e;
  --ink-soft: #3a4b58;
  --muted: #6b7c89;
  --brand-900: #07243d;
  --brand-800: #0a3357;
  --brand-700: #0f4c81;
  --brand-600: #1769a8;
  --brand-500: #1f8fcb;
  --brand-400: #3aa7d8;
  --brand-300: #58d8f1;
  --brand-200: #a9e7f6;
  --brand-50: #eef9fd;
  --sand: #f1e9db;
  --cream: #faf6ef;
  /* Muted brass — used sparingly as a quiet luxury accent */
  --gold: #b8924e;
  /* "accent" tokens repointed to refined blue (minimal-luxury, no coral) */
  --accent: #0f4c81;
  --accent-600: #0a3357;
  --accent-700: #07243d;
  --accent-50: #eef9fd;
  --accent-100: #dcecf6;
  --bg: #ffffff;
  --bg-soft: #f7f4ed;
  --bg-warm: #faf6ef;
  --line: #e8e2d6;
  --white: #ffffff;

  /* Effects — softer & lighter for a calm, premium feel */
  --shadow-sm: 0 1px 2px rgba(12, 31, 46, .04), 0 2px 10px rgba(12, 31, 46, .05);
  --shadow-md: 0 10px 34px rgba(12, 31, 46, .08);
  --shadow-lg: 0 24px 60px rgba(12, 31, 46, .12);
  --radius: 10px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --container: 1180px;

  /* Gradients — subtle, low-contrast depth (minimal-luxury) */
  --grad-soft: linear-gradient(165deg, #ffffff 0%, var(--bg-soft) 55%, var(--cream) 100%);
  --grad-warm: linear-gradient(160deg, var(--cream) 0%, var(--sand) 100%);
  --grad-card: linear-gradient(158deg, #ffffff 0%, #fbf8f1 100%);
  --grad-tile: linear-gradient(150deg, #ffffff 0%, var(--brand-50) 100%);
  --grad-tile-warm: linear-gradient(150deg, #ffffff 0%, var(--cream) 100%);
  --grad-brand: linear-gradient(135deg, var(--brand-900) 0%, var(--brand-700) 58%, var(--brand-500) 100%);
  --grad-ink: linear-gradient(155deg, #0c3052 0%, var(--brand-900) 55%, #051624 100%);

  /* Type — elegant high-style serif + quiet geometric sans */
  --font-head: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Jost", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  font-size: 1rem;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  color: var(--brand-900);
  line-height: 1.1;
  letter-spacing: -.005em;
  font-weight: 600;
}

h1 { font-size: clamp(1.95rem, 3.8vw, 3rem); font-weight: 500; }
h2 { font-size: clamp(1.5rem, 2.6vw, 2.05rem); }
h3 { font-size: clamp(1.05rem, 1.6vw, 1.3rem); }

p { color: var(--ink-soft); }

a { text-decoration: none; color: var(--brand-600); transition: color .25s var(--ease); }
a:hover { color: var(--brand-800); }

img { max-width: 100%; height: auto; }

.container { max-width: var(--container); }

section { scroll-margin-top: 90px; }

/* Minimal-luxury whitespace */
.py-5 { padding-top: 2.5rem !important; padding-bottom: 2.5rem !important; }
.mb-5 { margin-bottom: 2rem !important; }
.mt-5 { margin-top: 2rem !important; }
@media (min-width: 768px) {
  .py-5 { padding-top: 4rem !important; padding-bottom: 4rem !important; }
}

/* Reusable section heads */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  font-family: var(--font-body);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .3em;
  font-size: .72rem;
  color: var(--gold);
  background: transparent;
  border: none;
  padding: 0;
  margin-bottom: .75rem;
}
.eyebrow::before {
  content: "";
  width: 30px; height: 1px;
  background: var(--gold);
  display: inline-block;
}

.section-lead {
  color: var(--muted);
  font-size: 1rem;
  max-width: 720px;
  margin-bottom: 0;
}

.bg-soft { background: var(--grad-soft); }
.bg-sand { background: var(--grad-warm); }

/* Warmth — thin gold underline beneath centred section titles */
.text-center > h2 { position: relative; }
.text-center > h2::after {
  content: "";
  display: block;
  width: 64px; height: 2px;
  margin: .7rem auto 0;
  background: linear-gradient(90deg, transparent, var(--gold) 35%, var(--gold) 65%, transparent);
  border-radius: 2px;
}

/* Warmth — subtle brass hairline dividers framing the tinted bands */
section.bg-soft { border-top: 1px solid #ece3d1; border-bottom: 1px solid #ece3d1; }

/* A reusable centred brass divider (eyebrow-style flourish) */
.brass-divider {
  display: flex; align-items: center; justify-content: center; gap: .8rem;
  margin: 0 auto;
}
.brass-divider::before, .brass-divider::after {
  content: ""; height: 1px; width: 48px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.brass-divider::after { background: linear-gradient(90deg, var(--gold), transparent); }
.brass-divider i { color: var(--gold); font-size: .8rem; }

/* ============================ BUTTONS ============================ */
/* Button "style 5" — gradient fill + hard offset shadow that flips on hover */
.btn-eb {
  --btn-grad: linear-gradient(135deg, var(--brand-800), var(--brand-600));
  --btn-grad-hover: linear-gradient(135deg, var(--brand-900), var(--brand-700));
  --btn-shadow: var(--gold);
  --btn-fg: #fff;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .42rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .7rem;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: .11em;
  text-align: center;
  padding: .68rem 1.12rem;
  border-radius: 6px;
  border: 1px solid transparent;
  background-color: transparent;
  background-image: var(--btn-grad);
  color: var(--btn-fg);
  cursor: pointer;
  box-shadow: .18em .18em 0 var(--btn-shadow);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background-image .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.btn-eb:hover {
  color: var(--btn-fg);
  transform: translate(.09em, .09em);
  box-shadow: -.15em -.15em 0 var(--btn-shadow);
  background-image: var(--btn-grad-hover);
}
.btn-eb:active { transform: translate(.15em, .15em); box-shadow: .02em .02em 0 var(--btn-shadow); }

/* Variants — each sets its gradient + the offset-shadow colour */
.btn-eb--accent, .btn-eb--gold {
  --btn-grad: linear-gradient(135deg, #d3a85e, var(--gold));
  --btn-grad-hover: linear-gradient(135deg, var(--gold), #9c7c3c);
  --btn-shadow: var(--brand-800);
  color: #fff;
}
.btn-eb--wa {
  --btn-grad: linear-gradient(135deg, #28bd68, #178a45);
  --btn-grad-hover: linear-gradient(135deg, #1f9d54, #115f2f);
  --btn-shadow: var(--brand-800);
}
.btn-eb--light {
  --btn-grad: linear-gradient(135deg, #ffffff, #eaf1f7);
  --btn-grad-hover: linear-gradient(135deg, #ffffff, #dfe9f1);
  --btn-shadow: var(--brand-400);
  color: var(--brand-800);
}
.btn-eb--light:hover { color: var(--brand-900); }
/* Ghost — outline that fills with gradient on hover */
.btn-eb--ghost {
  --btn-shadow: var(--gold);
  background-image: none;
  color: var(--brand-800);
  border-color: var(--brand-800);
}
.btn-eb--ghost:hover { background-image: var(--btn-grad); color: #fff; border-color: transparent; }
.btn-eb.btn-sm { padding: .5rem .82rem; font-size: .64rem; box-shadow: .14em .14em 0 var(--btn-shadow); }
.btn-eb.btn-sm:hover { box-shadow: -.12em -.12em 0 var(--btn-shadow); }

/* ============================ NAVBAR ============================ */
.eb-nav {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: rgba(255, 255, 255, .85);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s var(--ease), background .3s var(--ease);
}
.eb-nav.scrolled { box-shadow: var(--shadow-sm); background: rgba(255, 255, 255, .96); }
.eb-nav .navbar-brand img { width: 84px; transition: width .3s var(--ease); }
.eb-nav .nav-link {
  font-weight: 600;
  color: var(--ink) !important;
  margin: 0 .35rem;
  padding: .5rem .2rem !important;
  position: relative;
  font-size: .96rem;
}
.eb-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: .15rem;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .3s var(--ease);
}
.eb-nav .nav-link:hover::after,
.eb-nav .nav-link.active::after { width: 100%; }
.eb-nav .nav-link.active { color: var(--brand-800) !important; }
.eb-nav .nav-link { text-transform: uppercase; letter-spacing: .1em; font-size: .82rem; }
.eb-nav .navbar-toggler { border: none; padding: .35rem .5rem; }
.eb-nav .navbar-toggler:focus { box-shadow: none; }
.eb-nav .nav-cta { margin-left: .9rem; box-shadow: .18em .18em 0 var(--btn-shadow); }
.eb-nav .nav-cta:hover { box-shadow: -.16em -.16em 0 var(--btn-shadow); }

@media (max-width: 991.98px) {
  .eb-nav .navbar-collapse {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1rem 1.2rem;
    margin-top: .8rem;
    box-shadow: var(--shadow-md);
  }
  .eb-nav .nav-cta { margin: .6rem 0 0; display: inline-flex; }
}

/* ============================ HERO ============================ */
.eb-hero { position: relative; }
.hero-carousel .carousel-item {
  height: min(86vh, 760px);
  background-size: cover;
  background-position: center;
}
.hero-carousel .carousel-item::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(7, 36, 61, .85) 0%, rgba(7, 36, 61, .55) 45%, rgba(10, 51, 87, .28) 100%);
}
.hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  color: #fff;
  max-width: 760px;
}
.hero-content .eyebrow {
  align-self: flex-start;
  color: #fff;
}
.hero-content .eyebrow::before { background: rgba(255, 255, 255, .8); }
.hero-content h1 { color: #fff; text-shadow: 0 2px 24px rgba(0, 0, 0, .3); }
.hero-headline {
  font-family: var(--font-head);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -.005em;
  color: #fff;
  font-size: clamp(2rem, 4.4vw, 3.5rem);
  text-shadow: 0 2px 30px rgba(0, 0, 0, .3);
  margin-bottom: .6rem;
}
.hero-content .lead { font-weight: 300; }

/* Long-form SEO content helpers */
.lead-rating {
  display: inline-flex; flex-wrap: wrap; gap: .4rem 1rem; align-items: center;
  background: transparent; border: none; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  color: var(--brand-800); font-weight: 500;
  padding: .8rem 0; font-size: .9rem; letter-spacing: .02em;
}
.lead-rating .fa-star { color: var(--gold); }
.num-badge {
  flex: 0 0 auto;
  background: none; box-shadow: none;
  color: var(--gold);
  font-family: var(--font-head); font-weight: 600;
  font-size: 2.8rem; line-height: 1;
  min-width: 2.4rem;
}
.info-card {
  position: relative;
  background: var(--grad-card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.45rem; height: 100%;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  overflow: hidden;
}
.info-card::after {
  content: ""; position: absolute; left: 0; top: 0; height: 2px; width: 0;
  background: var(--gold);
  transition: width .4s var(--ease);
}
.info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--brand-200); }
.info-card:hover::after { width: 100%; }
.info-card h3 { font-size: 1.12rem; margin-bottom: .6rem; }

/* Pricing section: change only this image URL when you want a different background. */
.pricing-section {
  --pricing-bg-image: url("../images/endless-blue-hostel-anjuna-goa.webp");
  position: relative;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(250, 246, 239, .76), rgba(250, 246, 239, .62)),
    var(--pricing-bg-image) center / cover fixed;
}
.pricing-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 50% 18%, rgba(255, 255, 255, .72), rgba(250, 246, 239, .24) 42%, rgba(7, 36, 61, .3) 100%);
  pointer-events: none;
}
.pricing-section .container { position: relative; z-index: 1; }
.pricing-grid { max-width: 980px; margin-inline: auto; }
.pricing-card {
  min-height: 230px;
  padding: 1.6rem;
  background: rgba(255, 255, 255, .88);
  border-color: rgba(255, 255, 255, .68);
  box-shadow: 0 18px 44px rgba(12, 31, 46, .14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.pricing-card h3 { font-size: 1.24rem; }
.pricing-card p { font-size: .96rem; }
.info-list { list-style: none; padding: 0; margin: 0; }
.info-list li { position: relative; padding-left: 1.6rem; margin-bottom: .55rem; color: var(--ink-soft); font-size: .94rem; }
.info-list li::before {
  content: "\f3c5"; font-family: "Font Awesome 6 Free"; font-weight: 900;
  position: absolute; left: 0; top: .15rem; color: var(--brand-400); font-size: .85rem;
}
.info-list.checks li::before { content: "\f00c"; color: var(--brand-500); }
.qa-block {
  background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--brand-400);
  border-radius: var(--radius-sm); padding: 1.4rem 1.6rem; margin-bottom: 1rem;
}
.qa-block h3 { font-size: 1.12rem; margin-bottom: .5rem; color: var(--brand-800); }
.qa-block p { margin: 0; color: var(--ink-soft); }
.season-card .ic { background: var(--grad-tile-warm); color: var(--gold); border: 1px solid var(--line); box-shadow: inset 0 1px 0 #fff; }

/* ============================ PERSONA CARDS (background image + hover reveal) ============================ */
.persona-card {
  position: relative;
  height: 100%;
  min-height: 340px;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.persona-card .pc-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform .9s var(--ease);
  will-change: transform;
}
/* Overlay "curtain" — darker at the bottom so text reads; deepens on hover */
.persona-card .pc-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7, 36, 61, .12) 0%, rgba(7, 36, 61, .5) 42%, rgba(7, 36, 61, .9) 100%);
  transition: background .55s var(--ease);
}
.persona-card:hover .pc-bg { transform: scale(1.07); }
.persona-card:hover .pc-bg::after {
  background: linear-gradient(180deg, rgba(7, 36, 61, .5) 0%, rgba(7, 36, 61, .8) 38%, rgba(7, 36, 61, .97) 100%);
}
.persona-card .pc-body {
  position: relative; z-index: 1;
  padding: 1.45rem 1.35rem;
  transform: translateY(0);
  transition: transform .5s var(--ease);
}
.persona-card:hover .pc-body { transform: translateY(-4px); }
.persona-card .pc-tag {
  display: inline-flex; align-items: center; gap: .45rem;
  font-family: var(--font-body); font-weight: 600;
  text-transform: uppercase; letter-spacing: .2em; font-size: .66rem;
  color: var(--gold);
  margin-bottom: .55rem;
}
.persona-card h3 { color: #fff; font-size: 1.15rem; line-height: 1.12; margin-bottom: .55rem; }
.persona-card p {
  color: rgba(255, 255, 255, .9); margin: 0; font-size: .9rem; line-height: 1.6;
}
.persona-card .pc-tag i { color: var(--gold); }
.why-card { min-height: 305px; }
.why-card .pc-bg::after {
  background: linear-gradient(180deg, rgba(7, 36, 61, .24) 0%, rgba(7, 36, 61, .58) 38%, rgba(7, 36, 61, .94) 100%);
}
.why-card:hover .pc-bg::after {
  background: linear-gradient(180deg, rgba(7, 36, 61, .52) 0%, rgba(7, 36, 61, .82) 38%, rgba(7, 36, 61, .98) 100%);
}
.why-card .pc-body { padding: 1.35rem 1.25rem; }
.why-card .pc-tag { letter-spacing: .18em; }
.why-card--wide .pc-bg { background-position: center 58%; }
.hero-content .lead { color: rgba(255, 255, 255, .92); font-size: 1.18rem; }
.hero-phone {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  align-self: flex-start;
  font-weight: 600;
  letter-spacing: .03em;
  color: #fff;
  background: rgba(6, 28, 48, .45);
  border: 1px solid rgba(255, 255, 255, .25);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  padding: .45rem 1rem;
  border-radius: 100px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, .45);
  margin-top: .2rem;
}
.hero-phone i { color: var(--gold); }
.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next { width: 6%; z-index: 4; }

/* Gallery carousel (rooms / villa) — no dark overlay, shorter */
.gallery-carousel .carousel-item {
  height: clamp(280px, 52vw, 520px);
  background-size: cover;
  background-position: center;
}
.gallery-carousel .carousel-control-prev,
.gallery-carousel .carousel-control-next { width: 8%; }
.gallery-carousel .carousel-control-prev-icon,
.gallery-carousel .carousel-control-next-icon {
  background-color: rgba(7, 36, 61, .55);
  border-radius: 50%;
  padding: 1.1rem;
  background-size: 45%;
}

.hero-stats {
  position: relative;
  z-index: 5;
  margin-top: -52px;
}
.hero-stats .stat-card {
  background: var(--grad-card);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  padding: 1.7rem 1rem;
  text-align: center;
  height: 100%;
}
.hero-stats .stat-num {
  font-family: var(--font-head);
  font-size: 2.7rem;
  font-weight: 600;
  color: var(--brand-800);
  line-height: 1;
}
.hero-stats .stat-label { font-size: .7rem; color: var(--muted); font-weight: 500; letter-spacing: .16em; text-transform: uppercase; margin-top: .3rem; }

/* ============================ PAGE HEADER (inner pages) ============================ */
.page-hero {
  position: relative;
  background: var(--grad-brand);
  color: #fff;
  padding: clamp(3rem, 8vw, 6rem) 0 clamp(2.5rem, 6vw, 4.5rem);
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute; right: -120px; top: -120px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(88, 216, 241, .35), transparent 70%);
  border-radius: 50%;
}
.page-hero h1 { color: #fff; }
.page-hero p { color: rgba(255, 255, 255, .9); }
.page-hero .breadcrumb { --bs-breadcrumb-divider-color: rgba(255,255,255,.6); margin: 0; }
.page-hero .breadcrumb a { color: rgba(255, 255, 255, .85); }
.page-hero .breadcrumb-item.active { color: var(--brand-200); }
.page-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255, 255, 255, .5); }

/* ============================ CARDS / FEATURES ============================ */
.feature-grid .feature {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem 1.15rem;
  height: 100%;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.feature-grid .feature:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-200);
}
.feature .ic {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--grad-tile);
  color: var(--brand-700);
  border: 1px solid var(--accent-100);
  font-size: 1.12rem;
  margin-bottom: .75rem;
  box-shadow: inset 0 1px 0 #fff;
}
.feature h3 { font-size: 1.08rem; margin-bottom: .4rem; }
.feature p { font-size: .92rem; margin: 0; color: var(--muted); }

/* Amenity chip grid (rooms/villa) */
.amenity {
  text-align: center;
  background: var(--grad-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1.3rem .8rem;
  height: 100%;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.amenity:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.amenity i { font-size: 1.7rem; color: var(--brand-500); margin-bottom: .6rem; }
.amenity strong { display: block; color: var(--brand-800); font-size: .98rem; }
.amenity p { font-size: .8rem; color: var(--muted); margin: .2rem 0 0; }

/* Image with frame */
.img-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
}
.img-frame img { width: 100%; height: 100%; object-fit: fill; display: block; transition: transform .6s var(--ease); }
.img-frame:hover img { transform: scale(1.04); }
.section-media-frame {
  width: min(100%, 430px);
  margin-inline: auto;
  background: rgba(255, 255, 255, .78);
}

/* Room cards */
.room-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.room-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.room-card .room-img { aspect-ratio: 4/3; overflow: hidden; }
.room-card .room-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.room-card:hover .room-img img { transform: scale(1.06); }
.room-card .room-body { padding: 1.6rem; display: flex; flex-direction: column; flex: 1; }
.room-card .room-body h3 { font-size: 1.16rem; }
.room-card ul { list-style: none; margin: .8rem 0 0; padding: 0; }
.room-card ul li { position: relative; padding-left: 1.5rem; font-size: .9rem; color: var(--ink-soft); margin-bottom: .4rem; }
.room-card ul li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free"; font-weight: 900;
  position: absolute; left: 0; top: .1rem;
  color: var(--brand-500); font-size: .78rem;
}
.tag {
  display: inline-block;
  font-size: .7rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); background: transparent;
  border: none;
  padding: 0; margin-bottom: .55rem;
}

/* Split feature block */
.split-text ul { list-style: none; padding: 0; margin: 1rem 0 0; }
.split-text ul li { position: relative; padding-left: 1.7rem; margin-bottom: .6rem; color: var(--ink-soft); }
.split-text ul li::before {
  content: "\f560";
  font-family: "Font Awesome 6 Free"; font-weight: 900;
  position: absolute; left: 0; top: .15rem; color: var(--brand-400); font-size: .85rem;
}

/* ============================ REVIEWS ============================ */
.reviews-section {
  background:
    radial-gradient(760px 460px at 14% 6%, rgba(58, 167, 216, .16), transparent 62%),
    radial-gradient(680px 520px at 92% 96%, rgba(184, 146, 78, .12), transparent 62%),
    linear-gradient(160deg, #ffffff 0%, #eef6fb 50%, #e4eef6 100%);
  color: var(--ink);
  position: relative;
  overflow: hidden;
}
.reviews-section h2 { color: var(--brand-900); }
.reviews-section .section-lead { color: var(--muted); }
.rating-badge {
  display: inline-flex; align-items: center; gap: 1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  box-shadow: var(--shadow-md);
}
.rating-badge .score { font-family: var(--font-head); font-size: 3rem; font-weight: 600; line-height: 1; color: var(--brand-800); }
.rating-badge .stars { color: var(--gold); letter-spacing: 2px; }
.rating-badge small { color: var(--muted); }

/* ============================ FAQ ============================ */
.faq .accordion-item {
  border: 1px solid var(--line);
  border-left: 2px solid var(--gold);
  border-radius: var(--radius-sm) !important;
  margin-bottom: .9rem;
  overflow: hidden;
  background: #fff;
  box-shadow: none;
}
.faq .accordion-header { margin: 0; }
.faq .accordion-button {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--brand-900);
  background: #fff;
  padding: 1.25rem 1.5rem;
  font-size: 1.04rem;
}
.faq .accordion-button:not(.collapsed) { color: var(--brand-800); background: var(--bg-warm); box-shadow: none; }
.faq .accordion-button:focus { box-shadow: none; border: none; }
.faq .accordion-button::after {
  background-size: 1rem;
  width: 1rem; height: 1rem;
}
.faq .accordion-body { color: var(--ink-soft); padding: 0 1.3rem 1.3rem; }

/* ============================ CONTACT FORM ============================ */
.form-card {
  background: var(--grad-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  box-shadow: var(--shadow-md);
}
.form-card .form-control {
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  padding: .9rem 1rem;
  font-size: .95rem;
  font-family: var(--font-body);
  background: var(--bg-soft);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
}
.form-card .form-control:focus {
  border-color: var(--brand-400);
  box-shadow: 0 0 0 4px rgba(58, 167, 216, .15);
  background: #fff;
}
.form-card .form-control::placeholder { color: #9aabb6; }

.contact-info {
  background: linear-gradient(140deg, var(--brand-800), var(--brand-600));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  height: 100%;
}
.contact-info h2, .contact-info h3 { color: #fff; }
.contact-info p, .contact-info a { color: rgba(255, 255, 255, .9); }
.contact-info a:hover { color: var(--brand-200); }
.contact-info .ci-row { display: flex; gap: .8rem; align-items: flex-start; margin-bottom: .85rem; }
.contact-info .ci-row .ci-ic {
  flex: 0 0 auto;
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(255, 255, 255, .14);
  display: grid; place-items: center; font-size: 1.05rem; color: #fff;
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  line-height: 0;
}
.map-wrap iframe { width: 100%; height: 460px; border: 0; }

/* ============================ POLICY ============================ */
.policy-card {
  background: var(--grad-card);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 1.2rem 1.35rem;
  margin-bottom: .85rem;
  box-shadow: var(--shadow-sm);
}
.policy-card h3 { font-size: 1.08rem; margin-bottom: .8rem; }
.policy-card ul { padding-left: 1.1rem; }
.policy-card ul li { margin-bottom: .5rem; color: var(--ink-soft); }
.policy-tabs .nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  font-weight: 700;
  color: var(--brand-800);
  background: linear-gradient(145deg, #ffffff 0%, #f7fbfd 100%);
  border: 1px solid var(--brand-200);
  border-radius: 100px;
  padding: .65rem 1.5rem;
  box-shadow: 0 .22rem 0 rgba(184, 146, 78, .45), 0 10px 24px rgba(12, 31, 46, .12);
  transition: color .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease), transform .25s var(--ease);
}
.policy-tabs .nav-link:hover {
  color: var(--brand-900);
  border-color: var(--brand-400);
  box-shadow: 0 .12rem 0 rgba(184, 146, 78, .65), 0 14px 30px rgba(12, 31, 46, .16);
  transform: translateY(-3px);
}
.policy-tabs .nav-link.active {
  background: var(--grad-brand);
  color: #fff;
  border-color: transparent;
  box-shadow: .22em .22em 0 var(--gold), 0 12px 28px rgba(12, 31, 46, .18);
}

@media (max-width: 575.98px) {
  .policy-tabs .nav-item { flex: 1 1 100%; }
  .policy-tabs .nav-link { width: 100%; }
}

/* ============================ BLOGS ============================ */
.blog-feature,
.blog-card {
  background: var(--grad-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 100%;
}
.blog-feature { box-shadow: var(--shadow-md); }
.blog-feature-img,
.blog-card-img {
  display: block;
  overflow: hidden;
  height: 100%;
  min-height: 320px;
}
.blog-feature-img img,
.blog-card-img img,
.blog-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s var(--ease);
}
.blog-feature:hover .blog-feature-img img,
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-feature-body {
  padding: clamp(2rem, 5vw, 3.5rem);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.blog-card {
  display: flex;
  flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-200);
}
.blog-card-img {
  min-height: 230px;
  height: 230px;
}
.blog-card-body { padding: 1.6rem; display: flex; flex-direction: column; flex: 1; }
.blog-card h3 { font-size: 1.12rem; }
.blog-card h3 a { color: var(--brand-900); }
.blog-card h3 a:hover { color: var(--brand-700); }
.blog-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .45rem .7rem;
  color: var(--muted);
  font-size: .86rem;
  letter-spacing: .02em;
}
.blog-meta i { color: var(--gold); }
.blog-meta span { color: var(--line); }
.blog-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-weight: 700;
  color: var(--brand-700);
}
.blog-hero-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 16 / 9;
}
.blog-detail h2 {
  margin-top: 2rem;
  margin-bottom: .8rem;
}
.blog-detail .lead {
  font-size: 1.12rem;
  color: var(--ink-soft);
}
.blog-detail ul {
  padding-left: 1.2rem;
  color: var(--ink-soft);
}
.blog-detail li { margin-bottom: .5rem; }
.blog-sidebar {
  position: sticky;
  top: 110px;
}
.blog-sidebar .policy-card ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.blog-sidebar .policy-card li { margin-bottom: .65rem; }

@media (max-width: 991.98px) {
  .blog-feature-img { min-height: 260px; }
  .blog-sidebar { position: static; }
}

/* ============================ CTA BANNER ============================ */
.cta-banner {
  background: linear-gradient(120deg, var(--brand-800), var(--brand-600));
  border-radius: var(--radius-lg);
  color: #fff;
  padding: clamp(2rem, 5vw, 3.5rem);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: ""; position: absolute; left: -80px; bottom: -80px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(88, 216, 241, .3), transparent 70%);
  border-radius: 50%;
}
.cta-banner h2 { color: #fff; position: relative; }
.cta-banner p { color: rgba(255, 255, 255, .9); position: relative; }

/* ============================ FOOTER ============================ */
.eb-footer {
  background: var(--grad-ink);
  color: rgba(255, 255, 255, .88);
  padding-top: 3.5rem;
}
.eb-footer h4 { color: #fff; font-size: 1.05rem; margin-bottom: 1.1rem; font-family: var(--font-body); font-weight: 700; }
.eb-footer p,
.eb-footer li,
.eb-footer span { color: rgba(255, 255, 255, .86); }
.eb-footer a { color: rgba(255, 255, 255, .9); }
.eb-footer a:hover { color: var(--brand-300); }
.eb-footer .foot-logo {
  width: 110px;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
  opacity: .92;
}
.eb-footer ul { list-style: none; padding: 0; margin: 0; }
.eb-footer ul li { margin-bottom: .55rem; }
.eb-footer .foot-contact li { display: flex; gap: .6rem; align-items: flex-start; }
.eb-footer .foot-contact i { color: var(--brand-300); margin-top: .3rem; }
.eb-footer .socials a {
  width: 40px; height: 40px; border-radius: 50%;
  display: inline-grid; place-items: center;
  background: rgba(255, 255, 255, .08);
  color: #fff; margin-right: .5rem;
  transition: transform .25s var(--ease), background .25s var(--ease);
}
.eb-footer .socials a:hover { transform: translateY(-3px); background: var(--brand-600); }
.eb-footer .foot-bottom {
  border-top: 1px solid rgba(255, 255, 255, .18);
  margin-top: 2.5rem; padding: 1.3rem 0;
  font-size: .85rem;
}

/* ============================ FLOATING ACTIONS ============================ */
.float-actions { position: fixed; right: 18px; bottom: 18px; z-index: 1040; display: flex; flex-direction: column; gap: 12px; }
.float-actions a {
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center;
  color: #fff; font-size: 1.4rem;
  box-shadow: var(--shadow-md);
  transition: transform .25s var(--ease);
}
.float-actions a:hover { transform: scale(1.08); color: #fff; }
.float-actions .fa-wa { background: #25d366; }
.float-actions .fa-call { background: var(--brand-600); }
.fa-insta-left {
  position: fixed;
  left: 18px;
  bottom: 78px;
  z-index: 1040;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.35rem;
  background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fdf497 8%, #fd5949 38%, #d6249f 62%, #285aeb 100%);
  box-shadow: var(--shadow-md);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.fa-insta-left:hover {
  color: #fff;
  transform: scale(1.08);
  box-shadow: var(--shadow-lg);
}
.to-top {
  position: fixed; left: 18px; bottom: 18px; z-index: 1040;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--brand-700); color: #fff; border: none;
  display: grid; place-items: center; cursor: pointer;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: all .3s var(--ease); box-shadow: var(--shadow-md);
}
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }

/* ============================ SCROLL REVEAL ============================ */
/* Only hide for animation when JS is active — keeps content visible & crawlable without JS */
.reveal { opacity: 1; transform: none; transition: opacity .7s var(--ease), transform .7s var(--ease); }
html.js .reveal { opacity: 0; transform: translateY(28px); }
html.js .reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================ SUCCESS POPUP ============================ */
.eb-popup-overlay {
  position: fixed; inset: 0; background: rgba(7, 36, 61, .6);
  display: flex; align-items: center; justify-content: center; z-index: 99999; padding: 1rem;
}
.eb-popup {
  background: #fff; border-radius: var(--radius); padding: 2.2rem; text-align: center; max-width: 420px;
  box-shadow: var(--shadow-lg);
}
.eb-popup .check {
  width: 72px; height: 72px; margin: 0 auto 1rem;
  border-radius: 50%; background: #25d366; color: #fff;
  display: grid; place-items: center; font-size: 2rem;
}

/* ============================ UTIL ============================ */
.text-brand { color: var(--brand-600) !important; }
.divider { height: 1px; background: var(--line); border: 0; }
.lift { transition: transform .3s var(--ease); }
.lift:hover { transform: translateY(-4px); }

@media (max-width: 575.98px) {
  html, body { overflow-x: hidden; }
  .container { padding-left: 1rem; padding-right: 1rem; }
  .row { --bs-gutter-x: 1.25rem; }
  .py-5 { padding-top: 1.8rem !important; padding-bottom: 1.8rem !important; }
  .mb-5 { margin-bottom: 1.25rem !important; }
  .mt-5 { margin-top: 1.25rem !important; }
  h1 { font-size: 1.78rem; }
  h2 { font-size: 1.42rem; }
  h3 { font-size: 1.04rem; }
  p { line-height: 1.58; }
  .eyebrow { font-size: .62rem; letter-spacing: .22em; gap: .45rem; margin-bottom: .55rem; }
  .eyebrow::before { width: 22px; }
  .text-center > h2::after { margin-top: .5rem; }
  .section-lead { font-size: .95rem; line-height: 1.6; }
  .btn-eb {
    width: auto;
    min-width: 0;
    white-space: nowrap;
    gap: .32rem;
    font-size: .6rem;
    letter-spacing: .08em;
    padding: .55rem .72rem;
    box-shadow: .12em .12em 0 var(--btn-shadow);
  }
  .btn-eb.btn-sm { padding: .45rem .62rem; font-size: .58rem; }
  #intro .d-flex.flex-wrap { display: grid !important; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .55rem !important; margin-top: 1rem !important; }
  #intro .d-flex.flex-wrap .btn-eb { width: 100%; }
  #intro .d-flex.flex-wrap .btn-eb--wa { grid-column: 1 / -1; width: fit-content; justify-self: start; padding-inline: .9rem; }
  .lead-rating { display: flex; gap: .25rem .55rem; font-size: .78rem; padding: .6rem 0; }
  .hero-headline { font-size: 1.9rem; }
  .page-hero { padding-top: 2.5rem; padding-bottom: 2.2rem; }
  .faq .accordion-button { font-size: .96rem; padding: 1rem 1.1rem; }
  .hero-carousel .carousel-item { height: 78vh; }
  .form-card, .contact-info { padding: 1.2rem; }
  .info-card { padding: 1.2rem; }
  .persona-card { min-height: 285px; }
  .persona-card .pc-body { padding: 1.15rem 1rem; }
  .persona-card h3 { font-size: 1.02rem; }
  .persona-card p { font-size: .82rem; line-height: 1.5; }
  .why-card { min-height: 260px; }
  .why-card .pc-body { padding: 1.05rem .95rem; }
  .section-media-frame { width: 100%; }
  .pricing-section {
    background:
      linear-gradient(180deg, rgba(250, 246, 239, .86), rgba(250, 246, 239, .78)),
      var(--pricing-bg-image) center top / cover no-repeat;
  }
  .pricing-grid { max-width: 100%; }
  .pricing-card {
    min-height: auto;
    padding: 1.2rem;
    background: rgba(255, 255, 255, .9);
  }
  .pricing-card h3 { font-size: 1.12rem; }
  .pricing-card p { font-size: .9rem; line-height: 1.6; }
  .policy-tabs { gap: .55rem !important; margin-bottom: 1.2rem !important; }
  .policy-tabs .nav-item { flex: 1 1 calc(50% - .35rem); }
  .policy-tabs .nav-link {
    width: 100%;
    min-height: 0;
    white-space: nowrap;
    font-size: .78rem;
    padding: .55rem .45rem;
    box-shadow: 0 .12rem 0 rgba(184, 146, 78, .45), 0 8px 18px rgba(12, 31, 46, .1);
  }
  .policy-tabs .nav-link.active { box-shadow: .14em .14em 0 var(--gold), 0 8px 18px rgba(12, 31, 46, .14); }
  .float-actions { right: 12px; bottom: 14px; gap: 8px; }
  .float-actions a { width: 44px; height: 44px; font-size: 1.05rem; }
  .fa-insta-left { left: 12px; bottom: 68px; width: 42px; height: 42px; font-size: 1.05rem; }
  .to-top { left: 12px; bottom: 14px; width: 40px; height: 40px; }
}
