/* ===== GLOBAL STYLES ===== */
body {
  font-family: "Segoe UI", sans-serif;
  margin: 0;
  padding: 0;
  background: #f9f9f9;
}

/* ===== HERO/BANNER STYLES ===== */
@media screen and (max-width: 480px) {
  .hero img {
    height: 70%;
  }
  .hero {
    height: 230px !important;
  }
}

.about-banner {
  position: relative;
  background-size: cover;
  background-position: center;
  height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

.about-banner .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.about-banner .banner-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 20px;
}

.about-banner h1 {
  color: white;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.about-banner p {
  font-size: 16px;
  font-weight: 500;
}

/* ===== RESPONSIVE HERO SECTION ===== */
.kingsberry-hero-section {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap; /* ✅ ADDED: allows columns to wrap on smaller screens */
  align-items: center;
  justify-content: space-between;
  padding: 60px 10%;
  gap: 40px;
  color: #f0f0f0;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.kingsberry-description {
  flex: 1 1 320px; /* ✅ CHANGED from flex:1 — gives a minimum basis before wrapping */
  max-width: 600px;
}

.kingsberry-description h1 {
  font-size: 3rem;
  color: #f5c542;
  margin-bottom: 25px;
  font-weight: bold;
}

.kingsberry-description p {
  font-size: 1.15rem;
  color: black;
  line-height: 1.8;
  margin-bottom: 20px;
  letter-spacing: 0.4px;
}

.right-content {
  flex: 1 1 280px; /* ✅ CHANGED from flex:1 — gives a minimum basis before wrapping */
  max-width: 500px;
  text-align: center;
}

.kb-img {
  width: 100%;
  max-width: 550px;
  height: auto;
}

/* Mobile Stack Layout */
@media screen and (max-width: 768px) {
  .kingsberry-hero-section {
    flex-direction: column;
    padding: 30px 20px; /* ✅ CHANGED: tighter padding on mobile */
    gap: 24px;
  }

  .kingsberry-description,
  .right-content {
    flex: 1 1 100%; /* ✅ CHANGED: full width on mobile */
    max-width: 100%;
  }
  
  .kingsberry-description {
    order: 1;
    text-align: center;
  }
  
  .right-content {
    order: 2;
  }

  .kb-img {
    width: 100%; /* ✅ ADDED: image fills full width on mobile */
    max-width: 100%;
  }
  
  .kingsberry-description h1 {
    font-size: 2rem;
    margin-bottom: 15px;
  }
  
  .kingsberry-description p {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  /* Banner mobile fixes */
  .about-banner {
    height: 30vh;
  }
  
  .about-banner h1 {
    font-size: 2rem;
    margin-bottom: 15px;
  }
  
  .about-banner p {
    font-size: 14px;
  }
  
}

@media screen and (max-width: 480px) {
  .kingsberry-hero-section {
    padding: 24px 16px; /* ✅ CHANGED: even tighter on very small screens */
    gap: 16px;
  }
  
  .kingsberry-description h1 {
    font-size: 1.8rem;
  }
  
  .kingsberry-description p {
    font-size: 0.95rem;
  }
  
  .kb-img {
    max-width: 100%;
  }
}

/* ===== BUTTON STYLES ===== */
.btn-custom {
  background-color: #f5c542;
  border: none;
  color: #1a1a1a;
  padding: 12px 28px;
  font-weight: bold;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.btn-custom:hover {
  background-color: #e0b000;
  color: #fff;
}

/* ===== SECTION STYLES ===== */
.section-title {
  font-weight: 700;
  color: #2c3e50;
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
}

.sections-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #333;
}

.sections-text {
  margin-top: 0;
  font-size: 1.2rem;
  margin-bottom: 20px;
  line-height: 1.8;
}

/* ===== LUXURY SECTION ===== */
.luxury-section {
  background-color: #fff;
  color: #222;
  border-top: 5px solid #f5c542;
  padding: 60px 0;
}

.luxury-section .room-img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.features-list {
  list-style: none;
  padding-left: 0;
  font-size: 1.2rem;
  line-height: 1.8;
}

.features-list li {
  margin-bottom: 10px;
}

/* ===== GALLERY STYLES ===== */
.video-gallery,
.image-gallery {
  padding: 60px 0;
}

.video-gallery {
  background-color: #f8f9fa;
}

.gallery-img-wrapper img {
  transition: transform 0.3s ease;
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.gallery-img-wrapper img:hover {
  transform: scale(1.05);
}

.image-gallery img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.image-gallery img:hover {
  transform: scale(1.03);
}

/* ===== LIFESTYLE HIGHLIGHTS ===== */
.lifestyle-highlights {
  padding: 60px 0;
}

.highlight-item {
  padding: 30px 20px;
  background-color: #f9f9f9;
  border-radius: 12px;
  transition: all 0.3s ease;
  height: 100%;
  text-align: center;
  border: 1px solid #e9ecef;
}

.highlight-item:hover {
  transform: translateY(-8px);
  background-color: #fff;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.highlight-icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: block;
}

/* Colorful icon styles */
.icon-green { color: #28a745; }
.icon-blue { color: #007bff; }
.icon-orange { color: #fd7e14; }
.icon-purple { color: #6f42c1; }
.icon-red { color: #dc3545; }
.icon-yellow { color: #ffc107; }
.icon-teal { color: #20c997; }
.icon-pink { color: #d63384; }

.highlight-item h5 {
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
}

.highlight-item p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* ===== TIMELINE STYLES ===== */
.timeline {
  position: relative;
  margin-left: 20px;
  padding-left: 30px;
  border-left: 2px solid #dee2e6;
}

.timeline-item {
  position: relative;
  margin-bottom: 30px;
  transition: transform 0.3s ease-in-out;
}

.timeline-icon {
  position: absolute;
  left: -41px;
  top: 0;
  background-color: #fff;
  border-radius: 50%;
  font-size: 1.25rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid currentColor;
  transition: transform 0.3s ease;
  z-index: 2;
}

.timeline-item:hover {
  transform: translateY(-5px);
}

.timeline-item:hover .timeline-icon {
  transform: scale(1.1);
}

.timeline-content h5 {
  margin-left: 20px;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
  font-size: 1.2rem;
}

.timeline-content p {
  margin-left: 20px !important;
  margin: 0;
  color: #555;
  line-height: 1.6;
}

/* Color classes for timeline icons */
.text-primary { color: #007bff; }
.text-success { color: #28a745; }
.text-warning { color: #ffc107; }
.text-danger { color: #dc3545; }
.text-info { color: #17a2b8; }
.text-purple { color: #6f42c1; }

/* ===== PROJECT FEATURES ===== */
.project-features {
  padding: 60px 0;
}

.project-features.bg-light {
  background-color: #f8f9fa !important;
}

.features-image-wrapper,
.location-image-wrapper {
  padding: 20px;
}

.features-image-wrapper img,
.location-image-wrapper img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* ===== AOS ANIMATIONS ===== */
[data-aos="fade-up"] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

[data-aos="fade-right"] {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

[data-aos="fade-right"].aos-animate {
  opacity: 1;
  transform: translateX(0);
}

[data-aos="fade-left"] {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

[data-aos="fade-left"].aos-animate {
  opacity: 1;
  transform: translateX(0);
}

/* ===== CARD STYLES ===== */
.why-card {
  transition: all 0.3s ease;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  background-color: #fff;
  padding: 25px;
  height: 100%;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-color: transparent;
}

.amenity-card {
  border: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
}

.amenity-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.amenity-card img {
  height: 160px;
  object-fit: cover;
  width: 100%;
}

.card-body {
  text-align: center;
  padding: 20px;
}

.amenity-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin: 0;
}

/* ===== SPECIFICATION STYLES ===== */
.spec-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  padding: 1.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  height: 100%;
}

.spec-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transform: translateY(-3px);
}

.spec-card h5 {
  color: #dc3545;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.spec-card p,
.spec-card ul {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 0;
}

.spec-card ul {
  padding-left: 1.2rem;
}

.spec-card ul li {
  list-style-type: disc;
  margin-bottom: 0.5rem;
}

/* ===== CONTACT STYLES ===== */
.contact-info h5 {
  font-weight: 600;
  color: #dc3545;
  margin-top: 1.5rem;
}

.contact-info p {
  color: #555;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.contact-info a {
  color: #000;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.contact-form .form-control {
  border-radius: 5px;
  box-shadow: none;
  border: 1px solid #ccc;
}

/* ===== IMAGE HOVER EFFECTS ===== */
.image-hover-box {
  overflow: hidden;
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #daf1f7;
  height: 250px;
  position: relative;
}

.image-hover-box img {
  width: 100%;
  height: 244px;
  object-fit: cover;
  transition: transform 0.3s ease;
  border: 3px solid #343a40;
  border-radius: 10px;
}

.image-hover-box:hover img {
  transform: scale(1.05);
}

.image-hover-box:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* ===== PROJECT GRID STYLES ===== */
.project-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  border-radius: 8px;
  margin-bottom: 10px;
}

.fixed-ratio-img {
  aspect-ratio: 0.65;
  height: auto;
  object-fit: cover;
}

.project-img1 {
  width: 100%;
  border-radius: 10px;
  transition: transform 0.3s ease;
  cursor: pointer;
  border: 2px solid #ddd;
}

.project-img1:hover {
  transform: scale(1.05);
}

/* ===== PORTFOLIO STYLES ===== */
.portfolio .portfolio-info h3 {
  font-size: 20px;
  font-weight: 600;
  color: #222;
  text-align: center;
  transition: color 0.3s ease;
}

.portfolio .portfolio-info h3 a {
  color: inherit;
  text-decoration: none;
}

.portfolio .portfolio-info h3 a:hover {
  color: #0b2341;
}

/* ===== CLUB FACILITIES ===== */
.club-list {
  list-style: none;
  padding-left: 0;
  font-size: 0.95rem;
  color: #444;
}

.club-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 0.75rem;
}

.club-list li::before {
  content: "\f3c5";
  font-family: "Bootstrap-icons";
  position: absolute;
  left: 0;
  top: 2px;
  color: #dc3545;
  font-size: 1rem;
}

/* ===== RESPONSIVE UTILITIES ===== */
@media (max-width: 767.98px) {
  .section-title {
    text-align: center;
  }
  
  .club-list {
    text-align: left;
  }
  
  /* Ensure proper spacing in mobile */
  .kingsberry-hero-section .container {
    padding: 0;
  }
  
  .kingsberry-hero-section .row {
    margin: 0;
  }
  
  .kingsberry-hero-section .col-lg-8,
  .kingsberry-hero-section .col-lg-4 {
    padding: 0;
    text-align: center;
    margin-bottom: 20px;
  }
}

/* ===== PROJECT SECTION STYLES ===== */
.project-section {
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
}

.section-heading {
  text-align: center;
  font-size: 2rem;
  color: #ed502e;
  margin-bottom: 30px;
  border-bottom: 3px solid #ccc;
  display: inline-block;
  padding-bottom: 10px;
}

/* ===== LATEST PROJECTS ===== */
.latest-projects {
  background: #f9f9f9;
}

.projects-section {
  padding: 60px 15px;
  background: #f9f9f9;
}

.projects-heading {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  color: #ed502e;
  margin-bottom: 30px;
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-item {
  font-size: 1.3rem;
  font-weight: 500;
  margin: 10px 0;
  display: flex;
  align-items: center;
}

.feature-item i {
  font-size: 1.5rem;
  color: #070d14;
  margin-right: 10px;
}

@media (max-width: 576px) {
  .projects-heading {
    font-size: 1.8rem;
  }
}

/* ===== MOBILE: Why Choose features list fix ===== */
@media (max-width: 768px) {
  .features-list {
    font-size: 1rem;
    line-height: 1.6;
    padding-left: 5px;
  }

  .features-list li {
    margin-bottom: 14px;
    padding-bottom: 6px;
    border-bottom: 1px solid #f0f0f0;
  }

  .features-list li:last-child {
    border-bottom: none;
  }

  .luxury-section .col-lg-6:last-child {
    padding: 0 15px;
  }
}

/* ===== MOBILE: Nature+ connectivity section paragraph spacing fix ===== */
@media (max-width: 768px) {
  .py-5.bg-light .col-lg-6 p {
    margin-bottom: 8px;
  }
}

/* ===== MOBILE: Luxury Studio Apartments section side margins fix ===== */
@media (max-width: 768px) {
  .luxury-section {
    padding-left: 15px;
    padding-right: 15px;
  }

  .luxury-section .room-img {
    margin-bottom: 20px;
  }
}
/* FLOATING BUTTONS */
.floating-whatsapp,
  .floating-call {
    position: fixed;
    bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    text-decoration: none;
    font-family: 'Segoe UI', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: white;
    box-shadow: 0 4px 18px rgba(0,0,0,0.3);
    z-index: 9999;
    overflow: hidden;
    white-space: nowrap;
    transition: width 0.4s ease, border-radius 0.4s ease, gap 0.4s ease, box-shadow 0.3s ease, transform 0.3s ease;
  }

  /* Label hidden by default */
  .floating-btn-label {
    max-width: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-width 0.4s ease, opacity 0.3s ease;
    pointer-events: none;
  }

  /* Hover: circle expands to pill */
  .floating-whatsapp:hover,
  .floating-call:hover {
    width: 140px;
    border-radius: 50px;
    gap: 8px;
    transform: translateY(-3px);
    color: white;
  }

  .floating-whatsapp:hover .floating-btn-label,
  .floating-call:hover .floating-btn-label {
    max-width: 100px;
    opacity: 1;
  }

  /* WhatsApp → Bottom LEFT */
  .floating-whatsapp {
    left: 20px;
    background: linear-gradient(135deg, #25D366, #128C7E);
  }

  .floating-whatsapp:hover {
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
  }

  /* Call → Bottom RIGHT */
  .floating-call {
    right: 20px;
    background: linear-gradient(135deg, #ff6a00, #ee0979);
  }

  .floating-call:hover {
    box-shadow: 0 8px 24px rgba(238, 9, 121, 0.5);
  }

  /* Scroll Top → sits above call button */
  #scroll-top {
    bottom: 80px !important;
    right: 20px !important;
    z-index: 10000 !important;
  }

  /* Pulse ring animation */
  .floating-whatsapp::before,
  .floating-call::before {
    content: '';
    position: absolute;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    animation: pulse-ring 2s ease-out infinite;
    pointer-events: none;
    z-index: -1;
  }

  @keyframes pulse-ring {
    0%   { transform: scale(0.85); opacity: 0.7; }
    70%  { transform: scale(1.6);  opacity: 0; }
    100% { transform: scale(1.6);  opacity: 0; }
  }

  /* Mobile: always circle, no label */
  @media (max-width: 576px) {
    .floating-whatsapp:hover,
    .floating-call:hover {
      width: 52px;
      border-radius: 50%;
      gap: 0;
    }
    .floating-btn-label {
      display: none;
    }
    .floating-whatsapp { left: 15px; }
    .floating-call     { right: 15px; }
  }

  .vincent-hero-section {
            padding: 60px 0 50px;
            background: #fff;
        }
        .vincent-hero-section h1.text-danger {
            font-size: clamp(1.8rem, 3.5vw, 2.8rem);
            font-weight: 700;
            margin-bottom: 30px;
        }
        .vincent-hero-section .hero-text p {
            font-size: 1.05rem;
  color: #444;
  line-height: 1.85;
  margin-bottom: 16px;
        }
        .vincent-hero-section .hero-img img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.12);
            object-fit: cover;
        }
        @media (max-width: 991.98px) {
            .vincent-hero-section {
                padding: 40px 0 30px;
            }
            .vincent-hero-section .hero-img {
                margin-top: 30px;
            }
        }

/* ===== HERO/BANNER STYLES ===== */
@media screen and (max-width: 480px) {
  .hero img {
    height: 70%;
  }
  .hero {
    height: 230px !important;
  }
}

.about-banner {
  position: relative;
  background-size: cover;
  background-position: center;
  height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

.about-banner .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.about-banner .banner-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 20px;
}

.about-banner h1 {
  color: white;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.about-banner p {
  font-size: 16px;
  font-weight: 500;
}

/* ===== RESPONSIVE HERO SECTION ===== */
.kingsberry-hero-section {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap; /* ✅ ADDED: allows columns to wrap on smaller screens */
  align-items: center;
  justify-content: space-between;
  padding: 60px 10%;
  gap: 40px;
  color: #f0f0f0;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.kingsberry-description {
  flex: 1 1 320px; /* ✅ CHANGED from flex:1 — gives a minimum basis before wrapping */
  max-width: 600px;
}

.kingsberry-description h1 {
  font-size: 3rem;
  color: #f5c542;
  margin-bottom: 25px;
  font-weight: bold;
}

.kingsberry-description p {
  font-size: 1.15rem;
  color: black;
  line-height: 1.8;
  margin-bottom: 20px;
  letter-spacing: 0.4px;
}

.right-content {
  flex: 1 1 280px; /* ✅ CHANGED from flex:1 — gives a minimum basis before wrapping */
  max-width: 500px;
  text-align: center;
}

.kb-img {
  width: 100%;
  max-width: 550px;
  height: auto;
}

/* Mobile Stack Layout */
@media screen and (max-width: 768px) {
  .kingsberry-hero-section {
    flex-direction: column;
    padding: 30px 20px; /* ✅ CHANGED: tighter padding on mobile */
    gap: 24px;
  }

  .kingsberry-description,
  .right-content {
    flex: 1 1 100%; /* ✅ CHANGED: full width on mobile */
    max-width: 100%;
  }
  
  .kingsberry-description {
    order: 1;
    text-align: center;
  }
  
  .right-content {
    order: 2;
  }

  .kb-img {
    width: 100%; /* ✅ ADDED: image fills full width on mobile */
    max-width: 100%;
  }
  
  .kingsberry-description h1 {
    font-size: 2rem;
    margin-bottom: 15px;
  }
  
  .kingsberry-description p {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  /* Banner mobile fixes */
  .about-banner {
    height: 30vh;
  }
  
  .about-banner h1 {
    font-size: 2rem;
    margin-bottom: 15px;
  }
  
  .about-banner p {
    font-size: 14px;
  }
  
}

@media screen and (max-width: 480px) {
  .kingsberry-hero-section {
    padding: 24px 16px; /* ✅ CHANGED: even tighter on very small screens */
    gap: 16px;
  }
  
  .kingsberry-description h1 {
    font-size: 1.8rem;
  }
  
  .kingsberry-description p {
    font-size: 0.95rem;
  }
  
  .kb-img {
    max-width: 100%;
  }
}

/* ===== BUTTON STYLES ===== */
.btn-custom {
  background-color: #f5c542;
  border: none;
  color: #1a1a1a;
  padding: 12px 28px;
  font-weight: bold;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.btn-custom:hover {
  background-color: #e0b000;
  color: #fff;
}

/* ===== SECTION STYLES ===== */
.section-title {
  font-weight: 700;
  color: #2c3e50;
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
}

.sections-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #333;
}

.sections-text {
  margin-top: 0;
  font-size: 1.2rem;
  margin-bottom: 20px;
  line-height: 1.8;
}

/* ===== LUXURY SECTION ===== */
.luxury-section {
  background-color: #fff;
  color: #222;
  border-top: 5px solid #f5c542;
  padding: 60px 0;
}

.luxury-section .room-img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.features-list {
  list-style: none;
  padding-left: 0;
  font-size: 1.2rem;
  line-height: 1.8;
}

.features-list li {
  margin-bottom: 10px;
}

/* ===== GALLERY STYLES ===== */
.video-gallery,
.image-gallery {
  padding: 60px 0;
}

.video-gallery {
  background-color: #f8f9fa;
}

.gallery-img-wrapper img {
  transition: transform 0.3s ease;
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.gallery-img-wrapper img:hover {
  transform: scale(1.05);
}

.image-gallery img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.image-gallery img:hover {
  transform: scale(1.03);
}

/* ===== LIFESTYLE HIGHLIGHTS ===== */
.lifestyle-highlights {
  padding: 60px 0;
}

.highlight-item {
  padding: 30px 20px;
  background-color: #f9f9f9;
  border-radius: 12px;
  transition: all 0.3s ease;
  height: 100%;
  text-align: center;
  border: 1px solid #e9ecef;
}

.highlight-item:hover {
  transform: translateY(-8px);
  background-color: #fff;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.highlight-icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: block;
}

/* Colorful icon styles */
.icon-green { color: #28a745; }
.icon-blue { color: #007bff; }
.icon-orange { color: #fd7e14; }
.icon-purple { color: #6f42c1; }
.icon-red { color: #dc3545; }
.icon-yellow { color: #ffc107; }
.icon-teal { color: #20c997; }
.icon-pink { color: #d63384; }

.highlight-item h5 {
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
}

.highlight-item p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* ===== TIMELINE STYLES ===== */
.timeline {
  position: relative;
  margin-left: 20px;
  padding-left: 30px;
  border-left: 2px solid #dee2e6;
}

.timeline-item {
  position: relative;
  margin-bottom: 30px;
  transition: transform 0.3s ease-in-out;
}

.timeline-icon {
  position: absolute;
  left: -41px;
  top: 0;
  background-color: #fff;
  border-radius: 50%;
  font-size: 1.25rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid currentColor;
  transition: transform 0.3s ease;
  z-index: 2;
}

.timeline-item:hover {
  transform: translateY(-5px);
}

.timeline-item:hover .timeline-icon {
  transform: scale(1.1);
}

.timeline-content h5 {
  margin-left: 20px;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
  font-size: 1.2rem;
}

.timeline-content p {
  margin-left: 20px !important;
  margin: 0;
  color: #555;
  line-height: 1.6;
}

/* Color classes for timeline icons */
.text-primary { color: #007bff; }
.text-success { color: #28a745; }
.text-warning { color: #ffc107; }
.text-danger { color: #dc3545; }
.text-info { color: #17a2b8; }
.text-purple { color: #6f42c1; }

/* ===== PROJECT FEATURES ===== */
.project-features {
  padding: 60px 0;
}

.project-features.bg-light {
  background-color: #f8f9fa !important;
}

.features-image-wrapper,
.location-image-wrapper {
  padding: 20px;
}

.features-image-wrapper img,
.location-image-wrapper img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* ===== AOS ANIMATIONS ===== */
[data-aos="fade-up"] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

[data-aos="fade-right"] {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

[data-aos="fade-right"].aos-animate {
  opacity: 1;
  transform: translateX(0);
}

[data-aos="fade-left"] {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

[data-aos="fade-left"].aos-animate {
  opacity: 1;
  transform: translateX(0);
}

/* ===== CARD STYLES ===== */
.why-card {
  transition: all 0.3s ease;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  background-color: #fff;
  padding: 25px;
  height: 100%;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-color: transparent;
}

.amenity-card {
  border: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
}

.amenity-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.amenity-card img {
  height: 160px;
  object-fit: cover;
  width: 100%;
}

.card-body {
  text-align: center;
  padding: 20px;
}

.amenity-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin: 0;
}

/* ===== SPECIFICATION STYLES ===== */
.spec-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  padding: 1.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  height: 100%;
}

.spec-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transform: translateY(-3px);
}

.spec-card h5 {
  color: #dc3545;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.spec-card p,
.spec-card ul {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 0;
}

.spec-card ul {
  padding-left: 1.2rem;
}

.spec-card ul li {
  list-style-type: disc;
  margin-bottom: 0.5rem;
}

/* ===== CONTACT STYLES ===== */
.contact-info h5 {
  font-weight: 600;
  color: #dc3545;
  margin-top: 1.5rem;
}

.contact-info p {
  color: #555;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.contact-info a {
  color: #000;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.contact-form .form-control {
  border-radius: 5px;
  box-shadow: none;
  border: 1px solid #ccc;
}

/* ===== IMAGE HOVER EFFECTS ===== */
.image-hover-box {
  overflow: hidden;
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #daf1f7;
  height: 250px;
  position: relative;
}

.image-hover-box img {
  width: 100%;
  height: 244px;
  object-fit: cover;
  transition: transform 0.3s ease;
  border: 3px solid #343a40;
  border-radius: 10px;
}

.image-hover-box:hover img {
  transform: scale(1.05);
}

.image-hover-box:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* ===== PROJECT GRID STYLES ===== */
.project-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  border-radius: 8px;
  margin-bottom: 10px;
}

.fixed-ratio-img {
  aspect-ratio: 0.65;
  height: auto;
  object-fit: cover;
}

.project-img1 {
  width: 100%;
  border-radius: 10px;
  transition: transform 0.3s ease;
  cursor: pointer;
  border: 2px solid #ddd;
}

.project-img1:hover {
  transform: scale(1.05);
}

/* ===== PORTFOLIO STYLES ===== */
.portfolio .portfolio-info h3 {
  font-size: 20px;
  font-weight: 600;
  color: #222;
  text-align: center;
  transition: color 0.3s ease;
}

.portfolio .portfolio-info h3 a {
  color: inherit;
  text-decoration: none;
}

.portfolio .portfolio-info h3 a:hover {
  color: #0b2341;
}

/* ===== CLUB FACILITIES ===== */
.club-list {
  list-style: none;
  padding-left: 0;
  font-size: 0.95rem;
  color: #444;
}

.club-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 0.75rem;
}

.club-list li::before {
  content: "\f3c5";
  font-family: "Bootstrap-icons";
  position: absolute;
  left: 0;
  top: 2px;
  color: #dc3545;
  font-size: 1rem;
}

/* ===== RESPONSIVE UTILITIES ===== */
@media (max-width: 767.98px) {
  .section-title {
    text-align: center;
  }
  
  .club-list {
    text-align: left;
  }
  
  /* Ensure proper spacing in mobile */
  .kingsberry-hero-section .container {
    padding: 0;
  }
  
  .kingsberry-hero-section .row {
    margin: 0;
  }
  
  .kingsberry-hero-section .col-lg-8,
  .kingsberry-hero-section .col-lg-4 {
    padding: 0;
    text-align: center;
    margin-bottom: 20px;
  }
}

/* ===== PROJECT SECTION STYLES ===== */
.project-section {
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
}

.section-heading {
  text-align: center;
  font-size: 2rem;
  color: #ed502e;
  margin-bottom: 30px;
  border-bottom: 3px solid #ccc;
  display: inline-block;
  padding-bottom: 10px;
}

/* ===== LATEST PROJECTS ===== */
.latest-projects {
  background: #f9f9f9;
}

.projects-section {
  padding: 60px 15px;
  background: #f9f9f9;
}

.projects-heading {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  color: #ed502e;
  margin-bottom: 30px;
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-item {
  font-size: 1.3rem;
  font-weight: 500;
  margin: 10px 0;
  display: flex;
  align-items: center;
}

.feature-item i {
  font-size: 1.5rem;
  color: #070d14;
  margin-right: 10px;
}

@media (max-width: 576px) {
  .projects-heading {
    font-size: 1.8rem;
  }
}

/* ===== MOBILE: Why Choose features list fix ===== */
@media (max-width: 768px) {
  .features-list {
    font-size: 1rem;
    line-height: 1.6;
    padding-left: 5px;
  }

  .features-list li {
    margin-bottom: 14px;
    padding-bottom: 6px;
    border-bottom: 1px solid #f0f0f0;
  }

  .features-list li:last-child {
    border-bottom: none;
  }

  .luxury-section .col-lg-6:last-child {
    padding: 0 15px;
  }
}

/* ===== MOBILE: Nature+ connectivity section paragraph spacing fix ===== */
@media (max-width: 768px) {
  .py-5.bg-light .col-lg-6 p {
    margin-bottom: 8px;
  }
}

/* ===== MOBILE: Luxury Studio Apartments section side margins fix ===== */
@media (max-width: 768px) {
  .luxury-section {
    padding-left: 15px;
    padding-right: 15px;
  }

  .luxury-section .room-img {
    margin-bottom: 20px;
  }
}
/* FLOATING BUTTONS */
.floating-whatsapp,
  .floating-call {
    position: fixed;
    bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    text-decoration: none;
    font-family: 'Segoe UI', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: white;
    box-shadow: 0 4px 18px rgba(0,0,0,0.3);
    z-index: 9999;
    overflow: hidden;
    white-space: nowrap;
    transition: width 0.4s ease, border-radius 0.4s ease, gap 0.4s ease, box-shadow 0.3s ease, transform 0.3s ease;
  }

  /* Label hidden by default */
  .floating-btn-label {
    max-width: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-width 0.4s ease, opacity 0.3s ease;
    pointer-events: none;
  }

  /* Hover: circle expands to pill */
  .floating-whatsapp:hover,
  .floating-call:hover {
    width: 140px;
    border-radius: 50px;
    gap: 8px;
    transform: translateY(-3px);
    color: white;
  }

  .floating-whatsapp:hover .floating-btn-label,
  .floating-call:hover .floating-btn-label {
    max-width: 100px;
    opacity: 1;
  }

  /* WhatsApp → Bottom LEFT */
  .floating-whatsapp {
    left: 20px;
    background: linear-gradient(135deg, #25D366, #128C7E);
  }

  .floating-whatsapp:hover {
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
  }

  /* Call → Bottom RIGHT */
  .floating-call {
    right: 20px;
    background: linear-gradient(135deg, #ff6a00, #ee0979);
  }

  .floating-call:hover {
    box-shadow: 0 8px 24px rgba(238, 9, 121, 0.5);
  }

  /* Scroll Top → sits above call button */
  #scroll-top {
    bottom: 80px !important;
    right: 20px !important;
    z-index: 10000 !important;
  }

  /* Pulse ring animation */
  .floating-whatsapp::before,
  .floating-call::before {
    content: '';
    position: absolute;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    animation: pulse-ring 2s ease-out infinite;
    pointer-events: none;
    z-index: -1;
  }

  @keyframes pulse-ring {
    0%   { transform: scale(0.85); opacity: 0.7; }
    70%  { transform: scale(1.6);  opacity: 0; }
    100% { transform: scale(1.6);  opacity: 0; }
  }

  /* Mobile: always circle, no label */
  @media (max-width: 576px) {
    .floating-whatsapp:hover,
    .floating-call:hover {
      width: 52px;
      border-radius: 50%;
      gap: 0;
    }
    .floating-btn-label {
      display: none;
    }
    .floating-whatsapp { left: 15px; }
    .floating-call     { right: 15px; }
  }

  .vincent-hero-section {
            padding: 60px 0 50px;
            background: #fff;
        }
        .vincent-hero-section h1.text-danger {
            font-size: clamp(1.8rem, 3.5vw, 2.8rem);
            font-weight: 700;
            margin-bottom: 30px;
        }
        .vincent-hero-section .hero-text p {
            font-size: 1.2rem;
            color: #444;
            line-height: 1.85;
            margin-bottom: 16px;
        }
        .vincent-hero-section .hero-img img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.12);
            object-fit: cover;
        }
        @media (max-width: 991.98px) {
            .vincent-hero-section {
                padding: 40px 0 30px;
            }
            .vincent-hero-section .hero-img {
                margin-top: 30px;
            }
        }

         .sangam-hero-section {
            padding: 60px 0 50px;
            background: #fff;
        }
        .sangam-hero-section h1.text-danger {
            font-size: clamp(1.8rem, 3.5vw, 2.8rem);
            font-weight: 700;
            margin-bottom: 20px;
        }
        .sangam-hero-section .hero-text p {
            font-size: 1.2rem;
            color: #444;
            line-height: 1.85;
            margin-bottom: 16px;
        }
        .sangam-hero-section .hero-img img {
            width: 100%;
            max-height: 420px;
            border-radius: 10px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.12);
            object-fit: cover;
            object-position: center;
        }
        @media (max-width: 991.98px) {
            .sangam-hero-section {
                padding: 40px 0 30px;
            }
            .sangam-hero-section .hero-img {
                margin-top: 30px;
            }
        }