﻿:root {
  --bg: #f4f0e7;
  --surface: #ffffff;
  --ink: #0f2230;
  --ink-soft: #3e4d57;
  --brand: #9a7b47;
  --brand-dark: #7c6238;
  --line: #ddd3c2;
  --shadow: 0 16px 38px rgba(14, 26, 36, 0.16);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Source Sans 3", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top right, #faf6ef, #f0e8d8 40%, #efe8da 80%);
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  width: 100%;
  display: block;
  height: 80px;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.topbar {
  background: #ffffff;
  color: #0d1d2a;
  font-size: 0.92rem;
  border-bottom: 1px solid #e4e9ef;
}

.topbar-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem 1.6rem;
  padding: 0.58rem 0;
}

.topbar-brand {
  font-family: "Cinzel", serif;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.topbar-right a {
  margin: 0;
  color: #0d1d2a;
  font-weight: 600;
  font-size: 15px;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(7px);
  height: 90px;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}

.logo {
  font-family: "Cinzel", serif;
  font-size: 1.42rem;
  letter-spacing: 0.8px;
  font-weight: 700;
}

.logo span {
  color: var(--brand);
}

.nav-links {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
  gap: 1.4rem;
  font-weight: 600;
  font-size: 22px;
}

.nav-links a {
  padding: 0.35rem 0;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--brand);
  transition: width 0.25s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  font-size: 1.8rem;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 86vh;
  overflow: hidden;
}

.hero-slider {
  position: relative;
  min-height: 86vh;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.65s ease, transform 0.8s ease;
  background-size: cover;
  background-position: center;
  display: grid;
  align-items: center;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.hero-content {
  color: #ffffff;
  max-width: 680px;
  padding: 5.2rem 0 7rem;
}

.hero-kicker,
.section-kicker {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--brand);
}

.hero-kicker {
  color: #f1d29e;
}

.hero h1,
.hero h2,
.section h2 {
  font-family: "Cinzel", serif;
  line-height: 1.15;
  margin: 0 0 0.8rem;
}

.hero h1,
.hero h2 {
  font-size: clamp(1.9rem, 3.6vw, 3.2rem);
}

.btn {
  display: inline-block;
  margin-top: 0.6rem;
  background: var(--brand);
  color: #fff;
  padding: 0.72rem 1.3rem;
  border-radius: 0.4rem;
  font-weight: 700;
  border: 0;
  cursor: pointer;
  transition: background 0.2s ease;
}

.btn:hover {
  background: var(--brand-dark);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.75);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-full {
  width: 100%;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  border: 0;
  font-size: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
  cursor: pointer;
}

.hero-prev {
  left: 18px;
}

.hero-next {
  right: 18px;
}

.enquiry-card {
  position: absolute;
  right: 3.5%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: min(360px, 92vw);
  background: #fff;
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 1.2rem 1.2rem 1.3rem;
}

.enquiry-card h3 {
  margin: 0;
  font-family: "Cinzel", serif;
}

.enquiry-card p {
  margin: 0.35rem 0 0.9rem;
  color: var(--ink-soft);
}

form {
  display: grid;
  gap: 0.48rem;
}

label {
  font-weight: 600;
  font-size: 0.93rem;
}

input,
select {
  width: 100%;
  border: 1px solid #c7ced3;
  border-radius: 6px;
  padding: 0.68rem;
  font-size: 0.96rem;
}

.form-note {
  min-height: 1.2rem;
  margin: 0.25rem 0 0;
  font-size: 0.88rem;
}

.section {
  padding: 4.2rem 0;
}

.about-grid,
.location-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

.highlights {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}

.highlights div {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  text-align: center;
  padding: 0.7rem 0.45rem;
}

.highlights span {
  font-weight: 700;
  color: var(--brand);
  font-size: 1.25rem;
}

.highlights p {
  margin: 0.18rem 0 0;
  color: var(--ink-soft);
}

.about-card {
  background: #0f2230;
  color: #eff5f8;
  border-radius: 12px;
  padding: 1.2rem 1.1rem;
}

.about-card h3 {
  font-family: "Cinzel", serif;
  margin-top: 0;
}

.about-card ul {
  margin: 0;
  padding-left: 1.1rem;
}

.amenities {
  background: linear-gradient(120deg, #f7efe2, #f0e3cd);
}

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
  margin-top: 1rem;
}

.amenity-grid article {
  background: #fff;
  border: 1px solid #e2d7c6;
  border-radius: 10px;
  text-align: center;
  padding: 1rem;
  font-weight: 700;
}

.amenities-page .amenity-card {
  padding: 0;
  overflow: hidden;
  text-align: left;
  box-shadow: 0 10px 28px rgba(16, 30, 40, 0.1);
}

.amenities-page .amenity-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}

.amenity-card-body {
  padding: 0.9rem;
}

.amenity-card-body h3 {
  margin: 0 0 0.35rem;
  font-family: "Cinzel", serif;
  font-size: 1.08rem;
}

.amenity-card-body p {
  margin: 0;
  color: #4a5662;
  font-weight: 500;
  line-height: 1.45;
}

.page-link-grid .link-card {
  padding: 0;
  overflow: hidden;
}

.page-link-grid .link-card a {
  display: block;
}

.page-link-grid .link-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
}

.page-link-grid .link-card span {
  display: block;
  padding: 0.8rem 0.9rem;
  font-weight: 700;
}

.gallery-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}

.gallery-grid img {
  border-radius: 8px;
  height: 220px;
  object-fit: cover;
}

.location ul {
  padding-left: 1.1rem;
}

.location-left-cards h2,
.location-map-panel h2 {
  margin: 0 0 0.9rem;
  font-family: "Cinzel", serif;
}

.location-left-head {
  margin-bottom: 0.85rem;
}

.location-kicker {
  margin: 0 0 0.22rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #8a6526;
}

.location-left-head h2 {
  margin-bottom: 0.35rem;
}

.location-left-head p {
  margin: 0;
  color: #4c5a66;
}

.location-map-panel {
  background: #fff;
  border: 1px solid #dfd4c4;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(16, 30, 40, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.location-map-panel h2 {
  padding: 0.9rem 0.9rem 0;
  margin: 0;
}

.location-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.location-mini-card {
  background: linear-gradient(180deg, #fff, #fbf8f3);
  border: 1px solid #ded3c4;
  border-radius: 10px;
  padding: 0.9rem;
  box-shadow: 0 8px 20px rgba(16, 30, 40, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.location-mini-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(16, 30, 40, 0.12);
}

.location-mini-map-card {
  padding: 0;
  overflow: hidden;
}

.mini-card-logo {
  min-height: 62px;
  border-bottom: 1px solid #e8dfd2;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  padding: 0.55rem;
}

.mini-card-logo img {
  max-width: 140px;
  max-height: 44px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.mini-logo-fallback {
  display: none;
  font-weight: 700;
  color: #0f2230;
}

.mini-card-map {
  height: 150px;
  background: #f8f3ea;
}

.mini-card-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.mini-card-meta {
  padding: 0.7rem 0.8rem 0.82rem;
}

.mini-card-meta h3 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
  font-family: "Cinzel", serif;
}

.mini-card-meta p {
  margin: 0 0 0.45rem;
  color: #4f5b66;
  font-size: 0.93rem;
}

.mini-distance {
  display: inline-block;
  background: #f0e4ce;
  color: #7a5925;
  border: 1px solid #e0cfb2;
  border-radius: 999px;
  padding: 0.12rem 0.55rem;
  font-size: 0.79rem;
  font-weight: 700;
}

.location-mini-card h3 {
  margin: 0 0 0.35rem;
  font-family: "Cinzel", serif;
  font-size: 1rem;
}

.location-mini-card p {
  margin: 0;
  color: #4d5b66;
}

.map-placeholder {
  min-height: 490px;
  border: 0;
  border-radius: 0;
  background: #f8f3ea;
  flex: 1;
  width: 100%;
  overflow: hidden;
}

.map-placeholder iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.downloads {
  color: #edf4f8;
  background: linear-gradient(rgba(13, 29, 42, 0.84), rgba(13, 29, 42, 0.9)),
    url("https://images.unsplash.com/photo-1460317442991-0ec209397118?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.downloads h2 {
  margin-top: 0;
}

.downloads .section-kicker {
  color: #f0d7ac;
}

.downloads-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 1.2rem;
  align-items: start;
}

.download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 0.8rem;
}

.download-form {
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  border-radius: 12px;
  padding: 1rem;
  box-shadow: var(--shadow);
}

.signature-section {
  background:
    linear-gradient(rgba(8, 32, 86, 0.92), rgba(5, 22, 64, 0.94)),
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.08), transparent 45%);
  color: #f0f5ff;
}

.signature-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 1.4rem;
  align-items: center;
}

.signature-copy h2 {
  margin: 0;
  font-size: clamp(1.9rem, 3vw, 3.1rem);
  line-height: 1.1;
}

.signature-line {
  width: 112px;
  height: 4px;
  background: #d2ac63;
  border-radius: 99px;
  display: inline-block;
  margin: 1rem 0;
}

.signature-sub {
  margin: 0 0 0.8rem;
  font-size: 1.8rem;
  font-family: "Cinzel", serif;
}

.signature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
  margin-bottom: 1.2rem;
}

.signature-list ul {
  margin: 0;
  padding-left: 1.2rem;
}

.signature-list li {
  margin-bottom: 0.45rem;
}

.signature-slider {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.signature-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(0) translateY(0) scale(1.03);
  transition: transform 0.8s ease, opacity 0.75s ease;
  background-size: cover;
  background-position: center;
}

.signature-slide.is-active {
  opacity: 1;
  transform: translateX(0) translateY(0) scale(1);
  z-index: 2;
}

.signature-slide.from-left {
  transform: translateX(-12%) scale(1.03);
}

.signature-slide.from-right {
  transform: translateX(12%) scale(1.03);
}

.signature-slide.from-top {
  transform: translateY(-12%) scale(1.03);
}

.signature-slide.from-bottom {
  transform: translateY(12%) scale(1.03);
}

.signature-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 0;
  cursor: pointer;
  color: #fff;
  font-size: 2rem;
  background: rgba(6, 18, 52, 0.5);
}

.signature-prev {
  left: 16px;
}

.signature-next {
  right: 16px;
}

.testimonials-video {
  background: #efefef;
}

.testimonials-video h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
  color: #111827;
}

.testimonials-line {
  display: block;
  width: 100%;
  height: 2px;
  background: #204891;
  margin: 0.9rem 0 1.8rem;
}

.video-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.video-card {
  width: min(340px, 92vw);
  background: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 10px;
  padding: 0.5rem;
}

.video-frame {
  width: 100%;
  aspect-ratio: 9 / 16;
  border: 0;
  border-radius: 8px;
  background: #0b1735;
}

.footer {
  background: #ffffff;
  color: #0d1d2a;
  padding-top: 2.2rem;
  border-top: 1px solid #e4e9ef;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 1.2rem;
}

.footer h4 {
  margin: 0 0 0.55rem;
  font-family: "Cinzel", serif;
}

.footer a,
.footer p {
  display: block;
  margin: 0 0 0.48rem;
  color: #0d1d2a;
}

.copyright {
  border-top: 1px solid #e4e9ef;
  margin-top: 1rem;
  text-align: center;
  padding: 0.85rem 0;
}

@media (max-width: 980px) {
  .enquiry-card {
    position: static;
    transform: none;
    margin: 1rem auto 0;
  }

  .hero {
    padding-bottom: 1.2rem;
  }

  .hero-slider,
  .hero {
    min-height: 74vh;
  }

  .about-grid,
  .location-grid,
  .downloads-grid,
  .signature-grid {
    grid-template-columns: 1fr;
  }

  .signature-slider {
    min-height: 360px;
  }

  .video-grid {
    gap: 1rem;
  }

  .amenity-grid,
  .gallery-grid,
  .highlights,
  .location-mini-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .topbar-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }

  .topbar-right {
    flex-wrap: wrap;
    gap: 0.35rem 1rem;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    left: 0;
    right: 0;
    top: 72px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }

  .nav-links li {
    border-top: 1px solid #ece4d8;
  }

  .nav-links a {
    display: block;
    padding: 0.8rem 4%;
  }

  .nav-links.open {
    max-height: 360px;
  }

  .hero-arrow {
    display: none;
  }

  .hero-content {
    padding: 4.2rem 0 5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .signature-sub {
    font-size: 1.45rem;
  }

  .signature-list {
    grid-template-columns: 1fr;
  }

  .signature-arrow {
    width: 42px;
    height: 42px;
  }

  .location-mini-grid {
    grid-template-columns: 1fr;
  }
}

.inner-hero {
  background: linear-gradient(120deg, #0f2230, #1d3546);
  color: #f2f7fb;
  padding: 3rem 0;
}

.inner-hero h1 {
  margin: 0;
  font-family: "Cinzel", serif;
  font-size: clamp(1.7rem, 3vw, 2.7rem);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.plan-card,
.emi-result,
.contact-panel,
.enquiry-page form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 1rem;
}

.plan-card h3,
.emi-result h3,
.contact-panel h3 {
  font-family: "Cinzel", serif;
  margin-top: 0;
}

.emi-wrap,
.enquiry-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: start;
}

.enquiry-visual {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.enquiry-visual img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.enquiry-visual-copy {
  padding: 1rem;
}

.enquiry-visual-copy h3,
.enquiry-page form h3 {
  margin: 0 0 0.45rem;
  font-family: "Cinzel", serif;
}

.enquiry-visual-copy p {
  margin: 0 0 0.8rem;
  color: #4a5662;
}

#emi-monthly {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--brand);
}

.emi-card-section {
  background: #d9d2c7;
}

.emi-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.bank-info-card,
.emi-calc-card {
  background: #efefef;
  border: 1px solid #cabfb0;
  border-radius: 12px;
  padding: 1.2rem;
}

.bank-info-card h2,
.emi-calc-card h2 {
  margin: 0;
  font-family: "Cinzel", serif;
  text-transform: uppercase;
}

.bank-info-card > p,
.emi-calc-card > p {
  color: #596370;
}

.bank-rate-list {
  margin-top: 0.9rem;
  max-height: 390px;
  overflow: auto;
  padding-right: 0.3rem;
}

.bank-rate-item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.5rem;
  border: 1px solid #b7aea2;
  border-radius: 8px;
  background: #efefef;
  padding: 0.7rem 0.72rem;
  cursor: pointer;
  font: inherit;
  color: #1f2937;
  text-align: left;
}

.bank-rate-item strong {
  color: #8a6526;
}

.bank-rate-item.is-active {
  border-color: #be8d43;
  box-shadow: 0 0 0 1px rgba(190, 141, 67, 0.2);
}

.bank-meta {
  border-top: 1px solid #d1c8bc;
  margin-top: 0.8rem;
  padding-top: 0.8rem;
}

.bank-meta p {
  margin: 0 0 0.45rem;
  color: #434f5b;
}

.emi-calc-card {
  background:
    linear-gradient(rgba(239, 239, 239, 0.94), rgba(239, 239, 239, 0.94)),
    url("https://images.unsplash.com/photo-1554224155-8d04cb21cd6c?auto=format&fit=crop&w=1200&q=80") center/cover;
}

.emi-calc-card form {
  display: grid;
  gap: 0.6rem;
}

.selected-bank {
  margin: 0.2rem 0 0.3rem;
  color: #4b5563;
}

.emi-calc-btn {
  background: #b98942;
}

.emi-summary {
  border-top: 1px solid #cbc2b6;
  margin-top: 0.8rem;
  padding-top: 0.8rem;
}

.emi-summary p {
  margin: 0 0 0.3rem;
  color: #5c6773;
}

.emi-summary h3,
.emi-summary h4 {
  margin: 0 0 0.7rem;
  font-family: "Source Sans 3", sans-serif;
  color: #8a6526;
}

.emi-summary h3 {
  font-size: 2.2rem;
}

.emi-summary h4 {
  font-size: 2rem;
  color: #2d3748;
}

@media (max-width: 980px) {
  .cards-grid,
  .emi-wrap,
  .enquiry-page,
  .emi-card-grid {
    grid-template-columns: 1fr;
  }
}

.page-hero,
.page-hero .hero-slider {
  min-height: 86vh;
}

.page-hero .hero-content {
  padding: 4.4rem 0 4.8rem;
}

@media (max-width: 980px) {
  .page-hero,
  .page-hero .hero-slider {
    min-height: 52vh;
  }
}
