/* TOPBAR SECTION */
/* ===== TOP BAR ===== */

.top-bar {
  background: white;
  padding: 8px 0;
  font-family: Arial, sans-serif;
  font-size: 14px;
}

.top-bar-container {
  max-width: 1300px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Left Side */
.top-bar-left {
  display: flex;
  align-items: center;
  gap: 30px;
}

.top-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #333;
}

.top-item a {
  text-decoration: none;
  color: #333;
}

.top-item a:hover {
  color: #a52a2a;
}

/* Right Social */
.top-bar-right {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 32px;
  height: 32px;
  background: #7b2d2d;
  color: white;
  display: grid;
  place-items: center;
  border-radius: 4px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s ease;
}

.social-btn:hover {
  background: #5a1f1f;
}

/* Responsive */
@media (max-width: 768px) {
  .top-bar-container {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .top-bar-left {
    flex-direction: column;
    gap: 6px;
  }
}

/* Header Section */


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
}

.container {
    width: 90%;
    margin: auto;
}

/* HEADER */
.main-header {
    position: sticky;
    top: 0;
    width: 100%;
    background: #7d2b2b;
    z-index: 999;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 115px;
}

/* LOGO */
.logo img {
    height: 45px;
}

/* NAVIGATION */
.nav-menu ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-menu ul li {
    position: relative;
}

.nav-menu ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    transition: 0.3s ease;
}

.nav-menu ul li .nav-inside-list  {
    color: black;
}

/* ENQUIRE BUTTON */
.btn-enquire {
    background: linear-gradient(135deg, #d4af37, #c9a227);
    color: #fff;
    padding: 10px 22px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-enquire:hover {
    opacity: 0.85;
}

/* MEGA MENU */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    width: 150px;
    display: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-radius: 4px;
}

.menu-column a {
    display: block;
    padding: 14px 20px;
    color: #333;
    font-weight: 500;
    border-bottom: 1px solid #eee;
    text-decoration: none;
}

.menu-column a:hover {
    background: #f7f7f7;
}

/* SUBMENU */
.submenu-wrapper {
    position: relative;
}

.submenu-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.submenu-toggle span {
    font-size: 18px;
}

.sub-menu {
    position: absolute;
    left: 100%;
    top: 0;
    background: #fff;
    width: 220px;
    display: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-radius: 4px;
}

/* Hover effects */
.has-dropdown:hover .mega-menu {
    display: block;
}

.submenu-wrapper:hover .sub-menu {
    display: block;
}
/* ===== Hero Slider ===== */
.hero {
  position: relative;
  height: 72vh;
  min-height: 700px;
  overflow: hidden;
  background: #111;
}

.slides {
  position: absolute;
  inset: 0;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity .8s ease, transform 1.4s ease;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
}

/* Dark overlay like screenshot */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, .35) 0%,
      rgba(0, 0, 0, .25) 40%,
      rgba(0, 0, 0, .45) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 0 16px;
}

.hero h1 {
  margin: 0 0 18px 0;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: clamp(28px, 4vw, 56px);
  line-height: 1.15;
  text-shadow: 0 10px 22px rgba(0, 0, 0, .35);
  color:white;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 12px;
  background: rgba(122, 47, 47, .95);
  border: 1px solid rgba(255, 255, 255, .18);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .35);
}

.hero-cta:hover {
  background: rgba(122, 47, 47, 1)
}

.hero-cta:active {
  transform: translateY(1px)
}

/* Arrows */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 0;
  cursor: pointer;
  background: rgba(0, 0, 0, .45);
  color: #fff;
  display: grid;
  place-items: center;
  transition: background .2s ease;
}

.arrow:hover {
  background: rgba(0, 0, 0, .6)
}

.arrow.left {
  left: 24px
}

.arrow.right {
  right: 24px
}

.arrow svg {
  width: 20px;
  height: 20px
}

/* Optional: bottom spacing content */
.page-content {
  max-width: var(--container);
  margin: 0 auto;
  padding: 34px 18px 120px;
  color: #d9d9d9;
}

.page-content p {
  max-width: 800px;
  line-height: 1.7
}





/* Signature Section */

/* ====== SECTION (like screenshot) ====== */
.signature-section {
  padding: 70px 0;
  background: #4b1414;
  position: relative;
  overflow: hidden;
}

/* subtle texture + vignette */
.signature-section::before {
  content: "";
  position: absolute;
  inset: -40px;
  background:
    radial-gradient(900px 420px at 75% 35%, rgba(255, 255, 255, 0.06), transparent 60%),
    radial-gradient(700px 380px at 30% 60%, rgba(0, 0, 0, 0.22), transparent 60%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.03), rgba(0, 0, 0, 0.08));
  filter: blur(0.2px);
  opacity: 1;
  pointer-events: none;
}

.signature-wrap {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 460px 1fr;
  gap: 70px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* left image card */
.sig-media {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 22px;
  padding: 16px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.sig-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 18px;
  display: block;
}

/* right content */
.sig-title {
  margin: 0 0 14px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 800;
  letter-spacing: 1px;
  color: #ffffff;
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.1;
}

.sig-title span {
  color: #b7903c;
  /* gold */
}

.sig-text {
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16.5px;
  line-height: 1.75;
  max-width: 640px;
}

.sig-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 0 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  color: #1c1206;
  background: linear-gradient(180deg, #d6b060, #a37a2e);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: transform .2s ease, filter .2s ease;
}

.sig-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

/* ====== RESPONSIVE ====== */
@media (max-width: 980px) {
  .signature-wrap {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .sig-img {
    height: 420px;
  }
}

@media (max-width: 520px) {
  .signature-section {
    padding: 46px 0;
  }

  .sig-img {
    height: 320px;
  }
}


/* Building Section */

:root {
  --lux-ink: #7a2f2f;
  /* maroon-ish */
  --lux-gold: #c9a24c;
  /* warm gold */
  --lux-text: #667085;
  /* muted body */
  --lux-bg: #ffffff;
  --lux-radius: 22px;
}

.lux-hero {
  background: var(--lux-bg);
  padding: clamp(28px, 4vw, 64px) 0;
}

.lux-container {
  width: min(1200px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(18px, 3vw, 44px);
  align-items: center;
}

.lux-title {
  margin: 0 0 18px;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 600;
  letter-spacing: .5px;
  color: var(--lux-ink);
  line-height: 1.15;
  font-size: clamp(28px, 3.2vw, 52px);
  text-transform: uppercase;
}

.lux-highlight {
  color: var(--lux-gold);
  font-weight: 700;
}

.lux-subtitle {
  margin: 0 0 14px;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 600;
  letter-spacing: .6px;
  color: var(--lux-ink);
  text-transform: uppercase;
  font-size: clamp(16px, 1.35vw, 22px);
}

.lux-desc {
  margin: 0 0 26px;
  color: var(--lux-text);
  font-size: clamp(14px, 1.1vw, 18px);
  line-height: 1.7;
  max-width: 56ch;
}

.lux-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 0 26px;
  border-radius: 14px;
  background: var(--lux-gold);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  box-shadow: 0 10px 24px rgba(201, 162, 76, .25);
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}

.lux-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(201, 162, 76, .30);
  filter: brightness(.98);
}

.lux-media {
  border-radius: var(--lux-radius);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(16, 24, 40, .12);
  background: #f6f7fb;
}

.lux-img {
  width: 100%;
  height: clamp(260px, 32vw, 430px);
  object-fit: cover;
  display: block;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .lux-container {
    grid-template-columns: 1fr;
  }

  .lux-desc {
    max-width: 70ch;
  }

  .lux-media {
    order: -1;
  }

  /* image first like many mobile heroes */
  .lux-img {
    height: 260px;
  }
}



/* Next Section */

:root {
  --mivan-bg: #5c1c1d;
  /* maroon base */
  --mivan-bg2: #4b1718;
  /* deeper tone */
  --mivan-text: #ffffff;
  --mivan-muted: rgba(255, 255, 255, .85);
  --mivan-gold: #e8c07a;
  --mivan-card: #ffffff;
  --mivan-radius: 28px;
}

.mivan-wrap {
  padding: 40px 16px;
  background:
    radial-gradient(1000px 500px at 80% 30%, rgba(255, 255, 255, .06), transparent 60%),
    radial-gradient(800px 500px at 80% 80%, rgba(255, 255, 255, .05), transparent 60%),
    linear-gradient(135deg, var(--mivan-bg), var(--mivan-bg2));
  color: var(--mivan-text);
}

.mivan-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 36px;
  align-items: center;
}

.mivan-imageCard {
  background: rgba(255, 255, 255, .08);
  border-radius: var(--mivan-radius);
  padding: 14px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .25);
  overflow: hidden;
}

.mivan-imageCard img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: calc(var(--mivan-radius) - 10px);
  object-fit: cover;
  aspect-ratio: 16 / 10;
}

.mivan-content {
  padding: 8px 0;
}

.mivan-title {
  margin: 0 0 14px;
  line-height: 1.05;
  letter-spacing: .5px;
}

.mivan-title span {
  display: block;
  font-weight: 800;
  font-size: clamp(28px, 3.1vw, 44px);
  color: var(--mivan-gold);
}

.mivan-title .thin {
  font-weight: 700;
  color: var(--mivan-text);
  font-size: clamp(22px, 2.6vw, 36px);
  margin-top: 4px;
}

.mivan-desc {
  margin: 0 0 22px;
  max-width: 620px;
  color: var(--mivan-muted);
  font-size: 16px;
  line-height: 1.6;
}

.mivan-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 40px;
  align-items: start;
}

.mivan-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.mivan-list li {
  display: flex;
  gap: 12px;
  align-items: center;
  color: #fff;
  font-size: 16px;
  line-height: 1.35;
  white-space: nowrap;
}

.mivan-icn {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .14);
  flex: 0 0 34px;
}

.mivan-icn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: rgba(255, 255, 255, .95);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Responsive */
@media (max-width: 980px) {
  .mivan-container {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .mivan-features {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .mivan-list li {
    white-space: normal;
  }
}


/* YOUTUBE VIDEO SECTION */
.single-video-section {
  width: 100%;
  padding: 60px 0;
  background: #f8f9fb;
}

.video-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  padding-top: 56.25%;
  /* 16:9 Aspect Ratio */
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 600px;
  border: 0;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}


/* LifeStyle Section */

/* Section Background */
.amenities-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #6f1d1b, #8a2a2a);
}

/* Container */
.container {
  width: 90%;
  max-width: 1300px;
  margin: auto;
}

/* Title */
.amenities-title {
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 50px;
  letter-spacing: 1px;
}

.amenities-title span {
  color: #d4af37;
  /* Gold */
}

/* Grid */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* Card */
.amenity-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s ease;
}

.amenity-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

/* Bottom Label */
.amenity-label {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 18px;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  color: #f0c24b;
  background: rgba(120, 25, 25, 0.85);
  backdrop-filter: blur(5px);
}

/* Hover Effect */
.amenity-card:hover {
  transform: translateY(-10px);
}

.amenity-card:hover img {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 1024px) {
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .amenities-grid {
    grid-template-columns: 1fr;
  }

  .amenities-title {
    font-size: 28px;
  }
}


/* Major Feature Section */
.major-features {
  background: #f4f4f4;
  padding: 80px 0;
  text-align: center;
}

.container {
  width: 90%;
  max-width: 1300px;
  margin: auto;
}

.section-title {
  font-size: 28px;
  letter-spacing: 2px;
  color: #7b2c2c;
  margin-bottom: 60px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px 40px;
}

.feature-item {
  text-align: center;
  transition: 0.3s ease;
}

.feature-item img {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
  filter: invert(22%) sepia(32%) saturate(600%) hue-rotate(330deg);
}

.feature-item h4 {
  font-size: 18px;
  font-weight: 600;
  color: #000;
}

.feature-item:hover {
  transform: translateY(-5px);
}

@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
  }
}

@media (max-width: 480px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}






/* Whatsapp Icon */
.wa-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 65px;
  height: 65px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  text-decoration: none;
  z-index: 999;

  /* Soft outer glow like image */
  box-shadow: 0 0 0 12px rgba(37, 211, 102, 0.15);

  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

/* Hover effect */
.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 0 0 14px rgba(37, 211, 102, 0.25);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }

  70% {
    box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}


/* FOOTER Section  */

.mf-footer {
  color: #fff;
  background:
    radial-gradient(1200px 500px at 30% 10%, rgba(255, 255, 255, .06), transparent 60%),
    radial-gradient(900px 450px at 80% 40%, rgba(255, 255, 255, .04), transparent 55%),
    linear-gradient(180deg, #5a1717 0%, #3f1111 100%);
  border-top: 1px solid rgba(255, 255, 255, .06);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.mf-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 44px 20px 28px;
  display: grid;
  grid-template-columns: 1.4fr .8fr 1fr;
  gap: 48px;
}

.mf-col {
  min-width: 0;
}

.mf-brand__top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.mf-logo {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(0, 0, 0, .18);
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .10);
  box-shadow: 0 10px 22px rgba(0, 0, 0, .25);
}

.mf-logo__mark {
  font-weight: 800;
  letter-spacing: .08em;
  font-size: 20px;
  color: #e6c06a;
  /* gold-ish */
}

.mf-brand__name {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: .08em;
  color: #e6c06a;
  line-height: 1;
}

.mf-brand__desc {
  margin: 0;
  color: rgba(255, 255, 255, .86);
  line-height: 1.7;
  font-size: 15.5px;
  max-width: 520px;
}

.mf-heading {
  margin: 8px 0 18px;
  font-size: 26px;
  font-weight: 800;
}

.mf-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mf-link {
  color: rgba(255, 255, 255, .92);
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  width: fit-content;
  position: relative;
  padding-bottom: 2px;
}

.mf-link:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: rgba(230, 192, 106, .9);
  transition: width .2s ease;
}

.mf-link:hover:after {
  width: 100%
}

.mf-contact__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mf-contact__item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: rgba(255, 255, 255, .90);
  line-height: 1.55;
  font-size: 16px;
}

.mf-ico {
  flex: 0 0 26px;
  width: 26px;
  height: 26px;
  color: #fff;
  margin-top: 2px;
  opacity: .95;
}

.mf-ico svg {
  width: 100%;
  height: 100%
}

.mf-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, .10);
  background: rgba(0, 0, 0, .10);
}

.mf-footer__bottomInner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.mf-copy {
  font-size: 18px;
  font-weight: 700;
  color: rgba(255, 255, 255, .92);
}

.mf-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mf-social__btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(0, 0, 0, .18);
  color: #fff;
  text-decoration: none;
  transition: transform .15s ease, background .15s ease;
}

.mf-social__btn:hover {
  transform: translateY(-2px);
  background: rgba(230, 192, 106, .15);
}

.mf-social__btn svg {
  width: 18px;
  height: 18px
}

/* Responsive */
@media (max-width: 980px) {
  .mf-footer__inner {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .mf-heading {
    font-size: 22px
  }

  .mf-brand__name {
    font-size: 24px
  }

  .mf-footer__bottomInner {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* KEY DISTANCE SECTION */

:root{
    --kd-bg: #ffffff;
    --kd-title: #b5965d;            /* gold-ish */
    --kd-card: #4b1d18;             /* deep maroon */
    --kd-accent: #d0b07b;           /* light gold */
    --kd-text: #ffffff;
    --kd-muted: rgba(255,255,255,.72);
    --kd-border: rgba(208,176,123,.55);
  }

  .key-distance{
    background: var(--kd-bg);
    padding: clamp(28px, 4vw, 60px) 0;
  }
  .kd-container{
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
  }
  .kd-title{
    text-align: center;
    font-weight: 800;
    letter-spacing: .06em;
    color: var(--kd-title);
    margin: 0 0 clamp(18px, 3vw, 28px);
    font-size: clamp(22px, 3vw, 38px);
  }

  .kd-grid{
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: clamp(18px, 3vw, 32px);
    align-items: start;
  }

  .kd-card{
    background: var(--kd-card);
    border-radius: 14px;
    padding: clamp(18px, 2.4vw, 26px);
    box-shadow: 0 14px 30px rgba(0,0,0,.12);
  }
  .kd-card-title{
    color: var(--kd-text);
    font-size: clamp(18px, 2.2vw, 26px);
    margin: 0 0 6px;
    font-weight: 800;
  }
  .kd-card-subtitle{
    color: var(--kd-muted);
    margin: 0 0 18px;
    font-size: 14px;
    line-height: 1.4;
  }

  .kd-list{
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
  }

  .kd-item{
    display: grid;
    grid-template-columns: 40px 1fr;
    align-items: center;
    gap: 12px;
    padding: 10px 10px;
    border-radius: 10px;
  }

  .kd-ico{
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border: 1px solid var(--kd-border);
    border-radius: 8px;
    color: var(--kd-accent);
  }
  .kd-ico svg{
    width: 18px;
    height: 18px;
  }

  .kd-text{
    color: var(--kd-text);
    font-size: 15px;
    line-height: 1.35;
  }
  .kd-text b{
    color: var(--kd-accent);
    font-weight: 800;
  }

  .kd-map{
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 14px 30px rgba(0,0,0,.10);
    min-height: 360px;
  }
  .kd-map img{
    width: 100%;
    height: 640px;
    display: block;
    object-fit: contain; /* keep full map visible */
    background: #fff;
  }

  /* Responsive */
  @media (max-width: 980px){
    .kd-grid{ grid-template-columns: 1fr; }
    .kd-map{ min-height: 300px; }
  }



  /* contact form */

.enquiry-section {
  /* background: #121212; */
  padding: 60px 18px;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #0b0b0b; 
}

.enquiry-wrap {
  max-width: 1200px;
  margin: 0 auto;
  background: var(--bg);
  border-radius: 10px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 0;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .45);
}

/* LEFT */
.enquiry-left {
  padding: 54px 48px;
  /* background: #242424; */
}

.mini-title {
  letter-spacing: 4px;
  font-size: 12px;
  color: var(--gold);
  margin: 0 0 14px;
  font-weight: 700;
}

.big-title {
  margin: 0;
  font-size: 54px;
  line-height: 1.05;
  font-weight: 800;
  font-family: Georgia, "Times New Roman", serif;
}

.big-title span {
  color: var(--gold);
}

.gold-line {
  width: 54px;
  height: 4px;
  background: var(--gold);
  margin: 18px 0 22px;
}



.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
  color: #0b0b0b; 
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: #0b0b0b; 
}

.contact-list i {
   color: #0b0b0b; 
  margin-top: 3px;
  width: 18px;
}

.contact-list a {
  color: #0b0b0b; 
  text-decoration: none;
}

.contact-list a:hover {
  text-decoration: underline;
}

/* RIGHT */
.enquiry-right {
  padding: 44px 48px 54px;
  /* background: #2b2b2b; */
  position: relative;
}

.top-gold {
  height: 4px;
  width: 92%;
  background: var(--gold);
  margin: 6px 0 28px auto;
}

.form-title {
  margin: 0 0 6px;
  font-size: 30px;
  font-weight: 800;
  font-family: Georgia, "Times New Roman", serif;
}



.enquiry-form {
  display: grid;
  gap: 14px;
}

.enquiry-form input,
.enquiry-form textarea {
  width: 100%;
  background: var(--field);
  border: 1px solid var(--border);
  padding: 14px 16px;
  border-radius: 2px;
  color: #0b0b0b; 
  outline: none;
  font-size: 14.5px;
}

.enquiry-form input::placeholder,
.enquiry-form textarea::placeholder {
  color: #9f9f9f;
}

.enquiry-form input:focus,
.enquiry-form textarea:focus {
  border-color: var(--gold);
}

.btn-send {
  margin-top: 14px;
  width: 100%;
  background: #7d2b2b;
  border: none;
  padding: 16px 18px;
  border-radius: 2px;
  font-weight: 900;
  letter-spacing: 3px;
  color: #ffffff;
  cursor: pointer;
  text-transform: uppercase;
}

.btn-send:hover {
  filter: brightness(1.05);
}

/* Responsive */
@media (max-width: 980px) {
  .enquiry-wrap {
    grid-template-columns: 1fr;
  }

  .enquiry-left,
  .enquiry-right {
    padding: 34px 22px;
  }

  .big-title {
    font-size: 42px;
  }
}


