* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  min-width: 0;
}
html,
body {
  overflow-x: hidden !important;
  max-width: 100%;
}
section,
div {
  max-width: 100%;
}
body {
  font-family: "Times New Roman", Times, serif !important;
  background: #fff;
}
body.popup-open {
  overflow: hidden;
}

:root {
  --primary-gradient: linear-gradient(135deg, #9e1c3d 0%, #7a0f2a 30%, #4b1f4f 65%, #1e2148 100%);
  --accent-solid: #9e1c3d;
  --accent-light: #c44569;
  --accent-dark: #4b1f4f;
}

/* ===================================================
   HERO — IMAGE BANNER
   =================================================== */
.hero {
  position: relative;
  width: 100%;
  min-height: 135vh;
  overflow: hidden;
  background: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* dark gradient overlay */
/* .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.28) 0%,
    rgba(0, 0, 0, 0.55) 60%,
    rgba(0, 0, 0, 0.82) 100%
  );
  z-index: 1;
} */

/* hero text */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 20px;
  max-width: 820px;
  animation: heroFadeIn 1.2s ease both;
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-tag {
  font-size: 12px;
  letter-spacing: 4px;
  color: #c9a96a;
  margin-bottom: 20px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}

.hero-headline {
  font-family: "Playfair Display", serif;
  font-size: clamp(46px, 8vw, 88px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 22px;
  letter-spacing: -1px;
}

.hero-headline span {
  background: linear-gradient(90deg, #c9a96a, #e8d5a3, #c9a96a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 40px;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
}

.hero-cta {
  display: inline-block;
  padding: 16px 44px;
  border: 1.5px solid #c9a96a;
  background: transparent;
  color: #c9a96a;
  font-size: 13px;
  letter-spacing: 3px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.35s ease;
}

.hero-cta:hover {
  background: #c9a96a;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(201, 169, 106, 0.35);
}

@media (max-width: 768px) {
  .hero {
    min-height: 85vh;
  }
  .hero-headline {
    font-size: 40px;
  }
  .hero-sub {
    font-size: 15px;
  }
}

/* ===================================================
   VIDEO SHOWCASE SECTION
   =================================================== */
.video-showcase {
  position: relative;
  background: #09090f;
  padding: 100px 20px 80px;
  overflow: hidden;
}

/* subtle animated gradient blobs */
.vs-bg-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.vs-bg-layer::before {
  content: "";
  position: absolute;
  top: -200px;
  left: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(158, 28, 61, 0.18) 0%, transparent 70%);
  filter: blur(60px);
  animation: blobDrift 12s ease-in-out infinite alternate;
}

.vs-bg-layer::after {
  content: "";
  position: absolute;
  bottom: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(30, 33, 72, 0.22) 0%, transparent 70%);
  filter: blur(60px);
  animation: blobDrift 14s ease-in-out infinite alternate-reverse;
}

@keyframes blobDrift {
  from {
    transform: translate(0, 0) scale(1);
  }
  to {
    transform: translate(60px, 40px) scale(1.1);
  }
}

.vs-container {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: auto;
}

/* Header */
.vs-header {
  text-align: center;
  margin-bottom: 60px;
}

.vs-label {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 5px;
  color: #c9a96a;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  margin-bottom: 18px;
}

.vs-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 600;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
}

.vs-title em {
  background: linear-gradient(90deg, #c9a96a, #e8d5a3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: normal;
}

.vs-desc {
  max-width: 580px;
  margin: 0 auto;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
}

/* Video frame wrapper */
.vs-frame-wrap {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Cinematic frame */
.vs-frame {
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(201, 169, 106, 0.2),
    0 40px 100px rgba(0, 0, 0, 0.7),
    0 0 80px rgba(158, 28, 61, 0.12);
  cursor: pointer;
  background: #000;
  aspect-ratio: 16/9;
}

/* decorative corner accents */
.corner {
  position: absolute;
  width: 24px;
  height: 24px;
  z-index: 10;
  pointer-events: none;
}
.corner.tl {
  top: 14px;
  left: 14px;
  border-top: 1.5px solid #c9a96a;
  border-left: 1.5px solid #c9a96a;
  border-radius: 3px 0 0 0;
}
.corner.tr {
  top: 14px;
  right: 14px;
  border-top: 1.5px solid #c9a96a;
  border-right: 1.5px solid #c9a96a;
  border-radius: 0 3px 0 0;
}
.corner.bl {
  bottom: 60px;
  left: 14px;
  border-bottom: 1.5px solid #c9a96a;
  border-left: 1.5px solid #c9a96a;
  border-radius: 0 0 0 3px;
}
.corner.br {
  bottom: 60px;
  right: 14px;
  border-bottom: 1.5px solid #c9a96a;
  border-right: 1.5px solid #c9a96a;
  border-radius: 0 0 3px 0;
}

.vs-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: pointer;
  transition: opacity 0.3s;
}

/* Play overlay */
.vs-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(2px);
  z-index: 5;
  transition: opacity 0.4s ease;
}

.vs-play-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.vs-play-btn {
  background: none;
  border: none;
  cursor: pointer;
  width: 80px;
  height: 80px;
  transition:
    transform 0.3s ease,
    filter 0.3s ease;
  filter: drop-shadow(0 6px 20px rgba(201, 169, 106, 0.5));
}

.vs-play-btn:hover {
  transform: scale(1.12);
  filter: drop-shadow(0 8px 28px rgba(201, 169, 106, 0.75));
}

.vs-play-btn svg {
  width: 100%;
  height: 100%;
}

.vs-play-label {
  margin-top: 14px;
  font-size: 12px;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.7);
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}

/* Mute button */
.vs-mute-btn {
  position: absolute;
  bottom: 18px;
  right: 18px;
  z-index: 8;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s;
}

.vs-mute-btn:hover {
  background: rgba(201, 169, 106, 0.5);
}

.vs-mute-btn svg {
  width: 18px;
  height: 18px;
}

/* Stats strip */
.vs-stats {
  display: flex;
  align-items: stretch;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 169, 106, 0.15);
  border-top: none;
  border-radius: 0 0 16px 16px;
  overflow: hidden;
}

.vs-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 22px 10px;
  gap: 4px;
}

.vs-num {
  font-family: "Playfair Display", serif;
  font-size: 26px;
  font-weight: 600;
  background: linear-gradient(90deg, #c9a96a, #e8d5a3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.vs-lbl {
  font-size: 11px;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.45);
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  text-align: center;
}

.vs-divider {
  width: 1px;
  background: rgba(201, 169, 106, 0.15);
  align-self: stretch;
  margin: 12px 0;
}

@media (max-width: 600px) {
  .vs-stats {
    flex-wrap: wrap;
  }
  .vs-stat {
    flex: 0 0 50%;
  }
  .vs-divider {
    display: none;
  }
  .vs-play-btn {
    width: 60px;
    height: 60px;
  }
  .corner.bl,
  .corner.br {
    bottom: 80px;
  }
}

/* ===================================================
   NAV
   =================================================== */
.gradient-text {
  background: linear-gradient(180deg, #c93f75, #35084d);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 18px 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 50;
}

.logo {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  font-weight: 600;
  background: linear-gradient(360deg, #c93f75, #35084d);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.logo span {
  color: #c9a96a;
}

nav .buttons {
  display: flex;
  align-items: center;
}

.btn-primary {
  background: linear-gradient(45deg, #c93f75, #35084d);
  border: none;
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 6px;
  cursor: pointer;
  color: #fff;
  transition: 0.25s;
}

.btn-primary:hover {
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  nav {
    padding: 8px 10px;
  }
  .logo {
    font-size: 12px;
  }
  .btn-primary {
    padding: 10px 16px;
    font-size: 13px;
  }
}

/* ===================================================
   LIFE SECTION
   =================================================== */
.life-section {
  background: #f5f2ee;
  padding: 30px 20px 1px 0px;
  text-align: center;
}

.life-container {
  max-width: 1100px;
  margin: auto;
}

.small-title {
  font-size: 14px;
  letter-spacing: 4px;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 25px;
}

.life-section h2 {
  font-family: "Playfair Display", serif;
  font-size: 54px;
  line-height: 1.2;
  color: #222;
  font-weight: 600;
}

.gold-line {
  width: 70px;
  height: 3px;
  background: var(--primary-gradient);
  margin: 30px auto 40px auto;
}

.life-description {
  max-width: 800px;
  margin: auto;
  font-size: 18px;
  line-height: 1.8;
  color: #555;
}

/* ===================================================
   URBAN CARDS
   =================================================== */
.urban-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin: 60px 0;
}

.urban-card {
  background: #ebe6df;
  padding: 35px 30px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: 0.4s ease;
}

.urban-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.card-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.card-text {
  font-size: 16px;
  color: #333;
  font-weight: 500;
}

.urban-desc {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 70px;
}

@media (max-width: 992px) {
  .urban-cards {
    grid-template-columns: 1fr;
  }
}

/* ===================================================
   LIFESTYLE SECTION
   =================================================== */
.lifestyle-section {
  background: var(--primary-gradient);
  padding: 30px 0;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.lifestyle-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h60v60H0z" fill="none"/><path d="M30 0v60M0 30h60" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></svg>');
  opacity: 1;
}

.lifestyle-container {
  max-width: 1200px;
  margin: auto;
}

.lifestyle-top {
  text-align: center;
  margin-bottom: 80px;
}

.lifestyle-section h2 {
  font-family: "Playfair Display", serif;
  font-size: 52px;
  line-height: 1.2;
  margin-bottom: 20px;
  background: #fff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lifestyle-section h2 span {
  background: #fff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lifestyle-desc {
  max-width: 700px;
  margin: auto;
  font-size: 18px;
  color: #ccc;
  line-height: 1.8;
}

.lifestyle-content {
  display: flex;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}

.lifestyle-image {
  flex: 1;
}

.lifestyle-image img {
  width: 100%;
  border-radius: 18px;
  display: block;
}

.lifestyle-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-item {
  background: #ccc;
  padding: 18px 25px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 16px;
  color: var(--accent-dark);
  transition: 0.4s ease;
}

.feature-item:hover {
  transform: translateX(8px);
}

.dot {
  width: 8px;
  height: 8px;
  background: var(--accent-solid);
  border-radius: 50%;
}

.lifestyle-bottom {
  text-align: center;
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 18px;
  color: #ccc;
  margin-top: 40px;
}

@media (max-width: 992px) {
  .lifestyle-content {
    flex-direction: column;
  }
  .lifestyle-section h2 {
    font-size: 36px;
  }
}

/* ===================================================
   DESIGN SECTION
   =================================================== */
.design-section {
  padding: 30px 20px;
  background: #f5f2ee;
}

.design-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 80px;
  align-items: center;
}

.design-content {
  flex: 1;
}

.section-label {
  font-size: 14px;
  letter-spacing: 4px;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}

.design-section h2 {
  font-family: "Playfair Display", serif;
  font-size: 44px;
  line-height: 1.2;
  margin-bottom: 25px;
  color: #222;
}

.design-desc {
  font-size: 18px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
}

.design-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 30px;
}

.design-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 15px;
  font-size: 16px;
  color: #333;
}

.design-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--primary-gradient);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 8px;
}

.design-highlight {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 18px;
  margin-top: 30px;
  color: #333;
}

.design-highlight span {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.design-image {
  flex: 1;
  position: relative;
}

.design-image img {
  width: 100%;
  border-radius: 20px;
  display: block;
}

@media (max-width: 992px) {
  .design-container {
    flex-direction: column;
  }
  .design-section h2 {
    font-size: 34px;
  }
}

/* ===================================================
   CAROUSELS
   =================================================== */
.image-carousel,
.design-carousel {
  position: relative;
  overflow: hidden;
  height: 420px;
  border-radius: 14px;
}

.track {
  display: flex;
  height: 100%;
  transition: transform 0.7s ease;
}

.track img {
  width: 100%;
  flex-shrink: 0;
  object-fit: cover;
}

.nava {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 5;
  font-size: 22px;
}

.prev {
  left: 15px;
}
.next {
  right: 15px;
}

.nava:hover {
  background: #c9a96a;
}

/* ===================================================
   LOCATION
   =================================================== */
.location-section {
  background: #f5f2ee;
  padding: 50px 20px;
  text-align: center;
}

.location-container {
  max-width: 1100px;
  margin: auto;
}

.location-section .section-label {
  font-size: 14px;
  letter-spacing: 4px;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}

.location-section h2 {
  font-family: "Playfair Display", serif;
  font-size: 46px;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #222;
}

.location-section h2 span {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.location-desc {
  max-width: 700px;
  margin: 0 auto 60px;
  font-size: 18px;
  color: #555;
  line-height: 1.8;
}

.map-container {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: 0;
}

@media (max-width: 992px) {
  .location-section h2 {
    font-size: 34px;
  }
}

/* ===================================================
   WHY SECTION
   =================================================== */
.why-section {
  background: url("https://www.transparenttextures.com/patterns/paper-fibers.png"), #f7f5f2;
  padding: 30px 20px;
  color: #fff;
  text-align: center;
}

.why-container {
  max-width: 900px;
  margin: auto;
}

.why-section h2 {
  font-family: "Playfair Display", serif;
  font-size: 50px;
  line-height: 1.2;
  margin-bottom: 60px;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.why-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 60px;
}

.why-item {
  background: linear-gradient(318deg, #9e1c3d 0%, #7a0f2a 30%, #4b1f4f 65%, #1e2148 100%);
  border: 1px solid rgba(194, 138, 44, 0.2);
  border-radius: 10px;
  padding: 20px 25px;
  text-align: left;
  transition: 0.4s ease;
}

.why-item:hover {
  background: var(--accent-light);
  transform: translateY(-4px);
}

.why-title {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 16px;
  color: #ddd;
}

.arrow {
  background: #fff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 18px;
  transition: 0.3s ease;
}

.why-item:hover .arrow {
  transform: translateX(6px);
}

.why-bottom {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 20px;
  color: #2a251f;
}

.why-bottom span {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 992px) {
  .why-section h2 {
    font-size: 36px;
  }
}

/* ===================================================
   ADVANTAGE SECTION
   =================================================== */
.advantage-section {
  background: var(--primary-gradient);
  padding: 30px 20px;
  text-align: center;
  position: relative;
}

.advantage-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h60v60H0z" fill="none"/><path d="M30 0v60M0 30h60" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></svg>');
}

.advantage-container {
  max-width: 1100px;
  margin: auto;
}

.advantage-label {
  font-size: 14px;
  letter-spacing: 4px;
  background: #ccc;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}

.advantage-title {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #fff;
}

.advantage-desc {
  font-size: 18px;
  color: #ccc;
  max-width: 650px;
  margin: 0 auto 60px;
  line-height: 1.8;
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.advantage-box {
  background: #ffffff;
  border: 1px solid #e5dfd8;
  border-radius: 14px;
  padding: 40px 20px;
  transition: 0.4s ease;
}

.advantage-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.adv-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.advantage-box h4 {
  font-size: 16px;
  font-weight: 500;
  color: #333;
}

.advantage-button {
  display: inline-block;
  padding: 16px 40px;
  border-radius: 6px;
  font-size: 14px;
  letter-spacing: 2px;
  text-decoration: none;
  background: var(--primary-gradient);
  color: #fff;
  transition: 0.4s ease;
  cursor: pointer;
}

.advantage-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(182, 123, 43, 0.4);
}

@media (max-width: 992px) {
  .advantage-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .advantage-grid {
    grid-template-columns: 1fr;
  }
  .advantage-title {
    font-size: 34px;
  }
}

/* ===================================================
   CONTACT / FORM
   =================================================== */
.contact-section {
  background: url(https://www.transparenttextures.com/patterns/paper-fibers.png), #f7f5f2;
  padding: 60px 20px 40px;
  color: #fff;
}

.contact-wrapper {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

.contact-left {
  flex: 1;
}

.contact-label {
  font-size: 14px;
  letter-spacing: 4px;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}

.contact-title {
  font-family: "Playfair Display", serif;
  font-size: 46px;
  line-height: 1.2;
  margin-bottom: 25px;
  color: var(--accent-dark);
}

.contact-title span {
  background: linear-gradient(360deg, #9e1c3d 0%, #7a0f2a 30%, #4b1f4f 65%, #1e2148 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-text {
  color: #2a251f;
  line-height: 1.8;
  margin-bottom: 40px;
}

.contact-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-point {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--accent-dark);
  font-weight: 550;
}

.contact-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-form-box {
  flex: 1;
  background: var(--primary-gradient);
  padding: 40px;
  border-radius: 12px;
  border: 1px solid rgba(194, 138, 44, 0.2);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  color: #bbb;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px;
  background: #1f1b16;
  border: 1px solid rgba(194, 138, 44, 0.3);
  border-radius: 6px;
  color: #fff;
  font-size: 14px;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
}

.contact-submit {
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  letter-spacing: 2px;
  cursor: pointer;
  background: var(--primary-gradient);
  color: #fff;
  transition: 0.4s ease;
}

.contact-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(182, 123, 43, 0.4);
}

.contact-footer {
  margin-top: 80px;
  padding-top: 30px;
  border-top: 1px solid rgba(194, 138, 44, 0.2);
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  color: #1f1b16;
  font-size: 14px;
}

.contact-footer span {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 992px) {
  .contact-wrapper {
    flex-direction: column;
  }
  .contact-title {
    font-size: 34px;
  }
  .contact-footer {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

/* ===================================================
   LEAD POPUP
   =================================================== */
.lead-popup {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.75);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 9999;
  overflow-y: hidden;
  opacity: 0;
  visibility: hidden;
  transition: 0.35s ease;
}

.lead-popup.active {
  opacity: 1;
  visibility: visible;
}

.lead-box {
  width: 100%;
  max-width: 520px;
  background: #111;
  color: #fff;
  padding: 40px 38px;
  border-radius: 18px;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  transform: translateY(40px) scale(0.96);
  transition: 0.4s ease;
}

.lead-popup.active .lead-box {
  transform: translateY(0) scale(1);
}

.lead-close {
  position: absolute;
  right: 18px;
  top: 14px;
  font-size: 26px;
  cursor: pointer;
  opacity: 0.7;
  transition: 0.2s;
}

.lead-close:hover {
  opacity: 1;
}

.lead-box h3 {
  font-size: 26px;
  margin-bottom: 8px;
  font-weight: 500;
}

.lead-box p {
  font-size: 14px;
  color: #b5b5b5;
  margin-bottom: 26px;
}

#globalLeadForm {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

#globalLeadForm input,
#globalLeadForm textarea {
  width: 100%;
  padding: 14px 16px;
  background: #0b0b0b;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: #fff;
  font-size: 14px;
  outline: none;
  transition: 0.25s;
}

#globalLeadForm input:focus,
#globalLeadForm textarea:focus {
  border-color: #c8a96a;
  box-shadow: 0 0 0 2px rgba(200, 169, 106, 0.15);
}

#globalLeadForm textarea {
  min-height: 90px;
  resize: none;
}

#globalLeadForm button {
  margin-top: 10px;
  padding: 14px;
  border-radius: 10px;
  border: none;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  background: linear-gradient(135deg, #d4af7a, #b89555);
  color: #000;
  transition: 0.25s;
}

#globalLeadForm button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(212, 175, 122, 0.35);
}

@media (max-width: 768px) {
  .lead-popup {
    align-items: flex-end;
    width: 100%;
  }
  .lead-box {
    padding: 30px 24px;
    border-radius: 16px;
  }
  .lead-box h3 {
    font-size: 22px;
  }
  .lead-close {
    top: 12px;
    right: 16px;
    font-size: 26px;
  }
  .lead-box input,
  .lead-box textarea {
    padding: 15px;
    font-size: 16px;
  }
  .contact-form-box {
    width: 100%;
  }
}

/* ===================================================
   FLOATING BUTTON
   =================================================== */
.floating-enquire {
  position: fixed;
  right: 1%;
  top: 40%;
  transform: rotate(-90deg) translateY(-50%);
  transform-origin: right top;
  background: linear-gradient(45deg, #c93f75, #35084d);
  color: #ffffff;
  border: none;
  padding: 14px 28px;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  z-index: 9999;
  border-radius: 8px 8px 0 0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

@media (max-width: 600px) {
  .floating-enquire {
    right: 2%;
    padding: 12px 20px;
    font-size: 12px;
  }
}

/* ===================================================
   INTRO SECTION
   =================================================== */
.intro-section {
  padding: 90px 10px 20px;
  background: url("https://www.transparenttextures.com/patterns/paper-fibers.png"), #f7f5f2;
  text-align: center;
  overflow: hidden;
}

.intro-container {
  max-width: 920px;
  margin: auto;
  position: relative;
}

.intro-title {
  font-family: "Playfair Display", serif;
  font-size: 54px;
  font-weight: 500;
  color: #2a2a2a;
  margin-bottom: 12px;
  overflow: visible;
  position: relative;
  z-index: 1;
}

.intro-title::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 420px;
  height: 140px;
  background: radial-gradient(circle, rgba(198, 167, 105, 0.18), transparent 70%);
  z-index: -1;
  filter: blur(20px);
}

.intro-subtitle {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.5px;
  background: linear-gradient(90deg, #9e1c3d, #6a3fa0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 32px;
}

.intro-divider {
  width: 80px;
  height: 3px;
  margin: 30px auto 40px;
  background: linear-gradient(90deg, #c6a769, #9e1c3d);
  border-radius: 4px;
  box-shadow: 0 6px 20px rgba(198, 167, 105, 0.35);
}

.intro-content p {
  font-size: 18px;
  line-height: 1.9;
  color: #6d6a66;
  margin-bottom: 22px;
}

.intro-container::before,
.intro-container::after {
  content: "";
  position: absolute;
  top: 20px;
  bottom: 20px;
  width: 1px;
  background: linear-gradient(to bottom, transparent, #c6a769, transparent);
  opacity: 0.5;
}

.intro-container::before {
  left: -60px;
}
.intro-container::after {
  right: -60px;
}

@media (max-width: 1100px) {
  .intro-container::before,
  .intro-container::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .intro-section {
    padding: 80px 18px;
  }
  .intro-title {
    font-size: 34px;
    line-height: 1.2;
  }
  .intro-subtitle {
    font-size: 17px;
  }
  .intro-content p {
    font-size: 16px;
  }
}

/* life section responsive */
@media (max-width: 992px) {
  .life-section h2 {
    font-size: 40px;
  }
}

@media (max-width: 600px) {
  .life-section h2 {
    font-size: 32px;
  }
}
