:root {
  --ink: #17130f;
  --ink-soft: #241d16;
  --cream: #f7f2e7;
  --cream-dark: #efe6d1;
  --gold: #c9a24b;
  --gold-light: #e9d6a0;
  --gold-dark: #8a6a2e;
  --muted: #6f6558;
  --card: #ffffff;
  --line: #e6dcc3;
  --radius: 14px;
  --gold-grad: linear-gradient(180deg, #f0d99a 0%, #c9a24b 55%, #8a6a2e 100%);
  --gold-grad-h: linear-gradient(90deg, #e9d6a0, #c9a24b, #8a6a2e);
}

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

h1, h2, h3, .brand { font-family: 'Playfair Display', serif; }

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

.gold-text {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* LOGO */
.logo-mark { width: 40px; height: 40px; flex-shrink: 0; }
.logo-group { display: flex; align-items: center; gap: 12px; }
.logo-text .brand { font-size: 1.25rem; font-weight: 700; letter-spacing: 0.5px; line-height: 1.1; color: var(--ink); }
.logo-text .tagline { font-size: 0.62rem; letter-spacing: 2px; color: var(--gold-dark); font-weight: 600; text-transform: uppercase; }

/* NAV */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 242, 231, 0.94);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; height: 80px; }
.nav-links { display: flex; gap: 32px; font-size: 0.92rem; font-weight: 600; }
.nav-links a:hover { color: var(--gold-dark); }
.nav-cta {
  background: var(--gold-grad-h);
  color: #17130f !important;
  padding: 11px 22px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.3px;
}
.nav-cta:hover { filter: brightness(1.08); }

/* HERO FLYER COLLAGE */
.hero-flyer {
  background: var(--ink);
  padding: 18px;
}
.flyer-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 14px;
  max-width: 1200px;
  margin: 0 auto;
}
.flyer-col { display: grid; gap: 14px; }
.flyer-grid img { width: 100%; height: 100%; object-fit: cover; border-radius: 6px; min-height: 220px; }
.flyer-center {
  background: var(--cream);
  border-radius: 10px;
  padding: 40px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.flyer-center .logo-group { justify-content: center; margin-bottom: 22px; }
.flyer-headline {
  font-size: 2.6rem;
  line-height: 1.08;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 6px;
}
.flyer-headline .gold-text { display: block; font-size: 3rem; }
.flyer-sub {
  display: inline-block;
  background: var(--ink);
  color: var(--gold-light);
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 6px;
  margin: 18px 0 14px;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
}
.flyer-tagline { color: var(--muted); letter-spacing: 3px; font-size: 0.78rem; font-weight: 600; text-transform: uppercase; }

/* ICON ROW (service categories) */
.icon-row {
  background: var(--cream);
  padding: 44px 0;
  border-bottom: 1px solid var(--line);
}
.icon-row-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}
.icon-row-grid > div { padding: 0 20px; border-right: 1px solid var(--line); }
.icon-row-grid > div:last-child { border-right: none; }
.icon-circle {
  width: 66px; height: 66px;
  margin: 0 auto 14px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
}
.icon-row-grid h4 { font-size: 0.95rem; font-weight: 700; letter-spacing: 0.3px; }

/* FEATURE STRIP */
.feature-strip { background: var(--ink); padding: 30px 0; }
.feature-strip-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  text-align: center;
}
.feature-strip-grid > div { padding: 0 14px; border-right: 1px solid rgba(255,255,255,0.12); color: #fff; }
.feature-strip-grid > div:last-child { border-right: none; }
.feature-strip-grid .fico { font-size: 1.6rem; margin-bottom: 10px; color: var(--gold-light); }
.feature-strip-grid h5 { font-size: 0.85rem; font-weight: 700; }

/* CTA BANNER */
.cta-banner {
  background: var(--gold-grad-h);
  text-align: center;
  padding: 20px 0;
}
.cta-banner a {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--ink);
  text-transform: uppercase;
}

/* CONTACT BAR */
.contact-bar { background: var(--ink); color: #fff; padding: 26px 0; }
.contact-bar-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.3fr;
  gap: 20px;
}
.contact-bar-item { display: flex; align-items: center; gap: 12px; font-size: 0.92rem; }
.contact-bar-item .cico {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light);
  flex-shrink: 0;
}

/* STATS STRIP */
.stats { background: var(--ink-soft); color: #fff; padding: 36px 0; }
.stats .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stats h3 { font-size: 2rem; color: var(--gold-light); }
.stats span { font-size: 0.85rem; color: #d8d2c8; text-transform: uppercase; letter-spacing: 1px; }

/* SECTIONS */
section { padding: 90px 0; }
.section-head { text-align: center; max-width: 620px; margin: 0 auto 56px; }
.section-head .eyebrow { color: var(--gold-dark); text-transform: uppercase; letter-spacing: 2px; font-size: 0.8rem; font-weight: 700; margin-bottom: 14px; display: block; }
.section-head h2 { font-size: 2.2rem; margin-bottom: 14px; color: var(--ink); }
.section-head p { color: var(--muted); }

/* FEATURED TEMPLATE CARD */
.template-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(23,19,15,0.1);
  border: 1px solid var(--line);
}
.template-card img { height: 100%; object-fit: cover; }
.template-body { padding: 44px; display: flex; flex-direction: column; justify-content: center; }
.tag {
  display: inline-block;
  background: var(--cream-dark);
  color: var(--gold-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
  width: fit-content;
}
.template-body h3 { font-size: 1.7rem; margin-bottom: 12px; }
.template-body p { color: var(--muted); margin-bottom: 24px; }
.meta-row { display: flex; gap: 24px; margin-bottom: 28px; flex-wrap: wrap; }
.meta-row div { font-size: 0.85rem; color: var(--muted); }
.meta-row strong { display: block; color: var(--ink); font-size: 1rem; }

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.92rem;
  transition: transform 0.15s ease, filter 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--gold-grad-h); color: var(--ink); }
.btn-primary:hover { filter: brightness(1.08); }
.btn-outline { border: 1.5px solid var(--ink); color: var(--ink); }
.btn-outline:hover { background: rgba(23,19,15,0.06); }

/* SERVICES GRID */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 16px 30px rgba(23,19,15,0.1); }
.service-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--cream-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
}
.service-card h4 { margin-bottom: 10px; font-size: 1.1rem; }
.service-card p { color: var(--muted); font-size: 0.92rem; }

/* PROCESS */
.process-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.process-step { text-align: center; }
.step-num {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--gold-grad-h);
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  margin: 0 auto 16px;
}
.process-step h4 { margin-bottom: 8px; }
.process-step p { color: var(--muted); font-size: 0.9rem; }

/* TESTIMONIAL */
.testimonial {
  background: var(--cream-dark);
  border-radius: var(--radius);
  padding: 48px;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
  border: 1px solid var(--line);
}
.testimonial p.quote { font-size: 1.25rem; font-style: italic; margin-bottom: 20px; }
.testimonial .who { font-weight: 700; }
.testimonial .who span { display: block; font-weight: 400; color: var(--muted); font-size: 0.85rem; }

/* CONTACT FORM SECTION */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
  padding: 56px;
}
.contact-wrap h2 { color: #fff; margin-bottom: 14px; }
.contact-wrap p { color: #cfc7bb; margin-bottom: 26px; }
.contact-info-item { margin-bottom: 18px; font-size: 0.95rem; }
.contact-info-item strong { display: block; color: var(--gold-light); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
form.quote-form input, form.quote-form select {
  width: 100%;
  padding: 13px 16px;
  border-radius: 8px;
  border: none;
  margin-bottom: 14px;
  font-family: inherit;
  font-size: 0.95rem;
}
form.quote-form button {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 8px;
  background: var(--gold-grad-h);
  color: var(--ink);
  font-weight: 800;
  font-size: 0.95rem;
  cursor: pointer;
}
form.quote-form button:hover { filter: brightness(1.08); }

/* FOOTER */
footer { padding: 30px 0; text-align: center; color: var(--muted); font-size: 0.85rem; border-top: 1px solid var(--line); background: var(--cream); }

/* WHATSAPP FLOAT */
.wa-float {
  position: fixed; bottom: 26px; right: 26px;
  background: #25d366; color: #fff;
  width: 58px; height: 58px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 10px 24px rgba(37,211,102,0.4);
  z-index: 200;
}

/* ===== 3BHK TEMPLATE PAGE ===== */
.project-header {
  background: linear-gradient(rgba(23,19,15,0.65), rgba(23,19,15,0.65)),
              url('https://picsum.photos/seed/frontdoor-main/1600/700') center/cover no-repeat;
  color: #fff;
  padding: 90px 0 60px;
}
.project-header .tag { background: rgba(255,255,255,0.15); color: #fff; }
.project-header h1 { font-size: 2.6rem; margin: 14px 0 18px; }
.project-meta { display: flex; gap: 40px; flex-wrap: wrap; margin-top: 20px; }
.project-meta div strong { display: block; font-size: 1.05rem; color: var(--gold-light); }
.project-meta div span { font-size: 0.8rem; color: #d8d2c8; text-transform: uppercase; letter-spacing: 1px; }

.room-tabs {
  display: flex; gap: 10px; flex-wrap: wrap;
  border-bottom: 1px solid var(--line);
  padding-bottom: 20px; margin-bottom: 44px;
}
.room-tab {
  padding: 10px 20px; border-radius: 30px; font-size: 0.9rem; font-weight: 700;
  border: 1px solid var(--line); background: #fff; cursor: pointer;
}
.room-tab.active { background: var(--ink); color: var(--gold-light); border-color: var(--ink); }

.room-panel { display: none; }
.room-panel.active { display: block; }

.spotlight { display: grid; grid-template-columns: 1.2fr 1fr; gap: 44px; align-items: start; margin-bottom: 56px; }
.spotlight img.hero-img { border-radius: var(--radius); width: 100%; height: 460px; object-fit: cover; }
.spotlight h2 { font-size: 1.9rem; margin-bottom: 14px; }
.spotlight .concept { color: var(--muted); margin-bottom: 26px; }

.feature-list li { display: flex; gap: 12px; padding: 10px 0; border-bottom: 1px dashed var(--line); font-size: 0.95rem; }
.feature-list li .ico { color: var(--gold-dark); font-weight: 700; }

.swatch-row { display: flex; gap: 12px; margin: 20px 0; }
.swatch { width: 42px; height: 42px; border-radius: 50%; border: 3px solid #fff; box-shadow: 0 0 0 1px var(--line); }

.chip-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 24px; }
.chip { background: var(--cream-dark); color: var(--gold-dark); padding: 8px 16px; border-radius: 20px; font-size: 0.82rem; font-weight: 700; }

.budget-box { background: var(--cream-dark); border-radius: 10px; padding: 20px 24px; display: flex; justify-content: space-between; align-items: center; }
.budget-box strong { font-size: 1.3rem; color: var(--gold-dark); }

.gallery-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 20px; }
.gallery-row img { border-radius: 10px; height: 180px; object-fit: cover; }

.placeholder-panel { text-align: center; padding: 70px 20px; background: var(--card); border: 1px dashed var(--line); border-radius: var(--radius); color: var(--muted); }
.placeholder-panel h3 { color: var(--ink); margin-bottom: 10px; }

@media (max-width: 860px) {
  .template-card, .contact-wrap, .spotlight, .contact-bar-grid { grid-template-columns: 1fr; }
  .grid-3, .process-row, .icon-row-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-strip-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .feature-strip-grid > div { border-right: none; }
  .icon-row-grid > div { border-right: none; margin-bottom: 20px; }
  .stats .container { grid-template-columns: repeat(2, 1fr); }
  .flyer-grid { grid-template-columns: 1fr; }
  .flyer-headline { font-size: 2rem; }
  .flyer-headline .gold-text { font-size: 2.2rem; }
  .gallery-row { grid-template-columns: 1fr 1fr; }
}

/* === MODERN REDESIGN REFRESH === */
html { scroll-behavior: smooth; }

/* Mobile nav toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: auto;
  margin-right: 8px;
}
.menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-links .mobile-only { display: none; }

/* Navbar polish */
.navbar {
  backdrop-filter: blur(10px);
  background: rgba(247, 242, 231, 0.96);
}

/* Full-bleed hero redesign */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(15,12,9,0.55) 0%, rgba(15,12,9,0.75) 100%),
    url('https://picsum.photos/seed/aura-hero/1600/900') center/cover no-repeat;
  padding: 120px 24px 100px;
}
.hero .eyebrow {
  display: inline-block;
  color: var(--gold-light);
  border: 1px solid rgba(233,214,160,0.4);
  padding: 7px 18px;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.72rem;
  font-weight: 700;
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  line-height: 1.05;
  max-width: 900px;
  margin: 0 auto 18px;
  color: #fff;
}
.hero h1 .gold-text { display: inline; }
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #e8e2d7;
  max-width: 620px;
  margin: 0 auto 34px;
}
.hero .btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-outline-light {
  border: 1.5px solid rgba(255,255,255,0.8);
  color: #fff;
}
.btn-outline-light:hover { background: rgba(255,255,255,0.12); }

/* Category icon bar */
.icon-row { background: var(--ink); border-bottom: none; padding: 34px 0; }
.icon-row-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.icon-row-grid > div {
  padding: 0 18px;
  border-right: 1px solid rgba(255,255,255,0.08);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: left;
}
.icon-row-grid > div:last-child { border-right: none; }
.icon-circle {
  width: 48px;
  height: 48px;
  border: none;
  background: rgba(201,162,75,0.16);
  font-size: 1.4rem;
  margin: 0;
}
.icon-row-grid h4 { font-size: 0.8rem; letter-spacing: 0.5px; line-height: 1.4; }

/* Feature strip */
.feature-strip { padding: 34px 0; }

/* Section polish */
section { padding: 84px 0; }
.section-head h2 { font-size: clamp(1.8rem, 4vw, 2.4rem); }

/* Cards and buttons */
.template-card { border-radius: 18px; box-shadow: 0 26px 60px rgba(23,19,15,0.12); }
.service-card { border-radius: 18px; transition: transform .2s ease, box-shadow .2s ease; }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 24px 46px rgba(23,19,15,0.12); }

/* Contact */
.contact-wrap { border-radius: 18px; padding: 56px; }
form.quote-form input, form.quote-form select { border-radius: 10px; padding: 14px 18px; }
form.quote-form button { border-radius: 10px; }

@media (max-width: 860px) {
  .menu-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    gap: 0;
    padding: 8px 24px 18px;
    display: none;
    box-shadow: 0 18px 40px rgba(23,19,15,0.12);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 0; font-size: 1rem; }
  .nav-links .mobile-only { display: inline-flex; margin-top: 10px; }
  .navbar .container { height: 72px; }
  .nav-cta:not(.mobile-only) { display: none; }

  .hero { min-height: 70vh; padding: 100px 24px 80px; }
  .icon-row-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .icon-row-grid > div { border-right: none; justify-content: flex-start; padding: 0; }
  .feature-strip-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .feature-strip-grid > div { border-right: none; }
}
