/* ===================== TOKENS ===================== */
:root {
  --maroon-900: #4a0a0a;
  --maroon-800: #5f0d10;
  --maroon-700: #7a0f14;
  --maroon-600: #98151b;
  --gold-500:   #e6b422;
  --gold-400:   #f5c847;
  --gold-300:   #f8d878;
  --gold-100:   #fff2cf;
  --cream:      #fff8ec;
  --ink:        #2a1410;
  --red-accent: #e8322a;

  --shadow-lg: 0 24px 60px rgba(40, 6, 6, .35);
  --shadow-md: 0 10px 30px rgba(40, 6, 6, .25);
  --radius:    18px;
}

/* ===================== BASE ===================== */
* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', 'Baloo Thambi 2', system-ui, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 15% -10%, rgba(230,180,34,.18), transparent 60%),
    radial-gradient(1000px 500px at 100% 0%, rgba(230,180,34,.14), transparent 55%),
    linear-gradient(160deg, #fff8ec 0%, #fdeccb 100%);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: min(1200px, 92%);
  margin-inline: auto;
}

img { max-width: 100%; display: block; }

/* ===================== HEADER ===================== */
.site-header {
  background: linear-gradient(100deg, var(--maroon-800), var(--maroon-600));
  border-bottom: 3px solid var(--gold-500);
  box-shadow: 0 4px 18px rgba(40,6,6,.28);
  position: sticky;
  top: 0;
  z-index: 40;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0;
}
.brand-logo {
  height: 64px;
  width: auto;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.3));
  background: #fff;
  padding: 6px 12px;
  border-radius: 12px;
}
.phone-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  background: linear-gradient(160deg, var(--gold-400), var(--gold-500));
  color: var(--maroon-900);
  padding: 8px 18px;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(0,0,0,.25);
  border: 2px solid var(--gold-300);
  transition: transform .15s ease, box-shadow .15s ease;
}
.phone-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(0,0,0,.3); }
.phone-icon {
  display: grid; place-items: center;
  width: 38px; height: 38px;
  background: var(--maroon-700);
  color: var(--gold-300);
  border-radius: 50%;
  animation: ring 1.8s ease-in-out infinite;
}
@keyframes ring {
  0%, 92%, 100% { transform: rotate(0); }
  94% { transform: rotate(-12deg); }
  96% { transform: rotate(12deg); }
  98% { transform: rotate(-8deg); }
}
.phone-text { display: flex; flex-direction: column; line-height: 1.1; }
.phone-text small { font-size: .68rem; font-weight: 600; opacity: .85; }
.phone-text strong { font-size: 1.05rem; font-weight: 800; letter-spacing: .3px; }

/* ===================== HERO ===================== */
.hero { padding: 40px 0 56px; position: relative; overflow: hidden; }

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(230,180,34,.35), transparent 70%);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}
.hero::before { top: -80px; left: -60px; }
.hero::after  { bottom: -100px; right: -60px; }

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 42px;
  align-items: start;
}

/* ---- LEFT ---- */
.hero-visual {
  position: relative;
  border-radius: var(--radius);
  overflow: visible;
}
.hero-image {
  width: 100%;
  border-radius: var(--radius);
  border: 4px solid var(--gold-400);
  box-shadow: var(--shadow-lg);
}

/* Badges */
.badge {
  position: absolute;
  z-index: 3;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,.35));
}
.badge-guarantee {
  top: -18px; left: -14px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(150deg, var(--maroon-700), var(--maroon-600));
  border: 3px solid var(--gold-400);
  border-radius: 999px;
  padding: 10px 18px 10px 10px;
  color: var(--gold-100);
}
.badge-star {
  display: grid; place-items: center;
  width: 40px; height: 40px;
  background: radial-gradient(circle, var(--gold-300), var(--gold-500));
  color: var(--maroon-800);
  border-radius: 50%;
  font-size: 1.3rem;
}
.badge-lines { display: flex; flex-direction: column; line-height: 1; }
.badge-top {
  font-family: 'Baloo Thambi 2', sans-serif;
  font-size: 1.15rem; font-weight: 800;
  color: var(--gold-300);
}
.badge-bottom { font-size: .92rem; font-weight: 800; letter-spacing: .6px; line-height: 1.2; text-transform: uppercase; }

.badge-rent {
  top: -18px; left: -14px;
  display: grid; place-items: center;
  width: 108px; height: 108px;
  border-radius: 50%;
  background: repeating-conic-gradient(var(--red-accent) 0deg 15deg, #c11d16 15deg 30deg);
  border: 4px solid var(--gold-400);
  color: #fff;
  text-align: center;
  transform: rotate(-8deg);
}
.badge-rent-text { font-size: .82rem; font-weight: 700; line-height: 1.15; text-shadow: 0 1px 2px rgba(0,0,0,.4); }
.badge-rent-text b { font-size: 1.15rem; letter-spacing: 1px; }

/* Location pill — anchored to bottom-right of hero image */
.location-pill {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(100deg, rgba(95,13,16,.92), rgba(152,21,27,.92));
  backdrop-filter: blur(4px);
  color: var(--gold-100);
  padding: 10px 18px;
  border-radius: 999px;
  border: 2px solid var(--gold-400);
  font-weight: 600;
  font-size: .92rem;
  box-shadow: 0 8px 20px rgba(0,0,0,.35);
}
.location-pill strong { color: var(--gold-300); font-weight: 800; }

/* Offers */
.offers-title {
  margin-top: 26px;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--maroon-800);
}
.offers-title span {
  color: var(--red-accent);
  text-decoration: underline;
  text-decoration-color: var(--gold-500);
}
.offers-grid {
  margin-top: 18px;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.offer-item {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 16px 18px;
  border-radius: 16px;
  background: linear-gradient(155deg, #fffdf7 0%, #fff2d6 100%);
  border: 2px solid var(--gold-400);
  box-shadow: 0 10px 24px rgba(90,13,13,.12);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
/* shine sweep on hover */
.offer-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -130%;
  width: 55%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.55), transparent);
  transform: skewX(-18deg);
  transition: left .65s ease;
  z-index: 1;
  pointer-events: none;
}
.offer-item:hover::before { left: 150%; }
.offer-item:hover {
  transform: translateY(-4px);
  border-color: var(--gold-500);
  box-shadow: 0 18px 34px rgba(90,13,13,.2);
}

/* Prohibition seal with topic icon */
.offer-seal {
  position: relative;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 3px solid var(--red-accent);
  background: #fff4f3;
  color: var(--maroon-700);
  box-shadow: 0 0 0 4px rgba(232,50,42,.12), 0 5px 12px rgba(90,13,13,.2);
}
.offer-icon { width: 26px; height: 26px; opacity: .85; }
/* diagonal slash across the icon = "no this" */
.offer-seal::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 56px;
  height: 4px;
  border-radius: 4px;
  background: var(--red-accent);
  box-shadow: 0 0 0 1.5px #fff4f3;
  transform: translate(-50%, -50%) rotate(45deg);
}

.offer-copy { display: flex; flex-direction: column; gap: 2px; }
/* NO — the star of each card */
.offer-no {
  align-self: flex-start;
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .5px;
  color: var(--red-accent);
  text-shadow: 0 1px 0 rgba(255,255,255,.6);
}
.offer-label {
  font-weight: 800;
  font-size: 1.05rem;
  line-height: 1.15;
  color: var(--maroon-800);
}

.tnc-note {
  margin-top: 12px;
  font-size: .72rem;
  font-style: italic;
  color: #8a736c;
  letter-spacing: .3px;
}

/* ---- RIGHT: FORM ---- */
.hero-right { position: relative; z-index: 2; }
.form-card {
  background: #fff;
  border-radius: 22px;
  border: 3px solid var(--gold-400);
  box-shadow: var(--shadow-lg);
  padding: 28px 26px 22px;
  position: sticky;
  top: 92px;
}
.form-head { text-align: center; margin-bottom: 18px; }
.form-title {
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--maroon-800);
  line-height: 1.1;
}
.form-sub { margin-top: 8px; color: #6a4a44; font-size: .95rem; }
.form-sub b { color: var(--red-accent); }

.field { margin-bottom: 14px; }
.field label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--maroon-800);
  margin-bottom: 6px;
}
.req { color: var(--red-accent); }
.field input,
.field textarea {
  width: 100%;
  font: inherit;
  font-size: .98rem;
  padding: 12px 14px;
  border: 1.5px solid #e4d3ab;
  border-radius: 12px;
  background: #fffdf7;
  color: var(--ink);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(230,180,34,.25);
}
.field textarea { resize: vertical; }

/* Inline validation errors */
.input-error {
  border-color: var(--red-accent) !important;
  background: #fff6f5 !important;
}
.input-error:focus {
  box-shadow: 0 0 0 3px rgba(232,50,42,.20) !important;
}
.field-error {
  color: var(--red-accent);
  font-size: .78rem;
  font-weight: 500;
  margin-top: 5px;
  line-height: 1.3;
}

/* Honeypot — hidden from humans */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  opacity: 0;
  overflow: hidden;
}

.consent-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 6px 0 16px;
  font-size: .88rem;
  color: #4a3530;
  cursor: pointer;
}
.consent-check input { margin-top: 3px; width: 18px; height: 18px; accent-color: var(--maroon-700); flex: 0 0 auto; }

.submit-btn {
  width: 100%;
  font: inherit;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: .3px;
  color: var(--maroon-900);
  background: linear-gradient(160deg, var(--gold-300), var(--gold-500));
  border: 2px solid var(--gold-300);
  border-radius: 14px;
  padding: 15px;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(230,180,34,.4);
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}
.submit-btn:hover { transform: translateY(-2px); filter: brightness(1.05); box-shadow: 0 14px 30px rgba(230,180,34,.5); }
.submit-btn:active { transform: translateY(0); }

.form-msg {
  margin-top: 12px;
  color: var(--red-accent);
  font-size: .88rem;
  font-weight: 600;
  text-align: center;
}
.privacy-note {
  margin-top: 14px;
  font-size: .76rem;
  color: #8a736c;
  text-align: center;
  line-height: 1.5;
}

.form-phone-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px dashed #e4d3ab;
  text-decoration: none;
  color: var(--maroon-800);
  font-size: .95rem;
}
.form-phone-cta strong { color: var(--red-accent); font-size: 1.05rem; }

/* ===================== FOOTER ===================== */
.site-footer {
  background: linear-gradient(100deg, var(--maroon-900), var(--maroon-700));
  color: #e9d6c8;
  padding: 30px 0 26px;
  border-top: 3px solid var(--gold-500);
}
.footer-legal-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}
.legal-text { font-size: .78rem; line-height: 1.6; opacity: .85; flex: 1 1 auto; }
.legal-certs {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: right;
  font-size: .8rem;
  white-space: nowrap;
}
.legal-certs strong { color: var(--gold-300); margin-bottom: 3px; font-size: .82rem; letter-spacing: .5px; }

@media (max-width: 760px) {
  .footer-legal-row { flex-direction: column; gap: 18px; }
  .legal-certs { text-align: left; }
}
.copyright { margin-top: 18px; font-size: .78rem; opacity: .7; }

/* ===================== FLOATING WHATSAPP ===================== */
.wa-float {
  position: fixed;
  right: 20px;
  bottom: 170px;
  z-index: 60;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  border-radius: 50%;
  box-shadow: 0 8px 22px rgba(37,211,102,.45);
  transition: transform .15s ease, box-shadow .15s ease;
}
.wa-float:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(37,211,102,.55); }
.wa-float svg { flex: 0 0 auto; }

@media (max-width: 560px) {
  .wa-float { right: 16px; bottom: 20px; width: 52px; height: 52px; }
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 54px; }
  .form-card { position: static; }
  .badge-rent { width: 92px; height: 92px; }
}
@media (max-width: 560px) {
  /* keep header on one row with a bigger, clearer logo */
  .header-inner { padding: 10px 0; gap: 10px; }
  .brand-logo { height: 52px; padding: 6px 12px; }
  .phone-cta { padding: 6px 14px 6px 6px; gap: 8px; }
  .phone-icon { width: 36px; height: 36px; }
  .phone-text small { display: none; }
  .phone-text strong { font-size: .95rem; }

  .offers-grid { grid-template-columns: 1fr; }
  .form-title { font-size: 1.45rem; }
  .badge-guarantee { padding: 8px 14px 8px 8px; }
  .badge-star { width: 34px; height: 34px; font-size: 1.1rem; }
  .badge-top { font-size: 1rem; }
}
@media (max-width: 400px) {
  /* very narrow: keep logo prominent, collapse phone to icon-only */
  .brand-logo { height: 46px; padding: 5px 9px; }
  .phone-text { display: none; }
  .phone-cta { padding: 6px; }
}
