:root {
    --main: #323583;
    --text-dark: #1a1a1a;
    --text-muted: #737373;
    --bg-ivory: #dadbfa;
    --bg-white: #ffffff;
    --bg-beige: #dadbfa;
    --bg-grey: #f8f8f8;
    --radius: 18px;
    --shadow-soft: 0 14px 40px rgba(0, 0, 0, 0.08);
}

/* ===== HERO ===== */
.home-banner {
    position: relative;
    height: 100vh;
    min-height: 580px;
    overflow: hidden;
}

.home-banner video,
.home-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.06));
    z-index: 1;
}

.explore-more-arrow {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    z-index: 2;
    text-align: center;
    letter-spacing: 3px;
    font-size: 0.82rem;
    font-weight: 500;
}

.explore-more-arrow i {
    display: block;
    margin-top: 8px;
    animation: hero-arrow-bounce 1.6s infinite;
}

@keyframes hero-arrow-bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(7px);
    }
}

/* ===== ABOUT ===== */
.about-door {
    background-color: var(--bg-ivory);
    padding: 140px 0 130px;
    overflow: hidden;
    position: relative;
    border-radius: 50px 50px 0 0;
    margin-top: -100px;
}

.about-door::after {
    content: "";
    position: relative;
    inset: 0;
    background: linear-gradient(to right, rgba(250, 247, 242, 0.97) 0%, rgba(250, 247, 242, 0.9) 35%, rgba(250, 247, 242, 0.4) 100%);
}

.about-door .container {
    position: relative;
    z-index: 2;
}

.about-eyebrow {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--main);
    font-weight: 600;
}

.about-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    color: var(--text-dark);
    margin: 18px 0;
}

.about-text {
    font-size: 1.02rem;
    color: var(--text-muted);
    max-width: 620px;
    line-height: 1.9;
}

.about-buttons {
    margin-top: 26px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.btn-gold {
    background: var(--main);
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 15px 24px;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(224, 185, 115, 0.32);
}

.btn-gold:hover {
    background: #d4a45f;
}
/* ===== LATEST LAUNCHES (Refined) ===== */
.latest-launches-section {
  background: var(--bg-beige);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.latest-launches-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.1rem;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 50px;
}

.latest-launches-title span {
  color: var(--main);
}

/* Swiper container - reduced frame look */
/* === SLIDER STRUCTURE === */
.latest-launch-swiper {
  position: relative;
  width: 80%;
  margin: 0 auto;
  top: -40px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

/* Each slide */
.latest-launch-swiper .swiper-slide {
  display: block; /* Use block to let image fill naturally */
  width: 100%;
  height: 100%;
  position: relative;
}

/* Slide box with smooth hover */
.latest-launch-slide-box {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  height: 100%;
}

.latest-launch-slide-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

/* === IMAGE FIX (fills box properly) === */
.latest-launch-image {
  position: relative;
  width: 100%;
  height: 100%;
}

.latest-launch-image img {
  width: 100%;
  height: 600px; /* or 100% if you have dynamic height container */
  object-fit: cover;
  display: block;
}

/* === ARROWS === */
.latest-launches-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 25px;
  pointer-events: none;
  z-index: 5;
}

.latest-launches-nav img {
  width: 42px;
  height: 42px;
  pointer-events: all;
  cursor: pointer;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.3));
}

.latest-launches-nav img:hover {
  transform: scale(1.15);
}

/* Hide default arrows */
.latest-launch-swiper .swiper-button-next::after,
.latest-launch-swiper .swiper-button-prev::after {
  display: none !important;
}

/* === MOBILE === */
@media (max-width: 768px) {
  .latest-launch-swiper {
    width: 92%;
    top: -20px;
  }

  .latest-launch-image img {
    height: 340px;
  }
}

/* Amenities / project info */
.launch-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
  margin: 25px auto;
  padding: 0 20px;
}

.latest-launch-logo img {
  max-height: 100px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.latest-launch-logo img:hover {
  transform: scale(1.05);
}

.amenities-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 25px;
}

.amenities-lists {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.4s ease;
}

.amenities-lists:hover {
  transform: translateY(-4px) scale(1.05);
}

.amenities-lists svg {
  width: 32px;
  height: 32px;
  color: var(--main);
  margin-bottom: 8px;
}

.amenities-lists span {
  font-size: 0.85rem;
  color: var(--text-dark);
  text-transform: capitalize;
}

/* Button */
.button-1 {
  background: var(--main);
  color: #fff;
  border-radius: 999px;
  padding: 14px 30px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: none;
}

.button-1:hover {
  background: #d4a45f;
}

/* Mobile tweaks */
@media (max-width: 768px) {
  .launch-row {
    flex-direction: column;
    gap: 18px;
  }

  .button-1 {
    padding: 12px 24px;
  }
}


/* ===== Values Section ===== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 80px;
}

.value-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 50px 30px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.value-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(192, 160, 76, 0.08), rgba(255, 255, 255, 0));
    opacity: 0;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.value-card:hover::after {
    opacity: 1;
}

.value-icon {
    font-size: 42px;
    color: #323583;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.value-card:hover .value-icon {
    transform: scale(1.15);
    color: var(--gold-light);
}

.value-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 600;
}

.value-card p {
    color: var(--text-gray);
    font-size: 15.5px;
    line-height: 1.7;
}

/* ===== Stats Section ===== */
.stats {
    background: #f9f9fb;
    padding: 100px 0;
    position: relative;
}

.stats .section-title {
    text-align: center;
    font-size: 46px;
    font-weight: 600;
    color: #1b1b1f;
    margin-bottom: 70px;
    letter-spacing: -0.5px;
}

.stat-card {
    background: #fff;
    border-radius: 16px;
    padding: 60px 30px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(40px);
}

.stat-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: #323583;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 30px;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.stat-card:hover .icon-circle {
    background: #323583;
    transform: scale(1.1);
}

.stat-card h3 {
    font-size: 40px;
    font-weight: 700;
    color: #1c1c20;
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.stat-card p {
    font-size: 15px;
    color: #707070;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .stats {
        padding: 70px 0;
    }

    .stat-card {
        padding: 40px 25px;
    }

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

    .icon-circle {
        width: 70px;
        height: 70px;
        font-size: 26px;
    }
}

@media (max-width: 576px) {
    .stat-card {
        margin-bottom: 20px;
    }

    .stats .section-title {
        font-size: 36px;
        margin-bottom: 50px;
    }
}

/* ===== Responsive ===== */
@media(max-width:992px) {
    .values-grid {
        margin-top: 50px;
    }
}
