<style>
/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { max-width: 100%; display: block; }

/* ── TOKENS ── */
:root {
  --red:       #c8102e;
  --red-dark:  #a00d24;
  --gold:      #f5c200;
  --green:     #1a7a3c;
  --green-wa:  #25d366;
  --black:     #111;
  --white:     #fff;
  --gray-lt:   #f5f5f5;
  --gray:      #e0e0e0;
  --radius:    8px;
  --shadow:    0 4px 20px rgba(0,0,0,.15);
}

/* ── BASE ── */
body {
  font-family: 'Baloo 2', 'Noto Sans Malayalam', sans-serif;
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
  font-size: 14px;
  line-height: 1.5;
}

/* ══════════════════════════════
   MOBILE-FIRST HAMBURGER NAV
══════════════════════════════ */
.topbar {
  display: none; /* shown on mobile only */
  background: var(--red);
  color: #fff;
  padding: 10px 16px;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 999;
}
.topbar .brand { font-family: 'Oswald', sans-serif; font-size: 18px; font-weight: 700; }
.topbar .call-btn {
  background: var(--gold);
  color: var(--black);
  border: none;
  border-radius: 6px;
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: .5px;
}

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
  background: var(--white);
}

.hero-left {
  padding: 28px 32px 28px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
}

/* Logo */
.logo-row { display: flex; align-items: center; gap: 10px; }
.logo-icon {
  background: var(--red);
  border-radius: 10px;
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}
.logo-text h1 {
  font-family: 'Oswald', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--red);
  line-height: 1.05;
  letter-spacing: 1px;
}
.logo-text span {
  display: block;
  font-size: 11px;
  color: #888;
  font-style: italic;
  margin-top: 2px;
}

/* Headline */
.hero-headline h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--black);
  text-transform: uppercase;
}
.hero-headline h2 em { color: var(--red); font-style: normal; }
.hero-headline .ml-sub {
  font-size: 14px;
  color: #333;
  margin-top: 6px;
  font-weight: 600;
}

/* Badges */
.feature-badges {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 9px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  color: var(--black);
}
.badge .ico {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--gray);
  display: flex; align-items: center; justify-content: center;
  font-size: 17px;
}

/* CTA row */
.cta-row { display: flex; gap: 8px; flex-wrap: wrap; }
.btn {
  padding: 11px 18px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 12px;
  cursor: pointer;
  border: none;
  display: flex; align-items: center; gap: 7px;
  text-decoration: none;
  letter-spacing: .5px;
  transition: opacity .2s, transform .15s;
  white-space: nowrap;
}
.btn:hover { opacity: .88; transform: translateY(-1px); }
.btn-wa    { background: var(--green-wa); color: #fff; }
.btn-call  { background: var(--red);      color: #fff; }
.btn-visit { background: var(--black);    color: #fff; }

/* Hero right */
.hero-right {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg,#f8ede0,#f0dcc8);
  display: flex; align-items: center; justify-content: center;
  font-size: 110px;
}

.location-pill {
  position: absolute;
  top: 14px; right: 0;
  background: var(--red);
  color: #fff;
  padding: 9px 18px 9px 12px;
  font-weight: 700;
  font-size: 13px;
  border-radius: 8px 0 0 8px;
  display: flex; gap: 6px; align-items: center;
  line-height: 1.3;
}
.location-pill .ml { font-size: 11px; opacity: .9; }

.sale-badge {
  position: absolute;
  bottom: 24px; right: 18px;
  background: var(--gold);
  border-radius: 12px;
  padding: 12px 16px;
  text-align: center;
  box-shadow: var(--shadow);
  transform: rotate(-2deg);
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { transform: rotate(-2deg) scale(1); }
  50%      { transform: rotate(-2deg) scale(1.05); }
}
.sale-badge .s-mega  { font-size: 14px; font-weight: 800; color: var(--red); }
.sale-badge .s-main  { font-size: 30px; font-weight: 900; color: var(--black); line-height: 1.1; }
.sale-badge .s-label {
  font-size: 13px; font-weight: 800; color: #fff;
  background: var(--red); padding: 2px 9px; border-radius: 4px;
  display: inline-block; margin-top: 4px; letter-spacing: 1px;
}
.sale-badge .s-lto {
  font-size: 9px; font-weight: 700; color: var(--red);
  border: 2px solid var(--red); border-radius: 4px;
  padding: 2px 7px; display: inline-block; margin-top: 5px; letter-spacing: .8px;
  text-transform: uppercase;
}

/* ══════════════════════════════
   RED BANNER
══════════════════════════════ */
.red-banner {
  background: var(--red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  gap: 12px;
  flex-wrap: wrap;
}
.rb-left  { font-size: 28px; font-weight: 900; font-family: 'Noto Sans Malayalam', sans-serif; }
.rb-mid   { font-size: 14px; font-weight: 700; line-height: 1.5; flex: 1; min-width: 160px; }
.enquiry-pill {
  background: var(--gold);
  color: var(--black);
  padding: 11px 20px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 14px;
  text-align: center;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  line-height: 1.4;
  transition: transform .15s;
}
.enquiry-pill:hover { transform: scale(1.04); }

/* ══════════════════════════════
   COLLECTIONS
══════════════════════════════ */
.collections { padding: 36px 24px; background: var(--white); }

.section-title { text-align: center; margin-bottom: 24px; }
.section-title h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 20px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
}
.section-title p { font-size: 13px; color: #666; margin-top: 4px; }
.section-title .line {
  width: 56px; height: 3px;
  background: var(--red);
  border-radius: 2px;
  margin: 8px auto 0;
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
}
.coll-card {
  text-align: center;
  cursor: pointer;
  transition: transform .2s;
  border-radius: var(--radius);
  padding: 6px;
}
.coll-card:hover { transform: translateY(-5px); }
.coll-card .img-box {
  border-radius: var(--radius);
  overflow: hidden;
  height: 110px;
  background: var(--gray-lt);
  display: flex; align-items: center; justify-content: center;
  font-size: 38px;
  border: 2px solid transparent;
  transition: border-color .2s;
}
.coll-card:hover .img-box { border-color: var(--red); }
.coll-card .name-en {
  font-size: 10px; font-weight: 800;
  text-transform: uppercase; margin-top: 8px; color: var(--black);
  letter-spacing: .5px;
}
.coll-card .name-ml { font-size: 11px; color: #555; margin-top: 2px; }

/* ══════════════════════════════
   WHY + OFFER + FORM
══════════════════════════════ */
.why-section {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: var(--gray-lt);
  padding: 0 24px 36px;
  gap: 16px;
  align-items: start;
}

/* Why box */
.why-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px 18px;
  box-shadow: var(--shadow);
  margin-top: 20px;
}
.why-box h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 14px; font-weight: 700;
  color: var(--red); letter-spacing: 1px;
  text-transform: uppercase;
  padding-bottom: 8px;
  border-bottom: 3px solid var(--red);
  margin-bottom: 12px;
}
.why-list { list-style: none; }
.why-list li {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 0;
  font-size: 13px; font-weight: 600;
  border-bottom: 1px solid var(--gray);
}
.why-list li:last-child { border-bottom: none; }
.why-list .chk {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
}

/* Offer box */
.offer-box {
  background: var(--gold);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px 16px;
  margin-top: 20px;
  box-shadow: 0 6px 28px rgba(0,0,0,.18);
}
.offer-box .o-pakkuthi { font-size: 20px; font-weight: 900; color: var(--black); font-family: 'Noto Sans Malayalam', sans-serif; }
.offer-box .o-pct  { font-size: 60px; font-weight: 900; color: var(--red); line-height: 1; font-family: 'Oswald', sans-serif; }
.offer-box .o-off  { font-size: 26px; font-weight: 900; color: var(--red); font-family: 'Oswald', sans-serif; }
.offer-box .o-big  { font-size: 13px; font-weight: 800; color: var(--black); text-transform: uppercase; letter-spacing: 1px; margin-top: 6px; }
.offer-box .o-lim  { font-size: 11px; color: #555; }
.offer-box .o-emo  { font-size: 40px; margin-top: 10px; }

/* Form box */
.form-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px 18px;
  box-shadow: var(--shadow);
  margin-top: 20px;
}
.form-box h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 15px; font-weight: 700;
  color: var(--red); text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 4px;
}
.form-box .f-sub { font-size: 12px; color: #666; margin-bottom: 14px; }
.form-box input {
  width: 90%;
  border: 1.5px solid var(--gray);
  border-radius: 6px;
  padding: 11px 13px;
  font-size: 13px;
  margin-bottom: 11px;
  font-family: inherit;
  outline: none;
  transition: border-color .2s;
  background: var(--white);
}
.form-box input:focus { border-color: var(--red); }
.submit-btn {
  width: 100%;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 13px;
  font-size: 14px; font-weight: 800;
  cursor: pointer;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: background .2s, transform .15s;
}
.submit-btn:hover { background: var(--red-dark); transform: translateY(-1px); }

.call-btn{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:#d6002a;
    color:#fff;
    padding:14px 28px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    font-size:16px;
}

.call-btn .phone-icon{
    color:#fff;
    font-size:18px;
}

/* ══════════════════════════════
   TRUST STRIP
══════════════════════════════ */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 2px solid var(--gray);
  border-bottom: 2px solid var(--gray);
  padding: 16px 24px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 14px;
  border-right: 1.5px solid var(--gray);
}
.trust-item:last-child { border-right: none; }
.trust-item .t-ico { font-size: 30px; flex-shrink: 0; }
.trust-item .t-en { font-size: 12px; font-weight: 800; text-transform: uppercase; color: var(--black); }
.trust-item .t-ml { font-size: 11px; color: #666; }

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: #1a1a1a;
}

.footer-brand {
  background: #222;
  display: flex; align-items: center; gap: 14px;
  padding: 20px 22px;
}
.footer-brand .fb-emo { font-size: 44px; }
.footer-brand .fb-name {
  font-size: 17px; font-weight: 800;
  color: var(--white); font-family: 'Oswald', sans-serif;
}
.footer-brand .fb-tag { font-size: 11px; color: #aaa; margin-top: 2px; }

.footer-address {
  background: #1e1e1e;
  display: flex; align-items: flex-start; gap: 10px;
  padding: 20px 22px;
  border-left: 1px solid #333;
}
.footer-address .fa-txt h5 { color: var(--white); font-size: 12px; font-weight: 800; margin-bottom: 4px; }
.footer-address .fa-txt h5.dim { color: #ccc; }
.footer-address .fa-txt p { color: #aaa; font-size: 12px; line-height: 1.6; }
.dir-btn {
  background: var(--gold);
  color: var(--black);
  border: none; border-radius: 6px;
  padding: 7px 12px;
  font-size: 11px; font-weight: 800;
  cursor: pointer; margin-top: 8px;
  text-transform: uppercase; letter-spacing: .5px;
  transition: opacity .2s;
}
.dir-btn:hover { opacity: .88; }

.footer-contact {
  display: flex; flex-direction: column;
  border-left: 1px solid #333;
}
.footer-call {
  background: var(--green);
  display: flex; align-items: center; gap: 12px;
  padding: 16px 22px; flex: 1;
}
.footer-call .fc-label  { font-size: 10px; font-weight: 700; color: rgba(255,255,255,.8); text-transform: uppercase; }
.footer-call .fc-number { font-size: 18px; font-weight: 800; color: #fff; font-family: 'Oswald', sans-serif; letter-spacing: .5px; }
.footer-wa {
  background: var(--green-wa);
  display: flex; align-items: center; gap: 12px;
  padding: 16px 22px; flex: 1;
  border-top: 1px solid rgba(255,255,255,.2);
}
.footer-wa .fw-text { font-size: 14px; font-weight: 800; color: #fff; }
.footer-wa .fw-sub  { font-size: 11px; color: rgba(255,255,255,.8); }

/* Bottom strip */
.bottom-strip {
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  gap: 24px;
  padding: 12px 16px;
  font-size: 12px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--black);
  flex-wrap: wrap;
}
.bottom-strip span { display: flex; align-items: center; gap: 5px; }
.star { color: var(--red); font-size: 13px; }
.sep  { color: #999; font-weight: 400; }

/* ══════════════════════════════
   SUCCESS TOAST
══════════════════════════════ */
.toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(80px);
  background: var(--green); color: #fff;
  padding: 14px 28px; border-radius: 40px;
  font-weight: 700; font-size: 14px;
  box-shadow: 0 6px 20px rgba(0,0,0,.25);
  transition: transform .35s ease, opacity .35s ease;
  opacity: 0; pointer-events: none; z-index: 9999;
  white-space: nowrap;
}
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }

/* ══════════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
══════════════════════════════════════════════════════ */

/* ── TABLET  ≤ 960px ── */
@media (max-width: 960px) {
  /* show sticky topbar, hide desktop logo */
  .topbar { display: flex; }

  /* Hero stacked */
  .hero {
    grid-template-columns: 1fr;
    min-height: unset;
  }
  .hero-left {
    padding: 20px 20px 16px;
    gap: 14px;
  }
  .logo-row { display: none; } /* topbar takes over on mobile */

  .hero-headline h2 { font-size: 30px; }
  .hero-headline .ml-sub { font-size: 13px; }

  .feature-badges { gap: 10px; }
  .badge .ico { width: 32px; height: 32px; font-size: 15px; }
  .badge { font-size: 8.5px; }

  .cta-row { gap: 8px; }
  .btn { padding: 10px 14px; font-size: 11px; }

  /* hero right shorter on tablet */
  .hero-right { height: 220px; font-size: 80px; }
  .location-pill { font-size: 11px; padding: 7px 14px 7px 10px; }
  .sale-badge { bottom: 14px; right: 12px; padding: 10px 13px; }
  .sale-badge .s-main { font-size: 22px; }
  .sale-badge .s-mega { font-size: 12px; }

  /* red banner */
  .red-banner { padding: 12px 20px; }
  .rb-left { font-size: 22px; }

  /* collections */
  .collections { padding: 28px 16px; }
  .collections-grid { grid-template-columns: repeat(4, 1fr); }
  .coll-card .img-box { height: 90px; font-size: 30px; }

  /* why section */
  .why-section {
    grid-template-columns: 1fr 1fr;
    padding: 0 16px 28px;
  }
  /* offer box spans full width in 2-col layout */
  .offer-box { grid-column: 1 / -1; margin-top: 0; }

  /* trust */
  .trust-strip { grid-template-columns: repeat(2, 1fr); padding: 12px 16px; }
  .trust-item { padding: 8px 10px; }
  .trust-item:nth-child(2) { border-right: none; }
  .trust-item:nth-child(3) { border-top: 1px solid var(--gray); }
  .trust-item:nth-child(4) { border-top: 1px solid var(--gray); border-right: none; }

  /* footer */
  footer { grid-template-columns: 1fr; }
  .footer-address { border-left: none; border-top: 1px solid #333; }
  .footer-contact { flex-direction: row; border-left: none; border-top: 1px solid #333; }
  .footer-wa { border-top: none; border-left: 1px solid rgba(255,255,255,.2); }
}

/* ── MOBILE  ≤ 600px ── */
@media (max-width: 600px) {
  .topbar { padding: 9px 14px; }
  .topbar .brand { font-size: 16px; }

  .hero-left { padding: 16px 14px 12px; gap: 12px; }
  .hero-headline h2 { font-size: 24px; }
  .hero-headline .ml-sub { font-size: 12px; }

  .feature-badges { gap: 8px; justify-content: center; }
  .badge { font-size: 8px; }
  .badge .ico { width: 30px; height: 30px; font-size: 14px; }

  .cta-row {  gap: 8px; }
  .btn { width: 100%; justify-content: center; padding: 12px; font-size: 13px; }

  .hero-right { height: 180px; font-size: 64px; }
  .location-pill { font-size: 10px; }
  .sale-badge { padding: 8px 10px; }
  .sale-badge .s-main { font-size: 18px; }

  /* red banner vertical */
  .red-banner { flex-direction: column; align-items: flex-start; gap: 10px; padding: 14px 14px; }
  .rb-left { font-size: 24px; }
  .rb-mid  { font-size: 13px; }
  .enquiry-pill { width: 100%; font-size: 15px; padding: 13px; }

  /* collections 2-col on small mobile */
  .collections { padding: 22px 12px; }
  .collections-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .coll-card .img-box { height: 80px; font-size: 28px; }
  .coll-card .name-en { font-size: 10px; }

  /* why section full column */
  .why-section {
    grid-template-columns: 1fr;
    padding: 0 12px 24px;
  }
  .why-box, .offer-box, .form-box { margin-top: 12px; }
  .offer-box { grid-column: auto; }
  .offer-box .o-pct { font-size: 52px; }

  /* trust full column */
  .trust-strip { grid-template-columns: 1fr; gap: 0; padding: 10px 14px; }
  .trust-item {
    border-right: none;
    border-bottom: 1px solid var(--gray);
    padding: 10px 0;
  }
  .trust-item:last-child { border-bottom: none; }

  /* footer */
  footer { grid-template-columns: 1fr; }
  .footer-contact { flex-direction: column; }
  .footer-wa { border-left: none; border-top: 1px solid rgba(255,255,255,.2); }

  /* bottom strip */
  .bottom-strip { font-size: 11px; gap: 12px; padding: 10px 12px; }
  .sep { display: none; }
}

/* ── VERY SMALL  ≤ 360px ── */
@media (max-width: 360px) {
  .hero-headline h2 { font-size: 20px; }
  .collections-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-badges { display: grid; grid-template-columns: repeat(3,1fr); gap: 6px; }
  .sale-badge { display: none; } /* hide on tiny screens to avoid overflow */
}
</style>