/* 
  Sunlit Urbana Premium Redesign Style Sheet
  Theme Colors:
  - Primary Teal: #0a433c
  - Secondary Navy: #000c26
  - Accent/Success: #28a745
  - Background Gray: #eaeef0
  - Light Card Background: #ffffff
*/

:root {
  --primary-color: #0a433c;
  --secondary-color: #000c26;
  --gray-bg: #eaeef0;
  --white: #ffffff;
  --dark-text: #262a29;
  --muted-text: #6c757d;
  --border-radius-sm: 8px;
  --border-radius-md: 12px;
  --border-radius-lg: 16px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 15px 35px rgba(0, 0, 0, 0.12);
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--dark-text);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Global Section Spacing */
section {
  padding: 60px 0;
  position: relative;
}

.gray-bg {
  background-color: var(--gray-bg);
}

/* Section Title Formatting */
.title {
  text-align: center;
  margin-bottom: 50px;
}

.title h3 {
  font-size: 32px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.title h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 25%;
  width: 50%;
  height: 4px;
  background-color: var(--primary-color);
  border-radius: 2px;
}

.section-badge {
  display: inline-block;
  padding: 6px 12px;
  background-color: rgba(10, 67, 60, 0.1);
  color: var(--primary-color);
  font-size: 12px;
  font-weight: 700;
  border-radius: 50px;
  letter-spacing: 1px;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-color);
}

/* Buttons System */
.btn-teal-primary {
  background-color: var(--primary-color);
  color: var(--white);
  border: 2px solid var(--primary-color);
  border-radius: var(--border-radius-sm);
  transition: var(--transition);
}

.btn-teal-primary:hover {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-white-btn {
  background-color: var(--white);
  color: var(--primary-color);
  border: 2px solid var(--white);
  border-radius: var(--border-radius-sm);
  transition: var(--transition);
}

.btn-white-btn:hover {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* STICKY GLASSMORPHISM HEADER */
header {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 1000;
  padding: 8px 0; /* Compact from 15px */
  transition: var(--transition);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

header.newClass {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 4px 0;
  box-shadow: var(--shadow-md);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.inner-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  max-height: 40px; /* Compact from 50px */
  width: auto;
  transition: var(--transition);
  mix-blend-mode: multiply; /* Remove white background on light header */
}

header.newClass .logo img {
  max-height: 32px; /* Extra compact on scroll */
  mix-blend-mode: multiply; /* Remove white background on light header */
}




/* Desktop Menu Links */
.desktop-menu ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.desktop-menu ul li a {
  color: var(--secondary-color);
  font-size: 13px; /* Reduced from 15px */
  font-weight: 600;
  text-decoration: none;
  padding: 6px 12px; /* Reduced from 8px 16px */
  text-transform: uppercase;
  position: relative;
  transition: var(--transition);
}

.desktop-menu ul li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 12px; /* Adjusted offset */
  background-color: var(--primary-color);
  transition: var(--transition);
}

.desktop-menu ul li a:hover::after {
  width: calc(100% - 24px); /* Adjusted width */
}

.desktop-menu ul li a.active {
  color: var(--primary-color) !important;
  font-weight: 700;
}

.desktop-menu ul li a.active::after {
  width: calc(100% - 24px); /* Adjusted width */
  background-color: var(--primary-color);
}




/* Contact Button in Header */
.contact-btn {
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 6px 14px; /* Reduced from 8px 20px */
  border-radius: 50px;
  font-size: 13px; /* Reduced from 15px */
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  display: inline-block;
  border: 1px solid var(--secondary-color);
}


.contact-btn:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white) !important;
  text-decoration: none;
  transform: translateY(-1px);
}

@media (max-width: 767.98px) {

  .contact-number {
    display: none;
  }
}


/* Burger Toggle for Mobile */
.button_container {
  display: block;
  height: 24px;
  width: 28px;
  cursor: pointer;
  z-index: 1001;
  position: relative;
}

.button_container span {
  background: var(--secondary-color);
  height: 3px;
  width: 100%;
  position: absolute;
  left: 0;
  transition: var(--transition);
  border-radius: 2px;
}

header.newClass .button_container span {
  background: var(--white);
}

.button_container span:nth-of-type(1) { top: 0; }
.button_container span:nth-of-type(2) { top: 9px; }
.button_container span:nth-of-type(3) { top: 18px; }

.button_container.active .top {
  transform: translateY(9px) rotate(45deg);
  background: #000000; /* Black color */
}
.button_container.active .middle {
  opacity: 0;
}
.button_container.active .bottom {
  transform: translateY(-9px) rotate(-45deg);
  background: #000000; /* Black color */
}


/* Mobile Fullscreen Menu Overlay */
.overlay {
  position: fixed;
  background: rgba(0, 0, 0, 0.2); /* Light backdrop overlay shadow */
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  top: 56px; /* Offset standard header height */
  left: 0;
  width: 100%;
  height: calc(100vh - 56px); /* Align height with remaining body viewport */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease, top 0.3s ease, height 0.3s ease;
  z-index: 999;
}

header.newClass ~ .overlay {
  top: 44px; /* Offset sticky header height */
  height: calc(100vh - 44px);
}

.overlay.open {
  opacity: 1;
  visibility: visible;
}

.overlay-menu {
  position: absolute;
  top: 0;
  right: -300px;
  width: 280px;
  height: 100%;
  background: rgba(255, 255, 255, 0.98); /* Premium white panel bg */
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.08);
  padding: 30px 20px; /* Reduced and unified padding */
  transition: right 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* Align menu links to top */
  overflow-y: auto;
  border-left: 1px solid rgba(0, 0, 0, 0.05);
}


.overlay.open .overlay-menu {
  right: 0;
}

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

.overlay ul li {
  margin-bottom: 12px;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.overlay.open ul li:nth-child(1) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.overlay.open ul li:nth-child(2) { transition-delay: 0.15s; opacity: 1; transform: translateY(0); }
.overlay.open ul li:nth-child(3) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.overlay.open ul li:nth-child(4) { transition-delay: 0.25s; opacity: 1; transform: translateY(0); }
.overlay.open ul li:nth-child(5) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.overlay.open ul li:nth-child(6) { transition-delay: 0.35s; opacity: 1; transform: translateY(0); }
.overlay.open ul li:nth-child(7) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }

.overlay ul li a {
  color: var(--secondary-color); /* Navy text link color */
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: var(--border-radius-sm);
  transition: var(--transition);
}

.overlay ul li a i {
  font-size: 16px;
  color: var(--primary-color); /* Premium teal icon color */
  width: 20px;
  text-align: center;
  transition: var(--transition);
}

.overlay ul li a:hover,
.overlay ul li a.active {
  color: var(--primary-color); /* Highlight text color */
  background: rgba(10, 67, 60, 0.05); /* Light teal hover background tint */
  text-decoration: none;
}

.overlay ul li a:hover i,
.overlay ul li a.active i {
  color: var(--primary-color);
}


/* MODERN HERO SECTION WITH FLOATING CARD */
.banner-section.new-hero-layout {
  padding-top: 70px;
  padding-bottom: 30px;
  background: linear-gradient(135deg, rgba(234, 238, 240, 0.4) 0%, rgba(255, 255, 255, 1) 100%);
}

.hero-image-wrap {
  border-radius: var(--border-radius-lg);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 280px; /* Compact height on mobile/tablet */
}

@media (min-width: 992px) {
  .hero-image-wrap {
    height: 100%; /* Match column height on desktop */
  }
}


.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.hero-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(10, 67, 60, 0.15), rgba(0, 12, 38, 0.05));
  z-index: 1;
}


.modern-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.banner-form h1 {
  font-size: 26px; /* Reduced from 34px */
  font-weight: 900;
  color: var(--primary-color);
  letter-spacing: -0.5px;
  margin-bottom: 2px;
}

.project-tagline {
  font-size: 12px; /* Reduced from 14px */
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 8px; /* Reduced from 15px */
}

.badge-teal {
  background-color: var(--primary-color);
  color: var(--white);
  font-size: 10px; /* Reduced from 11px */
  font-weight: 600;
  padding: 4px 10px; /* Reduced from 6px 12px */
  border-radius: 50px;
}

.form-title {
  font-weight: 600;
  font-size: 15px; /* Reduced from 18px */
  color: var(--secondary-color);
}

.form-group {
  margin-bottom: 10px; /* Reduced from 18px */
}

.form-control {
  border-radius: var(--border-radius-sm);
  border: 1px solid #ced4da;
  padding: 8px 12px; /* Reduced from 12px 16px */
  height: auto;
  font-size: 13px; /* Reduced from 14px */
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(10, 67, 60, 0.1);
}


textarea.form-control {
  resize: none;
}

/* INFINITE SCROLLING RIBBON */
.scrolling-ribbon {
  overflow: hidden;
  background-color: var(--secondary-color);
  white-space: nowrap;
  padding: 15px 0;
  box-shadow: var(--shadow-sm);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.scrolling-ribbon-content {
  display: inline-block;
  animation: scroll-left 30s linear infinite;
}

.scrolling-ribbon-content span {
  display: inline-block;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  padding-right: 60px;
  letter-spacing: 0.5px;
}

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* PREMIUM STATS CARD STYLING */
.stat-card {
  background-color: var(--white);
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  padding: 20px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

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

.stat-icon {
  font-size: 24px;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.stat-value {
  font-size: 18px;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 4px;
  line-height: 1.25;
}

.stat-label {
  font-size: 11px;
  font-weight: 600;
  color: #777777;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* FADE-IN-UP ENTRANCE ANIMATION EFFECT */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-up {
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}




/* ABOUT SECTION & FACT FILE TABLE */
.hover-zoom {
  transition: var(--transition);
}

.hover-zoom:hover {
  transform: scale(1.03);
}

.about-image-card {
  border-radius: var(--border-radius-lg);
}

.fact-file-container {
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow-sm);
}

.fact-table th {
  background-color: rgba(10, 67, 60, 0.03);
  color: var(--primary-color);
  font-weight: 700;
}

.fact-table td {
  color: var(--dark-text);
}

/* OVERLAPPING GRID ABOUT & HIGHLIGHTS */
.border-left-teal {
  border-left: 5px solid var(--primary-color);
}

.highlight-text-card {
  border-radius: var(--border-radius-md);
}

.highlight-image-card {
  border-radius: var(--border-radius-lg);
}

.highlight-list li {
  font-size: 15px;
  margin-bottom: 12px;
  position: relative;
  padding-left: 5px;
}

/* AMENITIES SECTION */
.amenity-card {
  transition: var(--transition);
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.amenity-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.amenity-img-wrap {
  overflow: hidden;
  height: 160px;
}

.amenity-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.amenity-card:hover .amenity-img-wrap img {
  transform: scale(1.05);
}

/* PRICE AREA */
.price-area-box {
  background: var(--white);
  border-top: 6px solid var(--primary-color);
  border-radius: var(--border-radius-lg);
}

/* FLOOR PLAN GATE */
.floor-plan-card {
  border-radius: var(--border-radius-lg);
  border: 2px dashed rgba(10, 67, 60, 0.3);
}

.floor-plan-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 67, 60, 0.85);
  backdrop-filter: blur(4px);
}

.lock-icon {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

/* MASONRY GALLERY */
.gallery-item-wrap {
  background-color: var(--gray-bg);
  height: 200px;
}

.gallery-item-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

/* LOCATION SECTION */
.location-map-wrap {
  border-radius: var(--border-radius-lg);
}

.location-list li {
  font-size: 16px;
  display: flex;
  align-items: center;
}

.location-list i {
  font-size: 20px;
}

/* AEO FAQ SECTION (ACCORDION STYLING) */
.faq-card {
  border-radius: var(--border-radius-md) !important;
  transition: var(--transition);
}

.faq-card .btn-link {
  text-decoration: none;
  font-size: 16px;
}

.faq-card .btn-link:hover {
  text-decoration: none;
}

.faq-card i.fa-chevron-down {
  transition: var(--transition);
}

.faq-card .btn-link.collapsed i.fa-chevron-down {
  transform: rotate(-90deg);
}

/* GET CALLBACK CTA */
.get-call-back-section {
  background-color: var(--primary-color);
  color: var(--white);
}

/* FOOTER */
footer p {
  font-size: 13px;
}

/* FIXED STRIPS & SIDEBAR WIDGETS */
.fix-mobile-strip {
  display: none;
}

.sidebar-contact {
  position: fixed;
  top: 35%;
  right: 0;
  z-index: 999;
}

.sidebar-contact .toggle {
  background: var(--primary-color);
  color: var(--white);
  padding: 12px 24px;
  cursor: pointer;
  font-weight: 700;
  border-radius: var(--border-radius-sm) 0 0 var(--border-radius-sm);
  box-shadow: var(--shadow-md);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  transition: var(--transition);
  font-size: 14px;
  letter-spacing: 1px;
}

.sidebar-contact .toggle:hover {
  background-color: var(--secondary-color);
}

/* Close button for Modal */
.button-close {
  background-color: var(--secondary-color) !important;
  color: var(--white) !important;
  opacity: 1 !important;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 15px;
  top: 15px;
  z-index: 10;
  border: none;
  cursor: pointer;
}

/* MEDIA QUERIES */

@media (max-width: 1199px) {
  .desktop-menu {
    display: none;
  }
  
  .inner-header {
    justify-content: space-between;
  }

  .banner-form h1 {
    font-size: 28px;
  }
}

@media (max-width: 991px) {
  .fix-mobile-strip {
    display: block;
    position: fixed;
    z-index: 1000;
    left: 0;
    bottom: 0;
    width: 100%;
  }

  .fix-mobile-strip ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .fix-mobile-strip ul li {
    width: 33.33%;
  }

  .fix-mobile-strip ul li a, 
  .fix-mobile-strip ul li span {
    background-color: var(--secondary-color);
    display: block;
    text-align: center;
    padding: 14px 10px;
    text-decoration: none;
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
  }

  .fix-mobile-strip ul li a.whatsapp {
    background-color: #25d366;
  }

  .get-call-back-btn {
    margin-top: 15px;
  }
  
  footer {
    padding-bottom: 70px; /* Space for mobile bar */
  }

  .section-title {
    font-size: 28px;
  }
}

@media (max-width: 767px) {
  section {
    padding: 40px 0;
  }
  
  .title h3 {
    font-size: 24px;
  }
  
  .banner-form h1 {
    font-size: 24px;
  }
  
  .fact-table th {
    font-size: 13px;
  }
  
  .fact-table td {
    font-size: 13px;
  }
  
  .stat-value {
    font-size: 14px;
  }

}

@media (max-width: 575px) {
  .fix-mobile-strip ul li a, 
  .fix-mobile-strip ul li span {
    font-size: 11px;
    padding: 12px 6px;
  }

  .logo img {
    max-height: 40px;
  }
}

.footer-nav-links li a {
  text-decoration: none;
  transition: var(--transition);
}
.footer-nav-links li a:hover {
  color: var(--primary-color) !important;
  padding-left: 4px;
}
.contact-info a {
  text-decoration: none;
  transition: var(--transition);
}
.contact-info a:hover {
  color: var(--primary-color) !important;
}
.text-underline {
  text-decoration: underline;
}
.w-35 {
  width: 35%;
}

/* Floating Contact Actions (Desktop & Tablet) */
.floating-contact-wrap {
  position: fixed;
  right: 25px;
  bottom: 25px;
  z-index: 1050;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.float-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white) !important;
  box-shadow: var(--shadow-lg);
  font-size: 22px;
  text-decoration: none !important;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}

.float-btn:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.float-call-btn {
  background-color: var(--secondary-color); /* Navy */
}

.float-call-btn:hover {
  background-color: var(--primary-color); /* Teal */
}

.float-whatsapp-btn {
  background-color: #25d366; /* WhatsApp Green */
}

.float-whatsapp-btn:hover {
  background-color: #128c7e; /* WhatsApp Dark Green */
}

/* Tooltip text */
.float-tooltip {
  position: absolute;
  right: 65px;
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 6px 12px;
  border-radius: var(--border-radius-sm);
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  letter-spacing: 0.5px;
}

/* Tooltip arrow */
.float-tooltip::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  margin-top: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent transparent var(--secondary-color);
}

.float-btn:hover .float-tooltip {
  opacity: 1;
  visibility: visible;
}