@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:wght@500;600;700&display=swap');

:root {
  --navy: #03172a;
  --navy2: #06243e;
  --gold: #d99a16;
  --gold2: #f1b92e;
  --cream: #fcfaf5;
  --text: #0b1d35;
  --muted: #657084;
  --line: #eadfc9;
  --container: 1180px;
  --shadow: 0 8px 24px rgba(3, 23, 42, .09);
  --radius: 12px;
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  background: #fff;
  color: var(--text);
  font-family: Inter, Arial, Helvetica, sans-serif;
  line-height: 1.5
}

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

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

button {
  font: inherit
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin: auto
}

/* Topbar */
.topbar {
  min-height: 38px;
  background: var(--navy);
  color: #fff;
  font-size: 13px
}

.top-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px
}

.top-left,
.top-right {
  display: flex;
  align-items: center;
  gap: 22px
}

.top-item {
  display: flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap
}

.gold {
  color: var(--gold2)
}

.social {
  display: flex;
  gap: 12px
}

.social a:hover {
  color: var(--gold2)
}

/* Navigation */
.header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 14px rgba(0, 0, 0, .07)
}

.navbar {
  min-height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px
}

.logo {
  width: 235px;
  height: auto
}

.nav {
  display: flex;
  list-style: none;
  gap: 28px;
  margin: 0;
  padding: 0
}

.nav a {
  height: 94px;
  display: flex;
  align-items: center;
  position: relative;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  transition: color .2s
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 27px;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .2s ease
}

.nav a:hover,
.nav a.active {
  color: var(--gold)
}

.nav a:hover::after,
.nav a.active::after {
  transform: scaleX(1)
}

.menu-btn {
  display: none;
  border: 0;
  background: none;
  color: var(--navy);
  font-size: 26px;
  cursor: pointer;
  width: 42px;
  height: 42px
}

/* Clean Navy Hero - No Background Images */
.hero {
  min-height: 260px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #03172a 0%, #06243e 100%);
  color: #fff;
  display: flex;
  align-items: center
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  padding-top: 28px;
  padding-bottom: 28px;
}

.hero-content h1 {
  margin: 0 0 16px;
  font: 500 clamp(38px, 4vw, 54px)/1 "Playfair Display", Georgia, serif;
  color: var(--gold2);
  letter-spacing: .2px;
}

.gold-divider {
  width: 205px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  position: relative;
  margin: 0 0 18px;
}

.gold-divider::after {
  content: "✦";
  position: absolute;
  left: 50%;
  top: -10px;
  transform: translateX(-50%);
  color: var(--gold2);
  background: var(--navy);
  padding: 0 8px;
}

.hero-content h2 {
  margin: 0 0 10px;
  font: 500 clamp(22px, 2.4vw, 30px)/1.2 "Playfair Display", Georgia, serif
}

.hero-content p {
  max-width: 680px;
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 1.65;
  opacity: .9
}

/* Section Headings */
.heading {
  text-align: center;
  margin: 32px 0 18px
}

.heading h2 {
  font: 500 24px "Playfair Display", serif;
  margin: 0;
  color: var(--navy)
}

.ornament {
  width: 115px;
  height: 1px;
  background: var(--gold);
  margin: 9px auto 0;
  position: relative
}

.ornament::after {
  content: "✦";
  position: absolute;
  left: 50%;
  top: -10px;
  transform: translateX(-50%);
  background: #fff;
  color: var(--gold);
  padding: 0 7px
}

/* Power of Investment */
.power {
  padding-top: 0
}

.power-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr)
}

.power-item {
  text-align: center;
  padding: 0 14px;
  border-right: 1px solid var(--line)
}

.power-item:last-child {
  border-right: 0
}

.round-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 10px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold2);
  display: grid;
  place-items: center;
  font-size: 30px;
  box-shadow: 0 4px 12px rgba(3, 23, 42, .12)
}

.power-item h3 {
  font: 500 14px "Playfair Display", serif;
  margin: 0 0 8px;
  color: var(--navy)
}

.power-item p {
  font-size: 10.5px;
  line-height: 1.55;
  margin: 0;
  color: var(--muted)
}

/* Comparison */
.comparison {
  margin-top: 22px
}

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  position: relative
}

.compare-card {
  min-height: 190px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  color: #fff;
  display: flex;
  align-items: center;
  padding: 22px 24px;
  box-shadow: var(--shadow)
}

.compare-card.gold-card {
  background: linear-gradient(90deg, rgba(2, 18, 33, .85), rgba(2, 18, 33, .96)), url("../assets/necklace.jpg") left center/cover no-repeat;
}

.compare-card.land-card {
  background: linear-gradient(90deg, rgba(3, 31, 10, .95), rgba(3, 31, 10, .82)), url("../assets/land-bolpur.jpg") center/cover no-repeat;
}

.compare-content {
  margin-left: auto;
  width: 58%
}

.compare-card h3 {
  font: 500 19px "Playfair Display", serif;
  color: var(--gold2);
  margin: 0 0 8px
}

.compare-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 11.5px;
  line-height: 1.8
}

.compare-list li::before {
  content: "✓";
  color: var(--gold2);
  font-weight: bold;
  margin-right: 7px
}

.vs {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: var(--navy);
  border: 2px solid var(--gold);
  display: grid;
  place-items: center;
  color: var(--gold2);
  font: 500 20px "Playfair Display", serif
}

/* Why Choose */
.choose-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px
}

.choose-card {
  text-align: center;
  padding: 16px 12px 14px;
  border: 1px solid #eee8dd;
  border-radius: 8px;
  box-shadow: 0 3px 14px rgba(3, 23, 42, .05);
  background: #fff;
  transition: transform .2s ease
}

.choose-card:hover {
  transform: translateY(-3px)
}

.choose-icon {
  height: 43px;
  color: var(--gold);
  font-size: 34px;
  display: grid;
  place-items: center;
  margin-bottom: 6px
}

.choose-card h3 {
  font: 500 13px "Playfair Display", serif;
  margin: 0 0 7px;
  color: var(--navy)
}

.choose-card p {
  font-size: 10px;
  line-height: 1.45;
  margin: 0;
  color: var(--muted)
}

/* Stats */
.stats {
  margin-top: 22px;
  padding: 20px 22px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
}

.stat {
  text-align: center;
  padding: 2px 20px;
  border-right: 1px solid var(--line);
}

.stat:last-child {
  border-right: 0
}

.stat strong {
  display: block;
  color: var(--gold);
  font: 500 32px/1.1 "Playfair Display", Georgia, serif;
}

.stat span {
  display: block;
  margin-top: 4px;
  font: 13.5px "Playfair Display", Georgia, serif;
  color: var(--navy);
}

/* Clean CTA Bar */
.cta {
  margin-top: 22px;
  min-height: 90px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  padding: 20px 40px;
  color: #fff;
  background: var(--navy);
  box-shadow: var(--shadow)
}

.cta-copy {
  flex: 1
}

.cta h2 {
  font: 500 22px "Playfair Display", serif;
  margin: 0 0 4px
}

.cta h2 span {
  color: var(--gold2)
}

.cta p {
  font-size: 12px;
  margin: 0;
  opacity: .9
}

.cta a {
  padding: 12px 22px;
  background: var(--gold);
  border-radius: 5px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  transition: all .2s ease
}

.cta a:hover {
  background: #efb529
}

/* Footer */
.footer {
  margin-top: 6px;
  padding-top: 28px;
  color: #fff;
  background: var(--navy);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1.3fr;
  gap: 32px;
}

.footer-logo {
  width: 210px;
  height: auto
}

.footer-desc {
  margin: 10px 0 14px;
  max-width: 255px;
  font-size: 11px;
  line-height: 1.55;
  color: #ccc;
}

.footer-title {
  margin: 2px 0 12px;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold2);
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 11.5px;
  line-height: 1.95;
}

.footer ul a {
  color: #eee;
  transition: color .2s
}

.footer ul a:hover {
  color: var(--gold2)
}

.footer-contact li {
  margin-bottom: 8px;
  display: flex;
  gap: 8px;
  font-size: 11px;
  line-height: 1.5;
  color: #eee;
}

.footer-contact .ico {
  color: var(--gold2)
}

.footer-social {
  display: flex;
  gap: 9px
}

.footer-social a {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: #fff;
  transition: all .2s ease;
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--navy)
}

.footer-bottom {
  margin-top: 24px;
  padding: 14px 0;
  border-top: 1px solid rgba(217, 154, 22, .4);
  display: flex;
  justify-content: space-between;
  gap: 15px;
  font-size: 10.5px;
  color: #ccc;
}

.footer-bottom a:hover {
  color: var(--gold2)
}

/* Responsive */
@media(max-width:1050px) {
  .nav {
    gap: 18px
  }

  .power-grid,
  .choose-grid {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 20px
  }

  .power-item:nth-child(3),
  .power-item:nth-child(6) {
    border-right: 0
  }

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

@media(max-width:780px) {
  .container {
    width: min(var(--container), calc(100% - 28px))
  }

  .top-right .top-item:nth-child(2),
  .social {
    display: none
  }

  .navbar {
    min-height: 76px
  }

  .logo {
    width: 180px
  }

  .menu-btn {
    display: grid;
    place-items: center
  }

  .nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    gap: 0;
    padding: 10px 24px;
    box-shadow: 0 10px 20px #0002;
    z-index: 100
  }

  .nav.open {
    display: flex
  }

  .nav a {
    height: 44px;
    font-size: 13px
  }

  .nav a::after {
    bottom: 4px
  }

  .hero {
    min-height: 220px
  }

  .hero-content {
    min-height: 220px;
    padding: 28px 5%;
    justify-content: center
  }

  .power-grid,
  .choose-grid {
    grid-template-columns: 1fr 1fr
  }

  .power-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 12px
  }

  .power-item:nth-last-child(-n+2) {
    border-bottom: 0
  }

  .compare-grid {
    grid-template-columns: 1fr
  }

  .compare-card {
    min-height: 210px
  }

  .compare-content {
    width: 57%
  }

  .vs {
    top: 50%;
    left: 50%
  }

  .stats {
    grid-template-columns: 1fr 1fr;
    padding: 14px
  }

  .stat {
    padding: 8px;
    border-right: 0;
    border-bottom: 1px solid var(--line)
  }

  .stat:nth-last-child(-n+2) {
    border-bottom: 0
  }

  .cta {
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 20px
  }

  .cta a {
    margin-left: 0
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 8px
  }
}