*{
  font-family: "Montserrat", sans-serif ;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* Smooth scroll offset for sections */
section[id] {
  scroll-margin-top: 80px;
}
body,p{
  font-family: "Montserrat", sans-serif !important;
}
h1,h2,h3,h4,h5{
  font-family: "Playfair Display", serif !important;
}
/* HEADER */
.pg-header {
  background: #fff;
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
  position: sticky;
  top: 0;
  z-index: 201;
}

.header-container {
  width: 90%;
  max-width: 1240px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-logo img {
  height: 45px;
  margin-right: 10px;
}

.header-nav a {
  margin-left: 25px;
  text-decoration: none;
  font-size: 15px;
  color: #444;
}

.header-nav a:hover {
  color: #0059A8;
}


/* HERO SECTION */
.hero-banner {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: start;
  padding: 40px 5%;
  box-sizing: border-box;
}

/* LEFT CONTENT BOX */
.hero-left {
  width: 30%;
}

.hero-box {
  background: #ffffffee;
  padding: 30px;
  border-radius: 12px;
}

.badge {
  font-size: 14px;
  font-weight: 700;
  color: #2c2c2c;
  text-align: center;
}

.hero-title {
  font-size: 24px;
  line-height: 1.3;
  font-weight: 700;
  color: #0059A8;
  margin-top: 10px;
  text-align: center;
}

.hero-sub {
  color: #333;
  margin-top: 5px;
  margin-bottom: 20px;
  text-align: center;
}

.green-btn {
  width: 100%;
  padding: 10px;
  background: #51B749;
  color: #fff;
  border: none;
  border-radius: 6px;
  margin-bottom: 10px;
  font-size: 15px;
}

.hero-small-text {
  font-size: 15px;
  margin-top: 15px;
  color: #333;
  text-align: center;
}

.hero-price {
  font-size: 18px;
  font-weight: 700;
  color: #000;
  text-align: center;
}

.pink-btn {
  width: 100%;
  padding: 12px;
  background: #0059A8;
  color: #fff;
  border-radius: 6px;
  border: none;
  margin-top: 10px;
  font-size: 15px;
}

.rera {
  font-size: 12px;
  margin-top: 10px;
  text-align: center;
}


/* RIGHT FORM BOX */
.hero-right {
  width: 28%;
}

.form-box {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
}
.form-box h3{
  font-size: 20px;
  margin-bottom: 20px;
}
.form-box input,
.form-box select {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.phone-row {
  display: flex;
  gap: 10px;
}
.form-box .phone-row  select{
width: 100px;
}
.form-btn {
  width: 100%;
  padding: 12px;
  background: #0059A8;
  color: white;
  border-radius: 6px;
  border: none;
  margin-top: 5px;
}

.form-note {
  font-size: 12px;
  margin-top: 10px;
  color: #444;
}

/* ---- MOBILE RESPONSIVE ---- */
/* ---- MOBILE RESPONSIVE ---- */
@media (max-width: 768px) {

  .header-nav {
    display: none;
  }

  /* Make banner image show fully first */
  .hero-banner {
    height: auto;
  }

  .hero-bg {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  /* Stack content below image */
  .hero-overlay {
    position: relative;
    top: auto;
    bottom: -60px;
    left: 0;
    transform: none;
    padding: 0;
    margin-top: 0;
    flex-direction: column;
    width: 100%;
  }

  /* LEFT BOX (Launch Details) */
  .hero-left {
    width: 100%;
    margin-top: -40px; /* Slight overlap like your screenshot */
    padding: 0 15px;
  }

  .hero-box {
    width: 100%;
    background: white;
    border-radius: 16px;
    padding: 25px;
    margin: auto;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  }

  /* RIGHT FORM (should be below box) */
  .hero-right {
    width: 100%;
    margin-top: 20px;
    padding: 0 15px;
  }

  .form-box {
    width: 100%;
    background: white;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  }

  .hero-title,
  .hero-sub {
    text-align: center;
  }

  .green-btn,
  .pink-btn {
    font-size: 16px;
  }
}



.overview-section {
    padding: 60px 0;
    background: #ffffff;
  }
  
  .overview-container {
    width: 90%;
    max-width: 1240px;
    margin: auto;
    display: flex;
    /* align-items: center; */
    justify-content: space-between;
    gap: 50px;
  }
  
  .overview-left {
    width: 50%;
  }
  
  .overview-title {
    font-size: 36px;
    font-weight: 700;
    color: #0059A8; /* same pinkish-purple shade */
    margin-bottom: 20px;
  }
  
  .overview-text {
    color: #4a4a4a;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
  }

  .read-more-content {
    display: none;
    margin-top: 0;
  }

  .read-more-content.expanded {
    display: block;
    margin-bottom: 0;
  }

  .read-more-toggle,
  .read-more-toggle-initial {
    color: #0059A8;
    cursor: pointer;
    font-weight: 600;
    text-decoration: underline;
    user-select: none;
    transition: color 0.3s ease;
  }

  .read-more-toggle:hover,
  .read-more-toggle-initial:hover {
    color: #7a1450;
  }

  .read-more-toggle {
    margin-left: 0;
    margin-top: 0;
    display: inline-block;
  }

  .read-more-toggle-initial {
    margin-left: 0;
  }

  #readLessToggle {
    margin-top: 0;
    margin-bottom: 40px;
  }
  
  /* Stats Section */
  .overview-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    flex-wrap: wrap;
    gap: 40px;
    margin-block: 40px;
  }
  
  .stat-box {
    text-align: center;
  }
  
  .stat-number {
    font-size: 30px;
    font-weight: 700;
    color: #465f3b; /* Same green tone */
  }
  
  .stat-label {
    display: block;
    font-size: 18px;
    margin-top: 12px;
    color: #747474;
  }
  
  /* Button */
  .interest-btn {
    background: #0059A8;
    color: #fff;
    padding: 18px 32px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    border: none;
    transition: .2s;
    margin-top: 40px;
  }
  
  .interest-btn:hover {
    background: #044883;
  }
  
  /* Right Image */
  .overview-right {
    width: 50%;
    position: relative;
  }
  
  .project-image-wrapper {
    position: relative;
  }
  
  .project-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  }
  
  /* Price Tag */
  .price-tag {
    position: absolute;
    bottom: -24px;
    left: 20px;
    background: #5f7c5b;
    color: #fff;
    padding: 14px 22px;
    font-size: 20px;
    font-weight: 700;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  }
  
  .price-sub {
    display: block;
    font-size: 12px;
    margin-top: 2px;
    font-weight: 400;
  }
  
  /* Responsive */
  @media (max-width: 992px) {
    .overview-container {
      flex-direction: column;
    }
  
    .overview-left, .overview-right {
      width: 100%;
    }
  
    .overview-title {
      font-size: 32px;
    }
  }

  
  /* Section Background */
.floorplans-section {
    background: #faf8f5;
    padding: 70px 0;
  }
  
  /* Container */
  .floorplans-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    text-align: center;
  }
  
  /* Heading */
  .floorplans-title {
    font-size: 36px;
    font-weight: 700;
    color: #0059A8;
    margin-bottom: 10px;
  }
  
  .floorplans-subtitle {
    font-size: 16px;
    color: #666;
    max-width: 650px;
    margin: 0 auto 50px;
    line-height: 1.6;
  }
  
  /* Grid Layout */
  .floorplans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
  }
  
  /* Card */
  .plan-card {
    background: #fff;
    padding: 35px 25px;
    width: 100%;
    border-radius: 14px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    text-align: center;
  }
  
  .plan-title {
    font-size: 32px;
    font-family: "Montserrat", sans-serif !important;
    font-weight: 700;
    margin-bottom: 8px;
  }
  
  .plan-subtitle {
    font-size: 14px;
    color: #8a8a8a;
    margin-bottom: 24px;
    font-weight: 400;
  }
  
  .plan-label {
    font-size: 16px;
    color: #8a8a8a;
    padding-bottom: 6px;
  }
  
  .plan-area {
    font-size: 16px;
    font-weight: 600;
    color: #000;
  }
  
  .mt-10 {
    margin-top: 14px;
  }
  
  .plan-price {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin: 0 0 22px;
  }
  
  .plan-payment {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin: 0 0 22px;
  }
  
  /* Button */
  .plan-btn {
    width: 100%;
    background: #0059A8;
    border: none;
    padding: 10px 0;
    color: #fff;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    font-weight: 600;
    gap: 6px;
  }
  
  .plan-btn:hover {
    background: #044883;
  }
  
  /* Download Button */
  .download-wrapper {
    margin-top: 50px;
  }
  
  .download-btn {
    background: #0059A8;
    padding: 14px 30px;
    border-radius: 40px;
    border: none;
    color: #fff;
    font-size: 18px;
    box-shadow: 0px 6px 15px rgba(0,0,0,0.15);
    cursor: pointer;
    transition: 0.2s;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-inline: auto;
    gap: 12px;
  }
  
  .download-btn:hover {
    background: #044883;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .floorplans-grid{
      grid-template-columns: 1fr;
    }
    .plan-card {
      width: 100%;
      max-width: 300px;
    }
  }

  
  .amenities-section {
    background: #eef0f3;
    padding: 80px 0;
  }
  
  .amenities-container {
    width: 90%;
    max-width: 1240px;
    margin: auto;
    text-align: center;
  }
  
  .amenities-title {
    font-size:42px;
    font-weight: 700;
    color: #0059A8;
    margin-bottom: 10px;
  }
  
  .amenities-subtitle {
    max-width: 650px;
    margin: 0 auto 50px;
    font-size: 18px;
    color: #666;
    line-height: 1.6;
  }
  
  /* Grid */
  .amenities-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 50px 30px;
  }
  
  /* Amenity Card */
  .amenity-box {
    text-align: center;
  }
  
  .icon-box {
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 14px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  }
  
  .icon-box svg {
    width: 32px;
    height: 32px;
  }
  .icon-box svg{
    stroke: #0059A8;
  }
  .icon-box img,
  .amenity-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
  }
  .amenity-title {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #333;
    font-family: "Montserrat", sans-serif !important;
  }
  
  .amenity-desc {
    font-size: 14px;
    color: #777;
  }
  
  /* Responsive */
  @media (max-width: 992px) {
    .amenities-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 600px) {
    .amenities-grid {
      grid-template-columns: 1fr;
    }
  }
  

  .gallery-section {
    padding: 70px 0;
    background: #ffffff;
  }
  
  .gallery-container {
    width: 90%;
    max-width: 1240px;
    margin: auto;
    text-align: center;
  }
  
  .gallery-title {
    font-size: 34px;
    font-weight: 700;
    color: #0059A8;
    margin-bottom: 10px;
  }
  
  .gallery-subtitle {
    color: #666;
    font-size: 20px;
    margin-bottom: 45px;
    font-weight: 500;

  }
  
  /* Gallery Grid */
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-bottom: 40px;
  }
  
  .gallery-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  }
  
  /* Note */
  .gallery-note {
    font-size: 18px;
    color: #777;
    margin-bottom: 25px;
    font-weight: 600;
  }
  
  /* CTA Button */
  .gallery-btn {
    background: #0059A8;
    color: #fff;
    padding: 14px 34px;
    border-radius: 40px;
    border: none;
    font-size: 18px;
    cursor: pointer;
    transition: 0.2s;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-inline: auto;
    gap: 12px;
  }
  
  .gallery-btn:hover {
    background: #791147;
  }
  
  /* Responsive */
  @media(max-width: 900px) {
    .gallery-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media(max-width: 600px) {
    .gallery-grid {
      grid-template-columns: 1fr;
    }
  
    .gallery-img {
      height: 200px;
    }
  }

  /* Section Background */
.whychoose-section {
    padding: 80px 0;
    background: #f4f6f8;
  }
  
  /* Container */
  .whychoose-container {
    width: 90%;
    max-width: 1240px;
    margin: auto;
    text-align: center;
  }
  
  /* Heading */
  .whychoose-title {
    font-size: 42px;
    font-weight: 700;
    color: #0059A8;
    margin-bottom: 10px;
  }
  
  .whychoose-subtitle {
    max-width: 700px;
    margin: 0 auto 50px;
    color: #666;
    font-size: 18px;
    line-height: 1.6;
  }
  
  /* Grid */
  .whychoose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
  }
  
  /* Cards */
  .why-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
  }
  
  /* Icon circle */
  .why-icon {
    width: 70px;
    height: 70px;
    background: #f8f3d6;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .why-icon svg {
    width: 34px;
    height: 34px;
  }
  .why-icon svg path{
    fill: #51B749;
  }
  /* Card Title */
  .why-card-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
    font-family: "Montserrat", sans-serif !important;
  }
  
  /* Description */
  .why-card-desc {
    font-size: 16px;
    color: #485563;
    line-height: 1.7;
  }
  
  /* Responsive */
  @media (max-width: 900px) {
    .whychoose-grid {
      grid-template-columns: 1fr;
    }
  }

  
  .location-section {
    padding: 90px 0;
    background: #ffffff;
  }
  
  .location-container {
    width: 90%;
    max-width: 1240px;
    margin: auto;
    text-align: center;
  }
  
  /* Heading */
  .location-title {
    font-size: 42px;
    font-weight: 700;
    color: #0059A8;
    margin-bottom: 10px;
  }
  
  .location-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
  }
  
  /* Content layout */
  .location-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
  }
  
  /* LEFT SIDE */
  .location-left {
    width: 50%;
    text-align: left;
  }
  
  .location-heading {
    font-size: 22px;
    font-weight: 700;
    color: #4f652f;
    margin-bottom: 25px;
  }
  
  .location-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .location-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.5;
    align-items: center;
  }
  
  .loc-icon {
    width: 35px;
    height: 35px;
    background: #f8e7a1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
  }
  .loc-icon svg{
    width: 20px !important;
  }
  .loc-icon svg path{
    fill:#d97706
  }
  /* RIGHT SIDE */
  .location-right {
    width: 50%;
  }
  
  .location-map {
    width: 100%;
    height: 350px;
    border: none;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  }

  .location-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  }
  .location-right.full-image .location-image{
    height: 100%;
  }
  
  /* Responsive */
  @media (max-width: 992px) {
    .location-content {
      flex-direction: column;
    }
    .location-left, .location-right {
      width: 100%;
    }
    .location-map {
      height: 300px;
    }
  }

  /* --- VIRTUAL TOUR SECTION --- */
  .virtual-tour-section {
    padding: 60px 0;
    background: #e6f0fa;
  }

  .virtual-tour-container {
    width: 90%;
    max-width: 1240px;
    margin: auto;
    text-align: center;
  }

  .virtual-tour-title {
    font-size: 36px;
    font-weight: 700;
    color: #0059A8;
    margin-bottom: 20px;
    font-family: "Playfair Display", serif;
  }

  .virtual-tour-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .virtual-tour-image-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    cursor: pointer;
  }

  .virtual-tour-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
  }

  .virtual-tour-image-container:hover .virtual-tour-image {
    transform: scale(1.05);
  }

  .virtual-tour-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 1;
  }

  .virtual-tour-play-btn {
    background: #ff6b35;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background 0.3s ease;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
  }

  .virtual-tour-image-container:hover .virtual-tour-play-btn {
    background: #ff8555;
  }

  .virtual-tour-play-btn .play-icon {
    color: #ffffff;
    width: 40px;
  }

  .virtual-tour-label {
    color: #ffffff;
    font-size: 24px;
    font-weight: 600;
    margin: 0;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  }

  .virtual-tour-subtitle {
    color: #ffffff;
    font-size: 16px;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  }

  /* Responsive for Virtual Tour */
  @media (max-width: 768px) {
    .virtual-tour-title {
      font-size: 28px;
      margin-bottom: 30px;
    }

    .virtual-tour-play-btn {
      width: 80px;
      height: 80px;
    }

    .virtual-tour-play-btn .play-icon {
      width: 50px;
      height: 50px;
    }

    .virtual-tour-label {
      font-size: 20px;
    }

    .virtual-tour-subtitle {
      font-size: 14px;
    }
  }

  /* --- ABOUT PRESTIGE GROUP SECTION --- */
.about-section {
  padding: 80px 0 90px;
  background: #ffffff;
  text-align: center;
}

.about-container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

.about-title {
  font-size: 34px;
  font-weight: 700;
  color: #0059A8;
  margin-bottom: 20px;
}

.about-text {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  max-width: 820px;
  margin: 0 auto 50px;
}
.about-stats {
  display: flex;
  justify-content: center;
  gap: 120px;
}

.stat-box {
  text-align: center;
}

.stat-num {
  font-size: 32px;
  font-weight: 700;
  color: #4f652f;
}

.stat-label {
  color: #666;
  font-size: 18px;
}
@media(max-width:768px){
  .about-stats{
    flex-direction: column;
    gap: 32px;
  }
  .stat-num{
    font-size: 28px;
  }
}

/* --- FOOTER SECTION --- */
.prestige-footer {
  background: #0059A8;
  padding: 60px 0 20px;
  color: #fff;
}

.footer-container {
  width: 90%;
  max-width: 1240px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
}

.footer-logo {
  width: 120px;
  margin-bottom: 20px;
}

.footer-description {
  font-size: 15px;
  line-height: 1.6;
}

.footer-divider {
  margin: 25px 0;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,0.4);
}

.footer-disclaimer {
  font-size: 12px;
  line-height: 1.7;
  opacity: 0.9;
  text-align: center;
}

.footer-heading {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #fff;
  opacity: 0.9;
  text-decoration: none;
  font-size: 14px;
}

.footer-links ul li a:hover {
  text-decoration: underline;
}
.diclaimer-container{
  max-width: 1240px;
  margin-inline: auto;
}
/* QR Code */
.qr-image {
  width: 120px;
  height: 120px;
}

/* Project Details */
.footer-details p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 18px;
}

/* Responsive */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.faq-section {
  padding: 70px 0;
  background: #f7f8fa;
  font-family: "Inter", sans-serif;
}

.faq-container {
  width: 90%;
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.faq-title {
  font-size: 34px;
  font-weight: 700;
  color: #0059A8;
  margin-bottom: 10px;
}

.faq-subtitle {
  color: #666;
  margin-bottom: 40px;
}

.faq-list {
  text-align: left;
}

.faq-item {
  background: #fff;
  margin-bottom: 15px;
  padding: 0;
  border-radius: 10px;
  border: 1px solid #e3e3e3;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  overflow: hidden;
  transition: all .3s ease;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 20px;
  font-size: 17px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: #333;
}

.faq-icon {
  font-size: 24px;
  font-weight: bold;
  color: #0059A8;
  transition: transform .3s;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height .35s ease;
}

.faq-answer p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  padding: 0 0 20px;
}

/* Active FAQ */
.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}


/* HAMBURGER BUTTON */
.hamburger {
  width: 28px;
  cursor: pointer;
  display: none; /* hidden on desktop */
  flex-direction: column;
  justify-content: space-between;
  height: 20px;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background: #333;
  border-radius: 5px;
  transition: 0.3s;
}
/* FULLSCREEN MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 60px;
  gap: 35px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
  z-index: 9;
}

/* MENU LINKS */
.mobile-menu a {
  font-size: 20px;
  color: #374957;
  text-decoration: none;
  font-weight: 500;
}

/* SHOW FULLSCREEN MENU */
.mobile-menu.show {
  opacity: 1;
  pointer-events: auto;
}

/* HAMBURGER SHOWS ONLY ON MOBILE */
@media (max-width: 768px) {
  .header-nav {
    display: none;
  }

  .hamburger {
    display: flex;
    z-index: 10;
  }
}



/* ----------------- DESKTOP FLOATING BUTTONS ----------------- */
.desktop-floating-buttons {
  position: fixed;
  right: 25px;
  bottom: 40px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
  
  opacity: 0;
  animation: fadeInSlide .8s ease-out forwards;
}
@keyframes fadeInSlide {
  0% { opacity: 0; transform: translate(60px, -50%); }
  100% { opacity: 1; transform: translate(0, -50%); }
}


.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0px 0px 1px 1px #0000001a;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  animation: pulse-animation 2s infinite;
  transition: 0.3s;
}
@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2);
  }
  100% {
    box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
  }
}

.float-btn svg {
  width: 28px;
  height: 28px;
}
.float-btn svg path{
  fill: #0059A8;
}
.float-btn.whats-btn svg path{
  fill: #25D366;
}
/* ----------------- MOBILE BOTTOM BAR ----------------- */
.mobile-bottom-buttons {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  z-index: 999;
}

.mobile-btn {
  width: 50%;
  text-align: center;
  padding: 12px 0;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  border-radius: 6px;
}

.mobile-btn img {
  width: 22px;
  height: 22px;
}

/* Button Colors */
.whatsapp-mobile {
  background: #25D366;
}

.call-mobile {
  background: #0059A8;
}

/* ----------------- RESPONSIVE ----------------- */
@media (max-width: 768px) {
  /* Hide desktop floating icons */
  .desktop-floating-buttons {
    display: none;
  }

  /* Show mobile bar */
  .mobile-bottom-buttons {
    display: flex;
  }
  .mobile-bottom-buttons svg{
    width: 20px;
  }
}

@media (min-width: 769px) {
  /* Desktop shows floating buttons */
  .mobile-bottom-buttons {
    display: none;
  }
}


@media (max-width:768px){


  .hero-title{
    font-size: 20px;
  }
  .faq-question{
    text-align: left;
    font-size: 15px;
    line-height: 1.4;
  }
  .location-title{
    font-size: 28px;
  }
  .location-subtitle{
    font-size: 16px;
    line-height: 1.4;
  }
  .whychoose-section{
    padding-block: 40px;
  }
  .whychoose-title{
    font-size: 28px;
  }
  .whychoose-subtitle{
    font-size: 16px;
  }
  .gallery-btn{
    font-size: 16px;
  }
  .gallery-title{
    font-size: 28px;
  }
  .gallery-subtitle{
    font-size: 16px;
  }
  .amenities-section{
    padding-block: 40px;
  }
  .amenities-title{
    font-size: 28px;
  }
  .amenities-subtitle{
    font-size: 16px;
  }
  .amenities-grid{
    grid-template-columns: 1fr 1fr;
  }
  .floorplans-section{
    padding-block: 40px;
  }
  .floorplans-title{
    font-size: 28px;
  }
  .plan-card{
    width: 100%;
    max-width: 100%;
  }
  .overview-title{
    font-size: 28px;
  }
}

/* ----------------- MODAL POPUP STYLES ----------------- */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-content {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px;
  max-width: 480px;
  width: 100%;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  position: relative;
}

.modal-calendar-icon {
  width: 24px;
  height: 24px;
  color: #2563eb;
  flex-shrink: 0;
}

.modal-title {
  font-size: 22px;
  font-weight: 700;
  color: #333;
  margin: 0;
  flex: 1;
  font-family: "Montserrat", sans-serif !important;
}

.modal-close {
  position: absolute;
  top: -10px;
  right: -10px;
  background: transparent;
  border: none;
  font-size: 28px;
  color: #666;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: color 0.2s;
}

.modal-close:hover {
  color: #000;
}

.modal-subtitle {
  font-size: 14px;
  color: #666;
  margin-bottom: 24px;
  margin-top: 0;
  font-family: "Montserrat", sans-serif !important;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.modal-input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 15px;
  font-family: "Montserrat", sans-serif;
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.modal-input:focus {
  outline: none;
  border-color: #2563eb;
}

.modal-input::placeholder {
  color: #999;
}

.modal-submit-btn {
  width: 100%;
  padding: 16px;
  background: #000000;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  font-family: "Montserrat", sans-serif;
  margin-top: 8px;
}

.modal-submit-btn:hover {
  background: #1a1a1a;
}

/* Responsive Modal */
@media (max-width: 600px) {
  .modal-content {
    padding: 24px 20px;
    max-width: 90%;
  }
  
  .modal-title {
    font-size: 20px;
  }
  
  .modal-subtitle {
    font-size: 13px;
  }
  
  .modal-input {
    padding: 12px 14px;
    font-size: 14px;
  }
  
  .modal-submit-btn {
    padding: 14px;
    font-size: 15px;
  }
}