:root {
  --navy: #060c3b;
  --navy-2: #0b1454;
  --navy-3: #121d69;
  --gold: #e6c56f;
  --gold-soft: #f5e4ad;
  --white: #ffffff;
  --text: #162033;
  --muted: #667085;
  --bg-soft: #f8f9fc;
  --border: rgba(6, 12, 59, 0.12);
  --shadow: 0 18px 60px rgba(4, 11, 52, 0.12);
  --shadow-lg: 0 28px 80px rgba(4, 11, 52, 0.18);
  --radius: 22px;
  --radius-sm: 14px;
  --heading-font: "Cormorant Garamond", "Times New Roman", serif;
  --body-font: "Inter", Arial, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  transition: 0.3s ease;
}

.section-padding {
  padding: 100px 0;
}

.topbar {
  background: var(--navy);
}

.topbar-links a {
  color: rgba(255,255,255,0.75);
  font-size: 14px;
}

.topbar-links a:hover {
  color: var(--gold);
}

.custom-navbar {
  background: rgba(6, 12, 59, 0.94);
  backdrop-filter: blur(12px);
  padding: 14px 0;
  border-bottom: 1px solid rgba(230, 197, 111, 0.1);
}

.brand-logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
  padding: 4px;
}

.brand-title {
  display: block;
  color: var(--white);
  font-family: var(--heading-font);
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.brand-subtitle {
  color: var(--gold);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.navbar-nav .nav-link {
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  margin-left: 10px;
  position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--gold);
}

.custom-toggler {
  border: 1px solid rgba(230, 197, 111, 0.45);
  padding: 6px 10px;
}

.custom-toggler .navbar-toggler-icon {
  filter: invert(1);
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border: 1px solid var(--gold);
  font-weight: 700;
  border-radius: 999px;
  padding: 12px 28px;
  box-shadow: 0 10px 25px rgba(230, 197, 111, 0.18);
}

.btn-gold:hover {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.btn-dark-blue {
  background: var(--navy);
  color: var(--white);
  border-radius: 999px;
  padding: 12px 26px;
  font-weight: 600;
}

.btn-dark-blue:hover {
  background: var(--gold);
  color: var(--navy);
}

.btn-outline-gold {
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 999px;
  padding: 12px 24px;
  font-weight: 600;
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--navy);
}

.hero-section {
  min-height: 100vh;
  position: relative;
  background:
    linear-gradient(135deg, rgba(6, 12, 59, 0.96), rgba(11, 20, 84, 0.88)),
    url("https://images.unsplash.com/photo-1500382017468-9049fed747ef?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
  color: var(--white);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(230, 197, 111, 0.18), transparent 30%),
    radial-gradient(circle at bottom left, rgba(255,255,255,0.08), transparent 22%);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-tag {
  display: inline-block;
  color: var(--gold);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.hero-content h1,
.section-heading h2,
.cta-box h2,
.contact-info-box h2 {
  font-family: var(--heading-font);
  font-size: clamp(2.6rem, 5vw, 5.1rem);
  line-height: 1;
  font-weight: 700;
}

.section-heading h2,
.cta-box h2,
.contact-info-box h2 {
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.35rem);
}

.hero-content p,
.section-heading p,
.contact-info-box p {
  color: rgba(255,255,255,0.82);
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 680px;
  margin-top: 18px;
}

.section-heading p,
.contact-info-box p {
  color: var(--muted);
}

.hero-stats .stat-box {
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 18px;
  padding: 20px 16px;
  backdrop-filter: blur(10px);
}

.stat-box h3 {
  font-family: var(--heading-font);
  color: var(--gold);
  font-size: 2rem;
  margin-bottom: 6px;
}

.stat-box p {
  margin: 0;
  color: rgba(255,255,255,0.82);
  font-size: 0.92rem;
}

.hero-form-card {
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,0.98);
  color: var(--text);
  border-radius: 28px;
  padding: 34px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(230, 197, 111, 0.22);
}

.hero-form-card h4 {
  color: var(--navy);
  font-family: var(--heading-font);
  font-size: 2rem;
  margin-bottom: 8px;
}

.hero-form-card p {
  color: var(--muted);
  line-height: 1.7;
}

.property-tabs {
  display: flex;
  background: #f4f6fb;
  border-radius: 999px;
  padding: 6px;
  gap: 6px;
}

.tab-btn {
  flex: 1;
  border: 0;
  background: transparent;
  color: var(--navy);
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 600;
}

.tab-btn.active {
  background: var(--navy);
  color: var(--gold);
}

.custom-input {
  min-height: 56px;
  border-radius: 14px;
  border: 1px solid rgba(6, 12, 59, 0.12);
  padding: 14px 16px;
  box-shadow: none !important;
}

.custom-input:focus {
  border-color: var(--gold);
}

.form-message {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
}

.about-section {
  background: linear-gradient(to bottom, #ffffff, #fbfbfe);
}

.image-stack {
  position: relative;
  min-height: 520px;
}

.image-card.main-card {
  position: absolute;
  inset: 0;
  border-radius: 30px;
  background:
    linear-gradient(rgba(6,12,59,0.18), rgba(6,12,59,0.18)),
    url("https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?auto=format&fit=crop&w=1200&q=80") center/cover no-repeat;
  box-shadow: var(--shadow);
}

.experience-badge {
  position: absolute;
  right: -10px;
  bottom: 30px;
  background: var(--gold);
  color: var(--navy);
  padding: 22px 26px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.experience-badge span {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
}

.experience-badge strong {
  display: block;
  font-family: var(--heading-font);
  font-size: 1.9rem;
}

.info-box,
.service-card,
.category-card,
.property-card,
.mini-card,
.process-card,
.testimonial-card,
.contact-form-box,
.contact-info-box {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.info-box {
  padding: 24px;
  height: 100%;
}

.info-box i {
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 14px;
}

.info-box h5 {
  color: var(--navy);
  margin-bottom: 10px;
  font-family: var(--heading-font);
  font-size: 1.45rem;
}

.info-box p {
  color: var(--muted);
  margin: 0;
  line-height: 1.7;
}

.bg-navy-light {
  background: linear-gradient(180deg, #f7f8fd 0%, #eef1fa 100%);
}

.centered {
  max-width: 780px;
  margin: 0 auto;
}

.service-card {
  padding: 34px 28px;
  height: 100%;
  transition: 0.35s ease;
}

.service-card:hover,
.category-card:hover,
.property-card:hover,
.testimonial-card:hover,
.process-card:hover {
  transform: translateY(-8px);
}

.icon-wrap {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(230, 197, 111, 0.15);
  color: var(--navy);
  font-size: 1.6rem;
  margin-bottom: 18px;
}

.service-card h4,
.category-card h4,
.property-body h4 {
  color: var(--navy);
  font-family: var(--heading-font);
  font-size: 1.7rem;
  margin-bottom: 12px;
}

.service-card p,
.category-card p,
.property-body p,
.process-card p,
.testimonial-card p {
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
}

.category-card {
  padding: 32px 26px;
  height: 100%;
  background:
    linear-gradient(180deg, rgba(6,12,59,0.98), rgba(11,20,84,0.95));
  color: var(--white);
  border: 1px solid rgba(230, 197, 111, 0.14);
}

.category-card h4 {
  color: var(--gold);
}

.category-card p {
  color: rgba(255,255,255,0.78);
}

.property-card {
  overflow: hidden;
  height: 100%;
}

.property-image {
  height: 250px;
  position: relative;
}

.img-one {
  background:
    linear-gradient(rgba(6,12,59,0.2), rgba(6,12,59,0.32)),
    url("https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?auto=format&fit=crop&w=1200&q=80") center/cover no-repeat;
}

.img-two {
  background:
    linear-gradient(rgba(6,12,59,0.2), rgba(6,12,59,0.32)),
    url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1200&q=80") center/cover no-repeat;
}

.img-three {
  background:
    linear-gradient(rgba(6,12,59,0.2), rgba(6,12,59,0.32)),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1200&q=80") center/cover no-repeat;
}

.badge-chip {
  position: absolute;
  top: 18px;
  left: 18px;
  background: var(--gold);
  color: var(--navy);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
}

.property-body {
  padding: 26px;
}

.location {
  margin-bottom: 16px;
  font-size: 0.96rem;
}

.location i {
  color: var(--gold);
  margin-right: 6px;
}

.property-meta {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
}

.property-meta li {
  padding: 7px 0;
  border-bottom: 1px dashed rgba(6, 12, 59, 0.12);
  color: var(--muted);
  font-size: 0.95rem;
}

.property-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.property-bottom h5 {
  color: var(--navy);
  font-weight: 700;
  margin: 0;
  font-size: 1.05rem;
}

.link-arrow {
  color: var(--navy);
  font-weight: 700;
}

.link-arrow:hover {
  color: var(--gold);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.feature-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  padding: 18px 20px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.feature-item i {
  color: var(--gold);
  font-size: 1.2rem;
  margin-top: 4px;
}

.feature-item h5 {
  color: var(--navy);
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.feature-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.why-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.mini-card {
  padding: 32px 24px;
  text-align: center;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
}

.mini-card h3 {
  font-family: var(--heading-font);
  color: var(--gold);
  font-size: 3rem;
  margin-bottom: 10px;
}

.mini-card p {
  color: var(--navy);
  font-weight: 600;
  margin: 0;
}

.process-section {
  background:
    linear-gradient(135deg, rgba(6,12,59,0.96), rgba(11,20,84,0.94));
}

.process-section .section-tag,
.process-section .section-heading h2 {
  color: var(--gold);
}

.process-section .section-heading h2 {
  color: var(--white);
}

.process-card {
  padding: 30px 24px;
  height: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  box-shadow: none;
}

.process-card span {
  display: inline-block;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  text-align: center;
  line-height: 52px;
  font-weight: 700;
  margin-bottom: 16px;
}

.process-card h5 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.process-card p {
  color: rgba(255,255,255,0.74);
}

.cta-section {
  padding: 0 0 100px;
  background: linear-gradient(180deg, rgba(6,12,59,0.96), rgba(6,12,59,0.96));
}

.cta-box {
  background:
    linear-gradient(120deg, rgba(230,197,111,0.12), rgba(255,255,255,0.05)),
    var(--navy);
  border: 1px solid rgba(230,197,111,0.2);
  box-shadow: var(--shadow-lg);
  border-radius: 30px;
  padding: 50px;
}

.cta-box h2 {
  color: var(--white);
  margin-top: 10px;
}

.text-gold {
  color: var(--gold);
}

.testimonial-card {
  padding: 30px;
  height: 100%;
}

.testimonial-card p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 18px;
}

.testimonial-card h6 {
  color: var(--navy);
  margin: 0;
  font-weight: 700;
}

.custom-accordion .accordion-item {
  border: 1px solid var(--border);
  border-radius: 18px !important;
  overflow: hidden;
  margin-bottom: 18px;
  box-shadow: var(--shadow);
}

.custom-accordion .accordion-button {
  background: #fff;
  color: var(--navy);
  font-weight: 600;
  padding: 22px 24px;
  box-shadow: none;
}

.custom-accordion .accordion-button:not(.collapsed) {
  background: rgba(230, 197, 111, 0.12);
  color: var(--navy);
}

.custom-accordion .accordion-body {
  color: var(--muted);
  line-height: 1.8;
  padding: 22px 24px;
}

.contact-section {
  background: linear-gradient(180deg, #fbfcff 0%, #f4f6fc 100%);
}

.contact-info-box,
.contact-form-box {
  padding: 40px;
  height: 100%;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-top: 24px;
}

.contact-item i {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(230, 197, 111, 0.14);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.contact-item h6 {
  color: var(--navy);
  margin-bottom: 4px;
}

.contact-item p {
  margin: 0;
  color: var(--muted);
}

.footer-section {
  background: var(--navy);
  padding: 34px 0;
}

.footer-logo {
  width: 62px;
  height: 62px;
  object-fit: contain;
  background: #fff;
  border-radius: 50%;
  padding: 4px;
}

.footer-brand h5 {
  color: var(--white);
  margin-bottom: 6px;
  font-family: var(--heading-font);
  font-size: 1.5rem;
}

.footer-brand p,
.copyright {
  color: rgba(255,255,255,0.68);
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255,255,255,0.8);
}

.footer-links a:hover {
  color: var(--gold);
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.28);
  z-index: 999;
}

.whatsapp-float:hover {
  transform: translateY(-4px);
  color: #fff;
}

@media (max-width: 1199.98px) {
  .hero-content h1 {
    font-size: clamp(2.5rem, 4vw, 4.2rem);
  }
}

@media (max-width: 991.98px) {
  .section-padding {
    padding: 80px 0;
  }

  .hero-section {
    min-height: auto;
    padding: 70px 0 40px;
  }

  .why-card-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .brand-title {
    font-size: 1.4rem;
  }
}

@media (max-width: 767.98px) {
  .hero-content h1,
  .section-heading h2,
  .cta-box h2,
  .contact-info-box h2 {
    line-height: 1.08;
  }

  .hero-form-card,
  .contact-info-box,
  .contact-form-box,
  .cta-box {
    padding: 28px 22px;
  }

  .why-card-grid {
    grid-template-columns: 1fr;
  }

  .image-stack {
    min-height: 360px;
  }

  .experience-badge {
    right: 10px;
    bottom: 10px;
    padding: 18px 20px;
  }

  .property-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .brand-logo {
    width: 50px;
    height: 50px;
  }

  .footer-brand {
    align-items: flex-start !important;
  }
}

@media (max-width: 575.98px) {
  .section-padding {
    padding: 70px 0;
  }

  .hero-actions .btn,
  .btn-gold,
  .btn-dark-blue,
  .btn-outline-gold {
    width: 100%;
    text-align: center;
  }

  .property-tabs {
    flex-direction: column;
    border-radius: 18px;
  }

  .tab-btn {
    width: 100%;
  }
}