@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary-color: #B48D46; /* Softer, richer premium gold */
  --primary-hover: #967438;
  --bg-dark: #F8F9FA; /* Off-white premium background */
  --bg-card: #FFFFFF; /* Pure white for cards */
  --text-main: #1A1A1A; /* Dark charcoal */
  --text-muted: #64748B; /* Slate gray */
  --font-main: 'Outfit', sans-serif;
  --glass-bg: rgba(255, 255, 255, 0.85); /* Light glass */
  --glass-border: rgba(0, 0, 0, 0.08); /* Subtle dark border */
}

/* Responsive Utilities */
.desktop-only { display: block; }
.mobile-only { display: none; }

@media (max-width: 992px) {
  .desktop-only { display: none !important; }
  .mobile-only { display: block !important; }
}



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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  padding-bottom: 70px; /* Space for sticky CTAs on mobile */
}

/* Swiper Pagination Global Overrides */
.swiper-pagination-bullet {
  background: #ccc !important;
  opacity: 0.7;
}

.swiper-pagination-bullet-active {
  background: var(--primary-color) !important;
  opacity: 1;
}

/* Typography */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
}

.text-gold {
  color: var(--primary-color);
}

/* Utilities */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding {
  padding: 100px 0;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  font-size: 0.9rem;
  border: none;
}

.btn-primary {
  background-color: var(--primary-color);
  color: #FFFFFF;
  border: 1px solid var(--primary-color);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  border-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: #FFFFFF;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: #ffffff !important;
  backdrop-filter: blur(10px);
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-main);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--primary-color);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-main);
  cursor: pointer;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  background: url('assets/heroImage.webp') no-repeat 70% center/cover;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 10;
}

.mouse {
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  position: relative;
}

.wheel {
  width: 4px;
  height: 8px;
  background: white;
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollAnim 2s infinite;
}

@keyframes scrollAnim {
  0% { opacity: 0; transform: translate(-50%, 0); }
  30% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, 15px); }
}

.hero::before {
  display: none; /* Removed all overlays as requested */
}

.hero-details-section {
  background: white;
  min-height: 100vh;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--glass-border);
  padding: 80px 0;
}

.hero-details-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 80px; /* Increased gap for better desktop spacing */
}

.hero-content {
  flex: 1;
  max-width: 650px;
}

.badge {
  display: inline-block;
  background: rgba(180, 141, 70, 0.1);
  color: var(--primary-color);
  border: 1px solid rgba(180, 141, 70, 0.3);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 25px;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 25px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 35px;
  line-height: 1.8;
}

.hero-price {
  display: inline-block;
  background: #f8f9fa;
  padding: 12px 24px;
  border-radius: 8px;
  border: 1px solid var(--glass-border);
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-main); /* Black as requested */
  margin-bottom: 35px;
}

.hero-price span {
  display: inline-block;
  font-size: 0.9rem;
  color: var(--primary-color); /* Gold as requested */
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-left: 15px;
  vertical-align: middle;
}

.hero-actions {
  display: flex;
  gap: 20px;
  align-items: center;
}

/* Lead Form */
.lead-form-wrapper {
  flex: 0 0 400px;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
}

.lead-form-wrapper h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  text-align: center;
}

.lead-form-wrapper p {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 25px;
}

.form-group {
  margin-bottom: 20px;
}

.form-control {
  width: 100%;
  padding: 14px 16px;
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  color: var(--text-main);
  font-family: var(--font-main);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(180, 141, 70, 0.1);
}

.lead-form-wrapper .btn-primary {
  width: 100%;
  padding: 16px;
  font-size: 1rem;
}

/* Custom override for intl-tel-input */
.iti { width: 100%; }
.iti__country-list {
  background-color: var(--bg-card);
  color: var(--text-main);
  border: 1px solid var(--glass-border);
}
.iti__country-name, .iti__dial-code { color: var(--text-main) !important; }
.iti__country:hover, .iti__country.iti__highlight { background-color: var(--primary-hover); }

/* Highlights Grid */
.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.section-title p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto;
}

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

.highlight-card {
  background: var(--bg-card);
  padding: 40px 30px;
  border-radius: 8px;
  border: 1px solid var(--glass-border);
  text-align: center;
  transition: all 0.3s ease;
}

.highlight-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
}

.highlight-icon {
  width: 60px;
  height: 60px;
  background: rgba(180, 141, 70, 0.1);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 20px;
}

.highlight-card h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.highlight-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Investment Benefits */
.investment-section {
  background: var(--bg-card);
}

.investment-container {
  display: flex;
  align-items: center;
  gap: 60px;
}

.investment-image {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
}

.investment-image img {
  width: 100%;
  height: auto;
  display: block;
}

.investment-content {
  flex: 1;
}

.benefit-list {
  list-style: none;
  margin-top: 30px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.benefit-icon {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--bg-card);
  background: var(--primary-color);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-text h4 {
  font-size: 1.3rem;
  margin-bottom: 5px;
}

.benefit-text p {
  color: var(--text-muted);
}

/* Floor Plan Configuration */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  max-width: 900px;
  margin: 0 auto;
}

.plan-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  transition: transform 0.3s, box-shadow 0.3s;
}

.plan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.plan-card h4 {
  font-size: 1.1rem;
  color: var(--text-main);
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 20px 20px 0;
  text-align: center;
}

.plan-img-box {
  position: relative;
  background: #F8F9FA;
  margin: 15px;
  border-radius: 12px;
  padding: 15px;
  border: 1px dashed rgba(0,0,0,0.1);
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.blurred-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: blur(8px) brightness(1);
  transition: all 0.4s ease;
}

.plan-card:hover .blurred-image {
  filter: blur(5px) brightness(1);
}

.plan-lock-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  z-index: 2;
  transition: transform 0.3s, box-shadow 0.3s;
}

.plan-card:hover .plan-lock-icon {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.plan-lock-icon i {
  font-size: 1.5rem;
  color: var(--primary-color);
}

/* Amenities */
.amenities-section {
  background: var(--bg-card);
}

.amenities-wrapper {
  display: flex;
  gap: 50px;
  align-items: center;
}

.amenities-list {
  flex: 1;
}

.amenity-item {
  flex-shrink: 0;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 20px 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 120px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.02);
  transition: transform 0.3s;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
}

.amenity-item:hover {
  transform: translateY(-5px);
  border-color: rgba(180, 141, 70, 0.3);
}

.amenity-item i {
  color: var(--primary-color);
  font-size: 2rem;
}

.amenities-img {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
}

.amenities-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallerySwiper, .amenitiesSwiper {
  width: 100%;
  padding-bottom: 40px !important;
}

@media (min-width: 993px) {
  .amenities-wrapper { 
    display: flex; 
    gap: 40px; 
    align-items: center; 
  }
  .amenities-list { flex: 2.2; }
  .amenities-img { flex: 1; height: 420px; border-radius: 12px; overflow: hidden; display: block !important; }

  .amenities-list .swiper-wrapper {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 15px !important;
    transform: none !important;
    width: 100% !important;
  }
  .amenity-item.swiper-slide {
    width: 100% !important;
    margin: 0 !important;
    height: 110px !important;
    padding: 15px 10px;
    font-size: 0.85rem;
  }
  .amenity-item i {
    font-size: 1.6rem;
  }
  .amenities-pagination { display: none !important; }
  .amenitiesSwiper { padding-bottom: 0 !important; }
}

/* Gallery Section */
.gallery-grid {
  display: flex;
  gap: 0;
}

@media (min-width: 993px) {
  .gallery-grid.swiper-wrapper {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    transform: none !important;
    width: 100% !important;
  }
  .gallery-item.swiper-slide {
    width: auto !important;
    height: 240px !important;
  }
  .gallery-pagination { display: none !important; }
  .gallerySwiper { padding-bottom: 0 !important; }
}

.gallery-item {
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  height: 250px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

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

/* Connectivity Section */
.connectivity-section {
  background: var(--bg-card);
}

.connectivity-wrapper {
  display: flex;
  gap: 40px;
}

.connectivity-info {
  flex: 1;
}

.conn-category {
  margin-bottom: 30px;
}

.conn-category h4 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.conn-category ul {
  list-style: none;
}

.conn-category li {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--glass-border);
  color: var(--text-muted);
}

.connectivity-map {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
}

/* Footer */
.footer {
  background: var(--bg-card);
  padding: 60px 0 30px;
  border-top: 1px solid var(--glass-border);
  text-align: center;
}

.footer-text {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 5px;
  font-size: 0.9rem;
}

.disclaimer {
    font-size: 0.75rem;
    color: #64748B;
    max-width: 800px;
    margin: 0 auto 30px;
    text-align: center;
    line-height: 1.6;
}

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* Modals */
.modal-overlay {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

/* Responsive Utilities */
.desktop-only {
  display: block;
}
.mobile-only {
  display: none;
}

@media (max-width: 992px) {
  .desktop-only { display: none !important; }
  .mobile-only { display: block !important; }
}

/* Animations */
.gsap-fade-up, .gsap-fade-right, .gsap-fade-left {
  opacity: 1; /* Default to visible if GSAP fails */
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: var(--bg-card);
  padding: 40px;
  border-radius: 12px;
  max-width: 400px;
  width: 90%;
  position: relative;
  border: 1px solid var(--glass-border);
  transform: translateY(20px);
  transition: all 0.3s;
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: transparent;
  border: none;
  color: var(--text-main);
  font-size: 1.5rem;
  cursor: pointer;
}

.modal-header h3 { font-size: 1.5rem; margin-bottom: 10px; }
.modal-header p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 20px; }

/* Sticky CTAs */
.sticky-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  z-index: 1500;
}

.sticky-cta-bar a, .sticky-cta-bar button {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px;
  font-weight: 700;
  text-transform: uppercase;
  color: white !important;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-family: var(--font-main);
  font-size: 0.95rem;
  background: transparent;
}

.btn-call {
  border-right: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-enquire {
  /* Inherits transparent background */
}

/* Desktop Bottom Sticky Form */
.desktop-sticky-bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--bg-card);
  box-shadow: 0 -5px 20px rgba(0,0,0,0.05);
  padding: 15px 0;
  z-index: 1500;
  border-top: 1px solid var(--glass-border);
  opacity: 0;
  visibility: hidden;
  transform: translateY(100%);
  transition: all 0.4s ease;
}

.desktop-sticky-bottom.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sticky-bottom-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sticky-text {
  flex: 0 0 250px;
  display: flex;
  flex-direction: column;
}

.sticky-text strong {
  color: var(--text-main);
  font-size: 1.1rem;
}

.sticky-text span {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.sticky-form {
  display: flex;
  gap: 15px;
  align-items: center;
  flex: 1;
}

.sticky-form > *, .sticky-form .iti {
  flex: 1;
}

.sticky-form input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  background: rgba(0,0,0,0.02);
  color: var(--text-main);
  font-family: var(--font-main);
}

.sticky-form .btn {
  flex: 0 0 auto;
  padding: 12px 25px;
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 70px;
  right: 20px;
  z-index: 1500;
}

.whatsapp-float a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  font-size: 2rem;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: transform 0.3s;
}

.whatsapp-float a:hover {
  transform: scale(1.1);
}

/* Responsive */
@media (min-width: 993px) {
  .sticky-cta-bar {
    display: none; /* Hide on desktop as requested */
  }
  body { padding-bottom: 80px; } /* Space for desktop sticky form */
}

@media (max-width: 992px) {
  .nav-links {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: center;
    padding-top: 40px;
    transition: left 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 999;
  }
  .nav-links.active {
    left: 0;
  }
  .nav-links a {
    font-size: 1.2rem;
    padding: 15px 0;
    width: 80%;
    text-align: center;
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }
  .mobile-menu-toggle {
    display: block;
  }
  .nav-enquire-btn {
    display: none; /* Hidden on mobile */
  }
  .desktop-sticky-bottom {
    display: none;
  }

  .hero {
    min-height: 100vh;
    background-position: center 30%; /* Slid image up as requested */
  }
  .hero-details-section {
    min-height: auto;
    padding: 60px 20px;
    text-align: center;
  }
  .hero-details-container {
    flex-direction: column;
    gap: 30px;
  }
  .hero-content {
    width: 100%;
  }
  .hero-content h1 {
    font-size: 1.8rem; /* Reduced size to prevent clutter */
    line-height: 1.4; /* Better line height for readability */
    margin-bottom: 20px;
  }
  .hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }

  /* Hero Price - compact badge on mobile */
  .hero-price {
    font-size: 1.3rem;
    padding: 6px 12px;
    margin-bottom: 15px;
    display: inline-block;
    width: auto;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-price span {
    font-size: 0.75rem;
    margin-left: 5px;
  }
  
  .hero-actions { 
    display: flex;
    flex-direction: column; 
    width: 100%; 
    gap: 10px; 
  }
  .hero-actions .btn { 
    width: 100%; 
    text-align: center;
    margin: 0 !important;
    padding: 12px;
  }

  .investment-container { flex-direction: column; }
  .amenities-wrapper { flex-direction: column; }
  .connectivity-wrapper { flex-direction: column; }
  
  .benefit-item { gap: 15px; }
  .benefit-text h4 { font-size: 1.1rem; }
  .benefit-text p { font-size: 0.85rem; }
  
  .section-padding { padding: 50px 0; }
  .section-title h2 { font-size: 1.5rem; }
  .section-title p { font-size: 0.9rem; }
  
  /* Hide lead form on mobile */
  .lead-form-wrapper { display: none; }

  /* Hide CTAs when menu is open */
  body.menu-open .whatsapp-float,
  body.menu-open .sticky-cta-bar {
    opacity: 0 !important;
    pointer-events: none !important;
  }
  
  /* ==== Floor Plans Mobile ==== */
  .plans-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 10px;
  }
}

/* Developer Section */
.developer-section {
  background: #fdfdfd;
  padding: 80px 0;
  border-top: 1px solid var(--glass-border);
}

.developer-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}

.developer-header img {
  height: 80px;
  filter: brightness(0);
}

.developer-header h3 {
  font-size: 1.1rem;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0 !important;
}

.developer-body {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.developer-left {
  flex: 1.2;
}

.developer-left h2 {
  font-size: 2.2rem;
  margin-bottom: 25px;
  line-height: 1.3;
}

.developer-description p {
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.8;
  font-size: 1.05rem;
}

.developer-right {
  flex: 1;
}

.developer-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.stat-card {
  background: white;
  padding: 30px 20px;
  border-radius: 12px;
  border: 1px solid var(--glass-border);
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.stat-label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 992px) {
  .developer-body {
    flex-direction: column;
    gap: 40px;
    align-items: center; /* Center the whole body on mobile */
    text-align: center;
  }
  .developer-left h2 {
    font-size: 1.8rem;
  }
  .developer-header {
    gap: 15px;
  }
  .developer-header img {
    height: 60px; /* Adjusted slightly bigger for mobile too */
  }
  .developer-right {
    width: 100%;
    max-width: 500px; /* Keep cards from getting too wide */
  }

@media (max-width: 576px) {
  .developer-stats {
    grid-template-columns: 1fr;
  }
  .developer-header {
    flex-direction: column;
    text-align: center;
  }
}

  .plan-card h4 { font-size: 1rem; padding: 15px 15px 0; }
  .plan-img-box { height: 220px; margin: 10px; }
  .plan-lock-icon { 
    width: 50px; 
    height: 50px; 
    pointer-events: auto; /* Clickable */
  }
  .plan-lock-icon i { font-size: 1.2rem; }

  /* ==== Amenities Mobile ==== */
  .amenities-list {
    width: 100% !important;
    overflow: visible !important;
  }
  .amenity-item {
    height: 110px !important;
    padding: 15px 8px !important;
    border-radius: 10px !important;
    font-size: 0.75rem !important;
  }
  .amenity-item i { font-size: 1.5rem !important; }
  .amenities-img { margin-top: 20px; }

  /* ==== Gallery Mobile ==== */
  .gallery-item { border-radius: 10px; }
  .sticky-cta-bar {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(150px);
    width: 90%;
    max-width: 400px;
    border-radius: 50px;
    overflow: hidden;
    background: linear-gradient(135deg, #B48D46 0%, #967438 100%);
    box-shadow: 0 15px 30px rgba(180, 141, 70, 0.3);
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    visibility: hidden;
  }
  
  .sticky-cta-bar.visible {
    transform: translateX(-50%) translateY(0);
    visibility: visible;
  }

  .sticky-cta-bar a, .sticky-cta-bar button {
    font-size: 0.9rem;
    padding: 14px 10px;
  }

  /* Hide WhatsApp initially on mobile, show on scroll */
  .whatsapp-float {
    bottom: -100px; /* Hide below screen */
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }
  .whatsapp-float.visible {
    bottom: 90px; /* Above the sticky CTA */
    opacity: 1;
    pointer-events: auto;
  }
}

/* Validation Styles */
.form-error {
  color: #ff4d4d;
  font-size: 0.75rem;
  margin-top: 4px;
  display: none !important;
  text-align: left;
  font-weight: 500;
}

.form-group.has-error .form-control,
.form-group.has-error input {
  border-color: #ff4d4d !important;
  background-color: rgba(255, 77, 77, 0.03);
}

.form-group.has-error .form-error {
  display: block !important;
}

/* Submit Button Spinner */
.btn-loading {
  position: relative;
  pointer-events: none;
  opacity: 0.85;
}

.btn-loading .btn-text {
  visibility: hidden;
}

.btn-loading .btn-spinner {
  display: inline-block !important;
}

.btn-spinner {
  display: none;
  width: 20px;
  height: 20px;
  border: 2.5px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: btnSpin 0.6s linear infinite;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

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

/* Success Message Styling */
.success-message {
  text-align: center;
  padding: 40px 20px;
  animation: fadeIn 0.5s ease-out;
}

.success-icon {
  font-size: 4rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  animation: scaleIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.success-message h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: var(--text-main);
}

.success-message p {
  color: var(--text-muted);
  font-size: 1rem;
}

@keyframes scaleIn {
  from { transform: scale(0); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Ensure success message fits in all containers */
.modal-form.success-message { padding: 60px 20px; }
.sticky-form.success-message { padding: 10px; flex: 1; display: flex; align-items: center; justify-content: center; gap: 15px; }
.sticky-form.success-message .success-icon { font-size: 1.5rem; margin-bottom: 0; }
.sticky-form.success-message h3 { font-size: 1rem; margin-bottom: 0; }
.sticky-form.success-message p { display: none; }
 
/* Artistic Impression Labels */
.img-container {
    position: relative;
    display: block;
    overflow: hidden;
}

.artistic-impression {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 9px;
    padding: 3px 8px;
    border-radius: 3px;
    pointer-events: none;
    z-index: 5;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-main);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

@media (max-width: 768px) {
    .artistic-impression {
        font-size: 8px;
        padding: 2px 6px;
        bottom: 5px;
        right: 5px;
    }
}

