:root {
  --primary: #c8743c; /* Logo orange */
  --dark: #111111;
  --light: #ffffff;
  --soft: #f7f5f2;
  --heading: linear-gradient(45deg, #fef3d2 20%, #d59247 100%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--dark);
  background: var(--light);
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  height: 72px;
  padding: 0 8%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  z-index: 1000;
}

.logo img {
  height: 58px;
  padding-top: 5px;
}

.desktop-nav {
  display: flex;
  align-items: center;
}

.nav-link {
  margin-left: 2rem;
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  position: relative;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary);
}

.nav-btn {
  margin-left: 2rem;
  padding: 0.8rem 1.4rem;
  background: linear-gradient(45deg, #f3d57b 0%, #c97a2d 100%);
  color: white;
  border: none;
  cursor: pointer;
  font-weight: 500;
  font-size: 1rem;
}

.nav-btn:hover {
  opacity: 0.9;
}

/* CTA highlight animation */
.nav-btn,
.hero-btn,
.price-btn,
.btn-call,
.drawer-btn,
.btm-cta,
.legacy-btn {
  position: relative;
  overflow: hidden;
  animation: ctaPulse 2.8s ease-in-out infinite;
}

@keyframes ctaPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(200, 116, 60, 0.0);
    transform: translateY(0);
  }
  50% {
    box-shadow: 0 10px 24px rgba(200, 116, 60, 0.25);
    transform: translateY(-1px);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(200, 116, 60, 0.0);
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .nav-btn,
  .hero-btn,
  .price-btn,
  .btn-call,
  .drawer-btn,
  .btm-cta,
  .legacy-btn {
    animation: none;
  }
}

/* HERO */
.hero {
  height: 100vh;
  width: 100%;
  padding: 0 8%;
  background-image: url("assests/banner-2.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: white;
  margin-top: 60px;
}
@media (max-width: 768px) {
  .hero {
    background-image: url("assests/mobile-hero.png");
  }
}
.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: 3.6rem;
}

.hero p {
  margin-top: 1rem;
  max-width: 540px;
  line-height: 1.7;
}

.hero-btn {
  margin-top: 2rem;
  width: fit-content;
  padding: 0.9rem 2rem;
  background: var(--primary);
  border: none;
  color: white;
  font-weight: 600;
  cursor: pointer;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hero-container .contact {
  min-width: 450px;
  background-color: white;
  padding: 2.5rem;
  border-radius: 8px;
}
.hero-container .contact h2 {
  color: var(--dark);
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  .hero-btn {
    margin-top: 1rem;
  }
  .hero-container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4rem;
  }
  .hero-container .contact {
    min-width: auto;
    width: 100%;
  }
}

/* SECTIONS */
section {
  padding: 4rem 8%;
}

h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  margin-bottom: 1rem;
  position: relative;
}

/*h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: var(--primary);
  margin-top: 0.6rem;
}
*/
/* ABOUT */
.about p {
  max-width: 700px;
  line-height: 1.8;
}
.about img {
  width: 50%;
  border-radius: 8px;
}

/* CONTACT */
.contact form {
  display: flex;
  flex-direction: column;
}

.contact input,
.contact textarea {
  margin-bottom: 1rem;
  padding: 0.9rem;
  border: 1px solid #ccc;
}

.contact button {
  padding: 0.9rem;
  background: linear-gradient(45deg, #f3d57b 0%, #c97a2d 100%);
  border: none;
  cursor: pointer;
}
.contact span {
  color: white !important;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 1.5rem;
  background: var(--soft);
}

/* ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* MOBILE NAV */
.hamburger {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
}

.side-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 260px;
  height: 100vh;
  background: var(--dark);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  transition: 0.3s ease;
  z-index: 2000;
}
.side-drawer .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.side-drawer .header img {
  height: 50px;
}

.side-drawer.open {
  right: 0;
}

.drawer-link {
  color: white;
  text-decoration: none;
}

.drawer-btn {
  padding: 0.7rem;
  background: var(--primary);
  color: white;
  border: none;
}

.close-btn {
  align-self: flex-end;
  font-size: 2rem;
  color: white;
  cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }
  .hamburger {
    display: block;
  }
  .about-sec {
    flex-direction: column-reverse;
  }
  .about-sec img {
    display: none;
  }

  section {
    padding: 3rem 6%;
  }
}

.subheading {
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.about-sec {
  display: flex;
  gap: 2rem;
}
.w-50 {
  width: 50%;
}
.w-70 {
  width: 70%;
}

/* highlights section styling */
.project-highlights {
  position: relative;
  padding: 0; /* Remove default padding */
}

/* Highlights container holds bg + overlay */
.project-highlights .highlights-container {
  position: relative;
  overflow: hidden; /* IMPORTANT: limits overlay */
  background: url("https://via.placeholder.com/1600x900") center/cover no-repeat;
  color: white;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: flex-start;
  padding: 6rem 8%;
}

.project-highlights .highlights-container .highlights-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.project-highlights .highlights-container > * {
  position: relative;
  z-index: 2;
}

/* LEFT CONTENT */
.highlights-left h2 {
  font-family: "Playfair Display", serif;
  font-size: 3.2rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.highlights-left p {
  max-width: 420px;
  line-height: 1.8;
  color: #e0e0e0;
}

/* CALL BUTTON */
.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  padding: 8px 16px;
  background: transparent;
  color: white;
  font-size: 1rem;
  border: 2px solid var(--primary);
  text-decoration: none;
  cursor: pointer;
}

.btn-call:hover {
  background: var(--primary);
}

/* RIGHT CONTENT */
.highlights-right {
  border-left: 2px solid var(--primary);
  padding-left: 3rem;
}

.highlight-item {
  margin-bottom: 2rem;
}

.highlight-item h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.highlight-item p {
  font-size: 0.95rem;
  color: #d0d0d0;
  line-height: 1.6;
}

/* Hallmarks Section */
.hallmark-wrapper {
  padding: 3rem 8%;
  position: relative;
  background: #ffffff;
}

/* Header */
.hallmark-header {
  display: flex;
  justify-content: end;
  align-items: end;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.hallmark-header .hallmark-heading {
  display: flex;
  flex-direction: column;
  width: 40%;
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 3.5rem;
  color: #0f3f3c;
  line-height: 1.3;
  letter-spacing: 5px;
}
.hallmark-header .hallmark-heading .ml {
  margin-left: 210px;
}

.hallmark-line {
  flex: 1;
  height: 3px;
  background: #0f3f3c;
  width: 50%;
}

.specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  background: #0f3f3c; /* brochure green */
  padding: 4rem 6%;
  color: #ffffff;
}

.specs-col {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.specs-block h4 {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
  color: #e88b3c; /* brochure orange */
  position: relative;
}

.specs-block h4::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: #ffffff;
  margin-top: 0.6rem;
  opacity: 0.7;
}

.specs-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.specs-block ul li {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0.6rem;
  padding-left: 1rem;
  position: relative;
  opacity: 0.95;
}

.specs-block ul li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: #ffffff;
  opacity: 0.7;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .specs-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 900px) {
  .project-highlights .highlights-container {
    grid-template-columns: 1fr;
    padding: 4rem 6%;
  }

  .highlights-right {
    border-left: none;
    border-top: 2px solid var(--primary);
    padding-left: 0;
    padding-top: 2rem;
  }
}

@media (max-width: 768px) {
  .hallmark-wrapper {
    padding: 2rem 4%;
  }
  .highlights-left h2 {
    font-size: 2.4rem;
  }
  .hallmark-header {
    margin-bottom: 2rem;
    justify-content: start;
    align-items: center;
  }

  .hallmark-header h2 {
    font-size: 2.2rem;
  }

  .hallmark-header .hallmark-heading .ml {
    margin-left: 70px;
  }
  .hallmark-header .hallmark-heading {
    font-size: 2rem;
  }
  .hallmark-line {
    display: none;
  }
}

/* Amenities Section */
.amenities {
  background-color: #f4f4f485;
}

.amenities-heading .hallmark-header {
  flex-direction: row-reverse;
}
.amenities-heading .hallmark-header .hallmark-heading {
  width: 45%;
  font-size: 3.5rem;
  font-weight: 600;
}
.amenities-heading .hallmark-header .ml {
  margin-left: 160px;
}
.amenities-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  /* align-items: center; */
  justify-content: start;
}
.amenities-item {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.amenities-item img {
  width: 50%;
  border-radius: 12px;
  height: 300px;
}
.amenities-item .content {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.row {
  flex-direction: row;
}
.row-reverse {
  flex-direction: row-reverse;
}
.amenities-item .content p {
  font-weight: 600;
  font-size: 1.2rem;
}

/* contact form */
/* OVERLAY */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  z-index: 9998;
}

/* POPUP */
.popup-form {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  background: #ffffff;
  width: 90%;
  max-width: 420px;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  display: none;
  z-index: 9999;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.popup-form h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.popup-form p {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  color: #555;
}

/* FORM */
.popup-form input {
  width: 100%;
  padding: 0.8rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  font-size: 0.95rem;
}

.popup-form .submit-btn {
  width: 100%;
  padding: 0.9rem;
  background: linear-gradient(45deg, #f3d57b 0%, #c97a2d 100%);
  color: white;
  border: none;
  font-weight: 600;
  cursor: pointer;
}
.popup-form .submit-btn span {
  color: white !important;
}

.popup-form button:hover {
  opacity: 0.9;
}

/* CLOSE */
.popup-close {
  padding: 0px 8px;
  position: absolute;
  top: 12px;
  right: 14px;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
}
.popup-close:hover {
  color: var(--primary);
}

@media (max-width: 768px) {
  .amenities-heading .hallmark-header .ml {
    margin-left: 0;
  }
  .amenities-heading .hallmark-header .hallmark-heading {
    font-size: 2rem;
    width: 100%;
  }
  .mob-ml {
    margin-left: 4rem;
  }
  .row,
  .row-reverse {
    flex-direction: column;
  }
  .amenities-item img,
  .amenities-item .content {
    width: 100%;
    height: auto;
  }
  .amenities-list {
    gap: 4rem;
  }
}

.contact-container {
  display: flex;
}
.form-container {
  flex: 1;
  width: 40%;
}
.contact-container iframe {
  flex: 1;
  width: 60%;
}
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    gap: 4rem;
  }
  .form-container,
  .contact-container iframe {
    width: 100%;
    height: 100%;
  }
}

/* connectivity section */
.connectivity {
  background: radial-gradient(circle at top, #2a0a3d, #140020 70%);
  color: #ffffff;
}

.connectivity-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* HEADER */
.connectivity-header {
  max-width: 600px;
  margin-bottom: 2rem;
}

.connectivity-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  margin-bottom: 1rem;
}

.connectivity-header p {
  line-height: 1.7;
  opacity: 0.85;
}

/* BLOCKS */
.connectivity-block {
  margin-bottom: 3.5rem;
}

.connectivity-block h3 {
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
  color: var(--primary);
}

/* LIST */
.connectivity-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 520px;
}

.connectivity-list li {
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 1rem;
}

.connectivity-list li strong {
  color: #ffffff;
}

/* INFRA GRID */
.infra-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.infra-grid h4 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.infra-grid p {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.9;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .infra-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .connectivity-header h2 {
    font-size: 2.4rem;
  }
  .connectivity .quick {
    flex-direction: column;
    gap: 0px !important;
  }
}

.connectivity .quick {
  display: flex;
  align-items: start;
  gap: 10rem;
  margin-top: 3rem;
}

/* layout */
/* LAYOUT SECTION */

/* IMAGES */
.layout-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.layout-img {
  width: 100%;
  cursor: pointer;
  border-radius: 6px;
  transition: transform 0.3s ease;
}

.layout-img:hover {
  transform: scale(1.02);
}

/* FULLSCREEN OVERLAY */
.fullscreen-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.fullscreen-overlay img {
  max-width: 90%;
  max-height: 90%;
}

.fullscreen-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2.5rem;
  color: white;
  cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .layout-images {
    grid-template-columns: 1fr;
  }
}

/* PRICE TABLE */
/* PRICING TABLE */
.table-wrapper {
  overflow-x: auto;
  margin-top: 1rem;
}

.table-wrapper table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* HEADER */
.table-wrapper thead {
  background: var(--primary);
  color: #ffffff;
}

.table-wrapper thead td {
  padding: 1.2rem 1rem;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

/* BODY */
.table-wrapper tbody td {
  padding: 1.1rem 1rem;
  border-bottom: 1px solid #eee;
  font-size: 0.95rem;
  color: #333;
}

/* LAST ROW BORDER FIX */
.table-wrapper tbody tr:last-child td {
  border-bottom: none;
}

/* HOVER */
.table-wrapper tbody tr:hover {
  background: #fafafa;
}

/* ALIGNMENTS */
.table-wrapper td:nth-child(2),
.table-wrapper td:nth-child(3),
.table-wrapper td:nth-child(4) {
  text-align: center;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .table-wrapper thead {
    display: none;
  }

  .table-wrapper tbody tr {
    display: block;
    margin-bottom: 1rem;
    border: 1px solid #eee;
    border-radius: 6px;
  }

  .table-wrapper tbody td {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 1rem;
    border-bottom: 1px solid #eee;
  }

  .table-wrapper tbody td::before {
    content: attr(data-label);
    font-weight: 600;
    color: #555;
  }

  .table-wrapper tbody td:last-child {
    border-bottom: none;
  }
}

/* configuration styling */
.configuration {
  background: radial-gradient(circle at top, #2a0a3d, #140020 70%);

  display: flex;
  justify-content: center;
}

/* CONTAINER */
.config-container {
  max-width: 1200px;
  width: 100%;
  text-align: center;
}

/* TITLE */
.config-title {
  color: #f5d9a6;
  font-size: clamp(22px, 4vw, 32px);
  letter-spacing: 2px;
  /* margin-bottom: clamp(30px, 6vw, 50px); */
  font-weight: 500;
}

/* CARD */
.config-card {
  width: min(100%, 320px);
  margin: 20px auto 0;
  border-radius: 20px;
  background: #fff;
  border: 2px solid #d6a45a;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s ease;
}

.config-card:hover {
  transform: translateY(-6px);
}

/* CARD TOP */
.card-top {
  padding: clamp(22px, 4vw, 30px) 20px;
}

.card-top h3 {
  font-size: clamp(16px, 3.5vw, 20px);
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.title-wrap .line {
  width: 160px;
  height: 1px;
  margin: 0;
  background: linear-gradient(to right, transparent, #d6a45a, transparent);
}

@media (max-width: 480px) {
  .title-wrap .line {
    width: 50px;
  }
}

.line {
  display: block;
  width: 60px;
  height: 3px;
  background: #2a0a3d;
  margin: 0 auto 18px;
}

.area {
  font-size: 18px;
  font-weight: 600;
}

.unit {
  font-size: 14px;
  letter-spacing: 1px;
  margin-top: 6px;
}

/* CARD BOTTOM */
.card-bottom {
  background: linear-gradient(45deg, #f5e6b8 0%, #c97a2d 100%);
  padding: clamp(18px, 4vw, 22px);
}

/* BUTTON */
.price-btn {
  background: transparent;
  border: 2px solid #2a0a3d;
  padding: 10px 24px;
  font-size: clamp(14px, 3.5vw, 15px);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  animation: pricePulse 2s ease-in-out infinite;
}

.price-btn:hover {
  background: #2a0a3d;
  color: #fff;
}

.price-btn::after {
  content: "";
  position: absolute;
  inset: -40% -20%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(42, 10, 61, 0.35) 45%,
    transparent 70%
  );
  transform: translateX(-140%) rotate(6deg);
  animation: priceShine 2.4s ease-in-out infinite;
}

@keyframes pricePulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(42, 10, 61, 0.0);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 12px 26px rgba(42, 10, 61, 0.28);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(42, 10, 61, 0.0);
  }
}

@keyframes priceShine {
  0% {
    transform: translateX(-140%) rotate(6deg);
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  60% {
    transform: translateX(140%) rotate(6deg);
    opacity: 0;
  }
  100% {
    transform: translateX(140%) rotate(6deg);
    opacity: 0;
  }
}

/* MOBILE TWEAKS */
@media (max-width: 480px) {
  .line {
    width: 50px;
  }

  .price-btn {
    width: 100%;
  }
}

/* new amenties section with carousel */
/* ==============================
   AMENITIES SECTION
================================ */

.amenities {
  padding: 90px 16px;
  /* background: radial-gradient(circle at top, #2a0a3d, #140020 70%); */
  overflow: hidden;
}

/* ==============================
   CAROUSEL WRAPPER
================================ */

.amenities-carousel-v2 {
  position: relative;
  max-width: 1200px;
  margin: 50px auto 0;
}

/* Viewport */
.amenities-viewport-v2 {
  overflow: hidden;
  width: 100%;
}

/* Track */
.amenities-track-v2 {
  display: flex;
  gap: 32px; /* space between cards */
  will-change: transform;
  transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ==============================
   SLIDES
================================ */

/* 3 slides visible on desktop */
.amenities-slide-v2 {
  flex: 0 0 calc((100% - 64px) / 3);
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  /* box-shadow: 0 14px 36px rgba(0, 0, 0, 0.3); */
}

/* Image */
.amenities-slide-v2 img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
}

/* Content */
.amenities-slide-v2 .content {
  padding: 20px 18px;
  text-align: center;
}

.amenities-slide-v2 .content p {
  font-size: 16px;
  letter-spacing: 1px;
  margin-bottom: 6px;
  color: #140020;
}

.amenities-slide-v2 .content span {
  font-size: 14px;
  opacity: 0.75;
  color: #333;
}

/* ==============================
   NAVIGATION BUTTONS
================================ */

.amenities-btn-v2 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: #d6a45a;
  color: #140020;
  font-size: 28px;
  cursor: pointer;
  z-index: 3;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.amenities-btn-v2:hover {
  background: #e5bb78;
  transform: translateY(-50%) scale(1.08);
}

.amenities-btn-v2.prev {
  left: -12px;
}

.amenities-btn-v2.next {
  right: -12px;
}

/* ==============================
   RESPONSIVE
================================ */

/* Tablets */
@media (max-width: 1024px) {
  .amenities-track-v2 {
    gap: 24px;
  }

  .amenities-slide-v2 {
    flex: 0 0 calc((100% - 48px) / 3);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .amenities-track-v2 {
    gap: 16px;
  }

  .amenities-slide-v2 {
    flex: 0 0 100%;
  }

  .amenities-slide-v2 img {
    height: 200px;
  }

  .amenities-btn-v2 {
    width: 38px;
    height: 38px;
    font-size: 22px;
  }

  .amenities-btn-v2.prev {
    left: 6px;
  }

  .amenities-btn-v2.next {
    right: 6px;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .amenities {
    padding: 70px 12px;
  }

  .amenities-slide-v2 .content p {
    font-size: 15px;
  }

  .amenities-slide-v2 .content span {
    font-size: 13px;
  }
}

/* new blur layout images */
/* Layout images row */
.layout-images {
  display: flex;
  gap: 24px;
  margin-top: 40px;
}

/* Image wrapper */
.layout-item {
  position: relative;
  flex: 1;
}

/* Blur image */
.layout-img {
  width: 100%;
  filter: blur(6px);
}

/* Plus button */
.layout-plus {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--primary);
  color: #fff;
  font-size: 26px;
  cursor: pointer;
  line-height: 1;
  box-shadow: 0 12px 26px rgba(200, 116, 60, 0.45);
  animation: layoutPlusPulse 1.4s ease-in-out infinite;
}

@keyframes layoutPlusPulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 12px 26px rgba(200, 116, 60, 0.35);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.25);
    box-shadow: 0 20px 40px rgba(200, 116, 60, 0.7);
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 12px 26px rgba(200, 116, 60, 0.35);
  }
}

.layout-plus::after {
  content: "";
  position: absolute;
  inset: -40%;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.55);
  opacity: 0;
  animation: layoutRing 1.4s ease-out infinite;
}

@keyframes layoutRing {
  0% {
    transform: scale(0.8);
    opacity: 0.9;
  }
  70% {
    transform: scale(1.6);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .layout-images {
    flex-direction: column;
  }
  .amenities-track-v2 {
    gap: 0; /* IMPORTANT */
  }

  .amenities-slide-v2 {
    flex: 0 0 100%;
    padding: 0 12px; /* visual spacing without math issues */
    box-sizing: border-box;
  }
}

/* form styling about us */
.contact {
  border: 1px solid var(--primary);
  padding: 20px;
  text-align: center;
  background-image: url("./assests/bgpattern.webp");
}

/* contact-btm */
.contact-btm {
  display: flex;
  gap: 35px;
}

.popup-form {
  background-image: url("./assests/bgpattern.webp");
}

@media (max-width: 768px) {
  .w-50 {
    width: 100%;
  }
  .w-70 {
    width: 100%;
  }
  .about-sec .w-70 {
    display: none;
  }
  .contact-btm {
    flex-direction: column;
  }
}

/* connectivity new */
.connectivity-wrapper {
  display: flex;
  gap: 6rem;
  margin-top: 4rem;
}

/* IMAGE */
.connectivity-left {
  flex: 1;
}

.connectivity-left img {
  width: 100%;
  height: 280px;
  border-radius: 18px;
  object-fit: cover;
}

/* CONTENT */
.connectivity-right {
  flex: 1;
}

/* ACCORDION */
.conn-accordion {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

/* ITEM */
.conn-item {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  padding: 0 1.6rem;
  background: rgba(255, 255, 255, 0.03);
}

/* HEADER */
.conn-header {
  width: 100%;
  background: none;
  border: none;
  padding: 1.4rem 0;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: start;
}

/* ICON */
.conn-icon {
  font-size: 1.6rem;
  transition: transform 0.25s ease;
}

/* BODY */
.conn-body {
  display: none;
  padding-bottom: 1.6rem;
}

/* OPEN STATE */
.conn-item.active .conn-body {
  display: block;
}

.conn-item.active .conn-icon {
  transform: rotate(45deg);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .connectivity-wrapper {
    flex-direction: column;
    gap: 3rem;
  }
}

/* footer */
.footer {
  background: radial-gradient(circle at top, #2a0a3d, #140020 70%);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  color: white;
  padding: 40px 0;
}
.footer p {
  font-weight: 600;
}
.footer a {
  color: white;
  font-weight: 400;
}
.qr-container {
  display: flex;
  gap: 18px;
}
.footer img {
  height: 150px;
  width: 150px;
}
.qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 250px;
}
.qr p {
  font-weight: 300;
}
.footer span {
  font-weight: 300;
}
.disclaimer {
  font-size: 0.8rem;
  opacity: 0.8;
  margin-top: 12px;
  max-width: 1000px;
  text-align: center;
}
.disclaimer span {
  color: white;
}
.info {
  font-size: 14px;
  font-weight: 400;
  max-width: 1200px;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 100%;
}
.footer-bottom .pp-and-tc {
  display: flex;
  gap: 22px;
}
.footer-bottom a {
  color: white;
}

@media (max-width: 600px) {
  .qr-container {
    flex-direction: column;
    gap: 12px;
  }
  .footer img {
    height: 120px;
    width: 120px;
  }
  .qr {
    width: 200px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
  }
  .disclaimer {
    width: 380px;
  }
}

/* loader form btn */
/* ===== FORCE FORM LOADER ===== */
.submit-btn {
  position: relative !important;
}

.submit-btn .loader {
  display: none !important;
  width: 18px;
  height: 18px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top: 3px solid #fff;
  border-radius: 50%;
  animation: spinLoader 0.8s linear infinite;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.submit-btn.loading .btn-text {
  opacity: 0 !important;
}

.submit-btn.loading .loader {
  display: block !important;
}

@keyframes spinLoader {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* new about us */
.about-sec .w-70 {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.about-sec .w-70 h3 {
  font-size: 1.6rem;
  color: var(--primary);
}
.about-sec .w-70 p {
  line-height: 1.8;
  color: #333;
}
.about-sec .w-70 img {
  width: 200px;
}

/* project highlights */
.highlights {
  padding: 40px 20px;
  background: #ffffff;
}

.highlights-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.highlights .title-wrap h2 {
  color: var(--primary);
}
.highlights .title-wrap span {
  color: var(--primary);
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding-top: 40px;
}

.highlight-card {
  background: #fff;
  padding: 35px 25px;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
}

.highlight-card::before,
.highlight-card::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border: 2px solid #1a0a2e;
}

.highlight-card::before {
  top: -6px;
  left: -6px;
  border-right: none;
  border-bottom: none;
}

.highlight-card::after {
  bottom: -6px;
  right: -6px;
  border-left: none;
  border-top: none;
}

.highlight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.icon {
  font-size: 32px;
  margin-bottom: 18px;
}

.highlight-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

.highlights-cta {
  margin-top: 34px;
  display: flex;
  justify-content: center;
}

.highlights-cta-btn {
  padding: 12px 28px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(45deg, #f3d57b 0%, #c97a2d 100%);
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  overflow: hidden;
  animation: highlightsCtaPulse 1.8s ease-in-out infinite;
}

.highlights-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(201, 122, 45, 0.3);
}

.highlights-cta-btn::after {
  content: "";
  position: absolute;
  inset: -35% -22%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.55) 45%,
    transparent 75%
  );
  transform: translateX(-140%) rotate(8deg);
  animation: highlightsCtaShine 2.2s ease-in-out infinite;
  pointer-events: none;
}

@keyframes highlightsCtaPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(201, 122, 45, 0);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 14px 30px rgba(201, 122, 45, 0.4);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(201, 122, 45, 0);
  }
}

@keyframes highlightsCtaShine {
  0% {
    transform: translateX(-140%) rotate(8deg);
    opacity: 0;
  }
  22% {
    opacity: 1;
  }
  52% {
    transform: translateX(145%) rotate(8deg);
    opacity: 0;
  }
  100% {
    transform: translateX(145%) rotate(8deg);
    opacity: 0;
  }
}

/* Mobile spacing improvement */
@media (max-width: 600px) {
  .section-title {
    font-size: 26px;
  }

  .highlight-card {
    padding: 28px 20px;
  }

  .highlights-cta {
    margin-top: 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .highlights-cta-btn {
    animation: none;
  }

  .highlights-cta-btn::after {
    animation: none;
    display: none;
  }
}

/* legacy section */
.legacy-section {
  background: linear-gradient(180deg, #2b3f73 0%, #6f78a8 100%);
  padding: 90px 20px;
  color: #ffffff;
}

.legacy-container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.legacy-logo {
  max-width: 180px;
  margin-bottom: 25px;
}

.legacy-header h2 {
  font-size: 34px;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 25px;
}

.legacy-header p {
  max-width: 750px;
  margin: auto;
  font-size: 16px;
  line-height: 1.8;
  opacity: 0.95;
}

.legacy-stats {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.legacy-stats span {
  color: #ffde2a;
}
.stat {
  position: relative;
}

.stat:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -20px;
  top: 10%;
  height: 80%;
  width: 1px;
  background: rgba(255, 255, 255, 0.35);
}

.stat h3 {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 8px;
}

.stat span {
  font-size: 14px;
  letter-spacing: 1px;
}

.legacy-cta {
  margin-top: 50px;
  display: flex;
  justify-content: center;
}

.legacy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  border: 2px solid #f6c452;
  color: #3f2b00;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffe08a 0%, #f6c452 48%, #d89a2b 100%);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  animation: legacyPulse 1.4s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

.legacy-btn:hover {
  background: linear-gradient(135deg, #ffeaad 0%, #f8cf68 48%, #e1a53a 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.32);
}

@keyframes legacyPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(246, 196, 82, 0);
  }
  50% {
    transform: scale(1.07);
    box-shadow: 0 16px 34px rgba(246, 196, 82, 0.5);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(246, 196, 82, 0);
  }
}

.legacy-btn::after {
  content: "";
  position: absolute;
  inset: -40% -20%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.6) 45%,
    transparent 70%
  );
  transform: translateX(-140%) rotate(6deg);
  animation: legacyShine 2.2s ease-in-out infinite;
}

@keyframes legacyShine {
  0% {
    transform: translateX(-140%) rotate(6deg);
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  60% {
    transform: translateX(140%) rotate(6deg);
    opacity: 0;
  }
  100% {
    transform: translateX(140%) rotate(6deg);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .legacy-btn {
    animation: none;
  }
  .legacy-btn::after {
    animation: none;
  }
}

/* Tablet */
@media (max-width: 900px) {
  .legacy-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 30px;
  }

  .stat::after {
    display: none;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .legacy-header h2 {
    font-size: 26px;
  }

  .legacy-header p {
    font-size: 15px;
  }

  .stat h3 {
    font-size: 34px;
  }
}

.bottom-cta {
  display: none;
}

@media (max-width: 600px) {
  .bottom-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 8px;
    background: #ffffff;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    border-top: 1px solid #d7d7d7;
    box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.12);
    gap: 6px;
    z-index: 1200;
  }

  .bottom-cta a {
    flex: 1;
    text-align: center;
    text-decoration: none;
    color: white;
    font-weight: 500;
    padding: 9px 6px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    border: 1px solid #ffffff;
    background: #b00000;
    margin: 0;
    border-radius: 4px;
    transition: background 0.2s ease;
    min-height: 54px;
    line-height: 1;
    font-size: 12px;
    letter-spacing: 0;
    text-transform: none;
  }

  .bottom-cta a:not(:last-child) {
    border-right: 1px solid #ffffff;
  }
}

.bottom-cta-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  transform-origin: center;
  filter: drop-shadow(0 0 0 rgba(255, 255, 255, 0));
  animation: ctaIconPulse 1.9s cubic-bezier(0.16, 1, 0.3, 1) infinite;
  will-change: transform, filter;
}

.bottom-cta-link:nth-child(2) svg {
  animation-delay: 0.14s;
}

.bottom-cta-link:nth-child(3) svg {
  animation-delay: 0.28s;
}

.bottom-cta-link:hover {
  background: #930000;
}

@keyframes ctaIconPulse {
  0%,
  52%,
  100% {
    transform: scale(1) translateY(0);
    filter: drop-shadow(0 0 0 rgba(255, 255, 255, 0));
  }
  14% {
    transform: scale(1.2) translateY(-1px);
    filter: drop-shadow(0 0 7px rgba(255, 255, 255, 0.68));
  }
  28% {
    transform: scale(0.94) translateY(0);
    filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.32));
  }
}

@media (prefers-reduced-motion: reduce) {
  .bottom-cta-link svg {
    animation: none;
  }
}

