
:root {
  --ink: #0f1115;
  --ember: #e91e63;
  --gold: #22c55e;
  --smoke: #1a1d22;
  --paper: #f5f5f5;
  --silver: #ffffff;
  --paper-dim: #b8b8b8;
  --line: rgba(255, 255, 255, 0.12);
  --line-soft: rgb(255, 255, 255, 0.06);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--paper);
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

h1, h2, h3, .display {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  letter-spacing: -0.01em;
}

a { color: inherit; text-decoration: none; }

/* ============ TOP STRIP ============ */
.top-strip {
  background: var(--ember);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 600;
  text-align: center;
  padding: 9px 16px;
  letter-spacing: 0.02em;
}

/* ============ NAV ============ */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 48px;
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.brand-mark {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 1.6rem;
  color: var(--gold);
}
.brand-sub {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(243,237,226,0.5);
}
.nav-links {
  display: flex;
  gap: 36px;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}
.nav-links a { opacity: 0.75; transition: opacity 0.2s; }
.nav-links a:hover { opacity: 1; color: var(--gold); }
.nav-cta {
  display: flex;
  gap: 10px;
}
.btn-call, .btn-wa {
  padding: 10px 20px;
  border-radius: 2px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.btn-call { background: transparent; border: 1px solid var(--line); }
.btn-wa { background: var(--ember); color: var(--ink); }
.hamburger { display: none; font-size: 1.5rem; cursor: pointer; }

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 90px 48px 70px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -40%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(214,69,44,0.18), transparent 70%);
  pointer-events: none;
}
.hero-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--gold); }
.hero h1 {
  font-size: clamp(2.6rem, 4.2vw, 4rem);
  line-height: 1.06;
  margin-bottom: 26px;
}
.hero h1 em { font-style: italic; color: var(--ember); }
.hero p {
  font-size: 1.05rem;
  color: rgba(243,237,226,0.72);
  max-width: 480px;
  margin-bottom: 36px;
  font-weight: 300;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  background: var(--ember);
  color: var(--ink);
  padding: 16px 32px;
  border-radius: 2px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.2s;
}
.btn-primary:hover { transform: translateY(-2px); }
.btn-ghost {
  border: 1px solid var(--line);
  padding: 16px 32px;
  border-radius: 2px;
  font-weight: 600;
  font-size: 0.9rem;
}
.hero-stats {
  display: flex;
  gap: 38px;
  margin-top: 50px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.stat-num {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  color: var(--gold);
  display: block;
}
.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(243,237,226,0.5);
}

.hero-visual {
  position: relative;
  height: 480px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.85) contrast(1.05); }
.hero-visual-tag {
  position: absolute;
  bottom: 20px; left: 20px;
  background: rgba(21,19,26,0.85);
  backdrop-filter: blur(8px);
  padding: 14px 18px;
  border-radius: 3px;
  border: 1px solid var(--line);
  font-size: 0.78rem;
}
.hero-visual-tag strong { color: var(--gold); display: block; font-family: 'Fraunces', serif; font-size: 1rem; margin-bottom: 2px; }

/* ============ NOTICE BAR ============ */
.notice {
  background: var(--smoke);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 14px 48px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.85rem;
}
.notice-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--ember);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}
.notice strong { color: var(--gold); }

/* ============ SECTION COMMON ============ */
.section { padding: 80px 48px; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 44px;
  flex-wrap: wrap;
  gap: 20px;
}
.section-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--ember); }
.section-title { font-size: clamp(1.8rem, 3vw, 2.4rem); }
.section-sub { color: rgba(243,237,226,0.6); max-width: 460px; font-size: 0.95rem; }

/* ============ FILTER BAR ============ */
.filter-bar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.filter-bar select {
  background: var(--smoke);
  color: var(--paper);
  border: 1px solid var(--line);
  padding: 11px 18px;
  border-radius: 2px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.84rem;
}

/* ============ PROFILE GRID ============ */
.profile-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.profile-card {
  background: var(--smoke);
  border: 1px solid var(--line);
  border-radius: 3px;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}
.profile-card:hover { border-color: var(--ember); transform: translateY(-3px); }
.profile-img { position: relative; height: 220px; overflow: hidden; }
.profile-img img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.9); }
.verified-tag {
  position: absolute;
  top: 12px; left: 12px;
  background: rgba(21,19,26,0.9);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 2px;
}
.profile-rate {
  position: absolute;
  bottom: 12px; right: 12px;
  background: var(--ember);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 5px 12px;
  border-radius: 2px;
}
.profile-body { padding: 18px; }
.profile-name {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  margin-bottom: 4px;
}
.profile-age { font-size: 0.78rem; color: rgba(243,237,226,0.5); margin-bottom: 10px; }
.profile-desc {
  font-size: 0.82rem;
  color: rgba(243,237,226,0.65);
  line-height: 1.55;
  margin-bottom: 14px;
  min-height: 60px;
}
.profile-actions { display: flex; gap: 8px; }
.profile-actions a {
  flex: 1;
  text-align: center;
  padding: 9px;
  border-radius: 2px;
  font-size: 0.78rem;
  font-weight: 600;
}
.act-call { background: var(--gold); color: var(--ink); }
.act-wa { background: rgba(243,237,226,0.08); border: 1px solid var(--line); }

/* ============ CATEGORY STRIP ============ */
.category-strip {
  background: var(--paper);
  color: var(--ink);
  padding: 70px 48px;
}
.category-strip .section-eyebrow { color: var(--ember); }
.category-strip .section-title { color: var(--ink); }
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
}
.cat-tile {
  background: var(--paper);
  padding: 32px 26px;
  transition: background 0.2s;
}
.cat-tile:hover { background: var(--paper-dim); }
.cat-num { font-size: 0.72rem; color: var(--ember); font-weight: 700; margin-bottom: 14px; letter-spacing: 0.04em; }
.cat-name { font-family: 'Fraunces', serif; font-size: 1.2rem; margin-bottom: 10px; }
.cat-desc { font-size: 0.84rem; color: rgba(21,19,26,0.6); line-height: 1.55; }

/* ============ RATE TABLE ============ */
.rate-section { background: var(--ink); }
.rate-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}
.rate-table th {
  text-align: left;
  padding: 16px 20px;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--line);
}
.rate-table td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
}
.rate-table tr:hover td { background: rgba(255,255,255,.08); }
.rate-table .price { color: var(--ember); font-weight: 700; font-family: 'Fraunces', serif; }

/* ============ STORY / TEXT BLOCKS ============ */
.story-block {
  max-width: 720px;
  margin-bottom: 40px;
  
}
.story-block h2 {
  font-size: 1.5rem;
  margin-bottom: 14px;
  color: rgb(24, 228, 61)
}
.story-block p {
  color: rgb(255, 255, 255);
  font-size: 0.95rem;
  line-height: 1.75;

}
.footer-botton {
  position: fixed;
  bottom: 18px;
  left: 0;
  width: 100%;
  z-index: 9999;
  pointer-events: none;
}

.sticky_items {
  width: 100%;
  max-width: 100%;
  padding: 0 22px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between; /* ek left, ek right */
  align-items: center;
  pointer-events: auto;
}

.call_cta,
.wts_cta {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.28);
  transition: all 0.25s ease;
}

.call_cta {
  background: #d4af37; /* gold */
  color: #111 !important;
}

.wts_cta {
  background: #25D366; /* whatsapp green */
  color: #fff !important;
}

.call_cta i,
.wts_cta i {
  font-size: 24px;
  line-height: 1;
}

.call_cta:hover,
.wts_cta:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}

@media (max-width: 480px) {
  .footer-bottom {
    bottom: 14px;
  }

  .sticky_items {
    padding: 0 16px;
  }

  .call_cta,
  .wts_cta {
    width: 52px;
    height: 52px;
  }

  .call_cta i,
  .wts_cta i {
    font-size: 22px;
  }
}
/* ============ AREAS ============ */
.areas-section { background: var(--smoke); }
.area-tags { display: flex; flex-wrap: wrap; gap: 30px; }
.area-tag {
  border: 2px solid var(--paper);
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 0.85rem;
  color: rgba(243,237,226,0.8);
}
.area-tag.lit { border-color: var(--gold); color: var(--paper); background-color: var(--ember); }

.city-grid{
  display:grid;
  grid-template-columns:repeat(6, minmax(140px, 1fr));
  gap:15px;
  margin-top:20px;
}

.city-box{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:20px;
  padding:10px 10px;
  text-align:center;
  text-decoration:none;
  font-size:20px;
  font-weight:600;
  color:#fff;
  background:#ff1971;
  border:2px solid #19e37d;
  border-radius:10px;
  transition:0.3s ease;
}

.city-box:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 24px rgba(0,0,0,0.25);
}

@media (max-width: 1200px){
  .city-grid{
    grid-template-columns:repeat(5, minmax(130px, 1fr));
  }
}

@media (max-width: 992px){
  .city-grid{
    grid-template-columns:repeat(4, minmax(120px, 1fr));
  }
}

@media (max-width: 768px){
  .city-grid{
    grid-template-columns:repeat(3, minmax(110px, 1fr));
    gap:14px;
  }

  .city-box{
    font-size:17px;
    min-height:58px;
    padding:12px;
  }
}

@media (max-width: 480px){
  .city-grid{
    grid-template-columns:repeat(2, minmax(120px, 1fr));
  }
}
/* ============ HOW IT WORKS ============ */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.step {
  border-left: 2px solid var(--ember);
  padding-left: 20px;
}
.step-num { font-family: 'Fraunces', serif; font-style: italic; font-size: 1.8rem; color: var(--ember); display: block; margin-bottom: 12px; }
.step h3 { font-size: 1.05rem; margin-bottom: 8px; }
.step p { font-size: 0.84rem; color: rgba(243,237,226,0.6); line-height: 1.6; }

/* ============ FAQ ============ */
.faq-section { background: var(--paper); color: var(--ink); }
.faq-section .section-eyebrow { color: var(--ember); }
.faq-section .section-title { color: var(--ink); }
.faq-item {
  border-bottom: 1px solid var(--line-soft);
  padding: 22px 0;
  cursor: pointer;
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Fraunces', serif;
  font-size: 1.08rem;
}
.faq-q .icon { font-size: 1.3rem; color: var(--ember); transition: transform 0.3s; }
.faq-item.open .faq-q .icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  font-size: 0.9rem;
  color: rgba(21,19,26,0.65);
  line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 300px; padding-top: 14px; }

/* ============ TESTIMONIALS ============ */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testi-card {
  background: var(--smoke);
  border: 1px solid var(--line);
  padding: 28px;
  border-radius: 3px;
  position: relative;
}
.testi-quote { font-family: 'Fraunces', serif; font-style: italic; font-size: 2.4rem; color: var(--ember); line-height: 0.5; display: block; margin-bottom: 10px; }
.testi-text { font-size: 0.88rem; color: rgba(243,237,226,0.7); line-height: 1.65; margin-bottom: 18px; }
.testi-name { font-size: 0.82rem; color: var(--gold); font-weight: 600; }

/* ============ CTA BAND ============ */
.cta-band {
  background: var(--ember);
  color: var(--ink);
  padding: 70px 48px;
  text-align: center;
}
.cta-band h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 16px; }
.cta-band p { opacity: 0.8; margin-bottom: 32px; }
.cta-band .btn-primary { background: var(--ink); color: var(--paper); }

/* ============ FOOTER ============ */
footer {
  background: var(--ink);
  padding: 60px 48px 30px;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .brand-mark { font-size: 1.5rem; }
.footer-brand p { font-size: 0.85rem; color: rgba(243,237,226,0.5); margin-top: 14px; line-height: 1.7; max-width: 280px; }
.footer-col h4 {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-col a { display: block; font-size: 0.85rem; color: rgba(243,237,226,0.6); margin-bottom: 10px; }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(243,237,226,0.4);
  flex-wrap: wrap;
  gap: 10px;
}

/* ============ FLOATING BUTTONS ============ */
.float-call, .float-wa {
  position: fixed;
  right: 26px;
  width: 54px; height: 54px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  z-index: 999;
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}
.float-call { bottom: 92px; background: var(--gold); color: var(--ink); }
.float-wa { bottom: 26px; background: #25D366; color: white; }



/* ============ MOBILE MENU ============ */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 9999;
  padding: 40px;
  flex-direction: column;
}
.mobile-menu.open { display: flex; }
.mobile-menu-close { align-self: flex-end; font-size: 1.8rem; background: none; border: none; color: var(--paper); margin-bottom: 40px; }
.mobile-menu a { font-family: 'Fraunces', serif; font-size: 1.8rem; padding: 14px 0; border-bottom: 1px solid var(--line); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
  .profile-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding: 60px 24px; }
  .hero-visual { height: 320px; order: -1; }
  nav { padding: 18px 24px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: block; }
  .section { padding: 56px 24px; }
  .profile-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .testi-grid { grid-template-columns: 1fr; }
  .category-strip { padding: 50px 24px; }
}
@media (max-width: 560px) {
  .hero h1 { font-size: 2rem; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .profile-grid { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .rate-table { font-size: 0.8rem; }
  .rate-table th, .rate-table td { padding: 12px 10px; }
  .footer-grid { grid-template-columns: 1fr; }
}