/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
  --primary-color: #1b4d3e;     /* Deep Forest Green */
  --primary-light: #2c6b57;
  --accent-color: #c8920a;      /* Premium Gold */
  --accent-light: #e8c96a;
  --dark-color: #111a16;        /* Luxurious Dark Charcoal/Green */
  --light-color: #faf8f5;       /* Warm Off-White */
  --white: #ffffff;
  --border-color: rgba(0, 0, 0, 0.1);
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
  --shadow-md: 0 10px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 40px rgba(0,0,0,0.12);
  
  --font-serif: 'Marcellus', serif;
  --font-sans: 'Montserrat', sans-serif;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  position: relative;
}

body {
  font-family: var(--font-sans);
  background-color: var(--light-color);
  color: var(--dark-color);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: 0.5px;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(200, 146, 10, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 146, 10, 0.45);
}

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

.btn-primary-outline:hover {
  background: var(--accent-color);
  color: var(--white);
}

.btn-secondary {
  background: var(--primary-color);
  color: var(--white);
}

.btn-secondary:hover {
  background: var(--primary-light);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 12px;
}

.btn-large {
  padding: 16px 36px;
  font-size: 16px;
}

.btn-full {
  width: 100%;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(17, 26, 22, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 15px 0;
}

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

/* Brand Logo style */
.logo-area {
  display: flex;
  align-items: center;
  font-family: var(--font-sans);
  line-height: 1;
}

.brand-num {
  font-size: 42px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-right: 5px;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--white);
}

.brand-sub {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--accent-light);
}

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

.desktop-nav a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.desktop-nav a:hover {
  color: var(--accent-light);
}

/* Hamburger mobile menu button */
.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 25px;
  height: 2px;
  background-color: var(--white);
  transition: var(--transition);
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100%;
  background: var(--dark-color);
  z-index: 2000;
  padding: 40px;
  box-shadow: -5px 0 30px rgba(0,0,0,0.5);
  transition: right 0.4s ease;
}

.mobile-drawer.open {
  right: 0;
}

.drawer-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 32px;
  background: transparent;
  color: var(--white);
  border: none;
  cursor: pointer;
}

.drawer-content {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: 60px;
}

.drawer-link {
  color: var(--white);
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 1px;
}

.drawer-link:hover {
  color: var(--accent-light);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  padding: 140px 0 80px 0;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

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

.tagline {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 15px;
}

.hero-content h1 {
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1.1;
  margin-bottom: 15px;
}

.hero-location {
  font-size: 16px;
  margin-bottom: 35px;
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-location i {
  color: var(--accent-light);
}

/* Badge Strip style */
.hero-badge-strip {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.badge-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 15px 25px;
  flex: 1;
  min-width: 160px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.badge-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.6);
}

.badge-val {
  font-size: 16px;
  font-weight: 600;
}

.price-highlight {
  color: var(--accent-light);
  font-size: 20px;
  font-weight: 700;
}

/* Lead Form Card */
.quick-form-card {
  background: var(--white);
  border-radius: 12px;
  padding: 35px;
  box-shadow: var(--shadow-lg);
  color: var(--dark-color);
  max-width: 400px;
  justify-self: end;
}

.quick-form-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--primary-color);
  text-align: center;
}

.quick-form-card p {
  font-size: 12px;
  color: #666;
  text-align: center;
  margin-bottom: 25px;
}

/* Lead Form controls */
.lead-form .form-group {
  margin-bottom: 18px;
}

.lead-form input[type="text"],
.lead-form input[type="email"],
.lead-form input[type="tel"],
.lead-form select {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: var(--font-sans);
  font-size: 14px;
  background-color: #fafafa;
  transition: var(--transition);
}

.lead-form input:focus,
.lead-form select:focus {
  outline: none;
  border-color: var(--primary-color);
  background-color: var(--white);
}

.checkbox-group label {
  display: flex;
  gap: 10px;
  cursor: pointer;
  align-items: flex-start;
}

.checkbox-group input {
  margin-top: 4px;
}

.checkbox-group span {
  font-size: 10px;
  line-height: 1.4;
  color: #666;
}

.mobile-form-section {
  display: none;
  padding: 40px 0;
  background: #f0ede6;
}

/* ==========================================================================
   SECTION COMMON STYLES
   ========================================================================== */
section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 36px;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.section-title .subtitle {
  font-size: 16px;
  color: #666;
  font-weight: 300;
}

.title-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
}

.title-divider::before,
.title-divider::after {
  content: "";
  width: 60px;
  height: 1px;
  background-color: var(--accent-color);
}

.title-divider i {
  font-size: 6px;
  color: var(--accent-color);
}

/* ==========================================================================
   HIGHLIGHTS STRIP
   ========================================================================== */
.highlights-strip-sec {
  background: var(--primary-color);
  padding: 40px 0;
  color: var(--white);
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.h-strip-item {
  text-align: center;
  position: relative;
}

.h-strip-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 15%;
  height: 70%;
  width: 1px;
  background-color: rgba(255,255,255,0.15);
}

.h-strip-item h4 {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--accent-light);
  margin-bottom: 5px;
}

.h-strip-item p {
  font-size: 12px;
  color: rgba(255,255,255,0.8);
}

/* ==========================================================================
   DETAILS SECTION
   ========================================================================== */
.details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.rounded-img {
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

.details-info h3 {
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.details-info p {
  margin-bottom: 25px;
  color: #555;
}

.highlight-list {
  list-style: none;
  margin-bottom: 30px;
}

.highlight-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
}

.highlight-list li i {
  color: var(--accent-color);
  font-size: 12px;
}

/* ==========================================================================
   AMENITIES / GALLERY SECTION
   ========================================================================== */
.amenities-section {
  background-color: #faf5eb;
}

.slider-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.slider-container {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 300%; /* For 3 slides */
}

.slide {
  width: 33.333%;
  flex-shrink: 0;
}

.slide-content {
  height: 480px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 40px;
}

.slide-caption {
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 28px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.8);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: var(--transition);
}

.slider-nav:hover {
  background: var(--white);
  color: var(--accent-color);
}

.slider-nav.prev {
  left: 20px;
}

.slider-nav.next {
  right: 20px;
}

/* ==========================================================================
   FLOOR PLANS SECTION
   ========================================================================== */
.floorplan-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.floorplan-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.floorplan-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.card-image-placeholder {
  height: 250px;
  background: #f0f0f0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  gap: 15px;
  border-bottom: 1px solid var(--border-color);
  background-image: repeating-linear-gradient(45deg, #e5e5e5, #e5e5e5 10px, #f0f0f0 10px, #f0f0f0 20px);
}

.card-image-placeholder i {
  font-size: 48px;
  color: #999;
}

.card-image-placeholder span {
  font-size: 14px;
  font-weight: 500;
  color: #777;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.card-details {
  padding: 30px;
}

.card-details h4 {
  font-size: 22px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.property-meta {
  margin-bottom: 25px;
}

.meta-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
}

.meta-item:last-child {
  border-bottom: none;
}

.meta-item .label {
  color: #666;
  font-size: 14px;
}

.meta-item .val {
  font-weight: 600;
}

.accent-price {
  color: var(--accent-color);
  font-size: 18px;
}

/* ==========================================================================
   LOCATION SECTION
   ========================================================================== */
.location-section {
  background-color: #faf5eb;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.location-list {
  list-style: none;
}

.location-list li {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.loc-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--primary-color);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.loc-text strong {
  display: block;
  font-size: 16px;
  color: var(--primary-color);
  margin-bottom: 4px;
}

.loc-text span {
  font-size: 14px;
  color: #666;
}

/* Map placeholder */
.map-placeholder {
  height: 380px;
  background-color: #e5e0d8;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
  border: 1px dashed var(--accent-color);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.map-placeholder::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, transparent 20%, #e5e0d8 20%, #e5e0d8 80%, transparent 80%, transparent);
  background-size: 30px 30px;
  opacity: 0.15;
}

.map-placeholder i {
  font-size: 56px;
  color: var(--accent-color);
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}

.map-placeholder h4 {
  font-size: 20px;
  color: var(--primary-color);
  margin-bottom: 8px;
  position: relative;
  z-index: 2;
}

.map-placeholder p {
  color: #555;
  font-size: 14px;
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
}

.map-placeholder button {
  position: relative;
  z-index: 2;
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-section {
  background: var(--dark-color);
  color: var(--white);
  padding: 100px 0;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.contact-info h2 {
  font-size: 40px;
  margin-bottom: 20px;
}

.contact-info p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 40px;
  font-size: 16px;
}

.agent-badge {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255,255,255,0.05);
  padding: 20px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
}

.agent-badge i {
  font-size: 32px;
  color: var(--accent-light);
}

.agent-badge strong {
  display: block;
  font-size: 16px;
  color: var(--white);
}

.agent-badge span {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
}

.contact-form-container {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 40px;
  border-radius: 12px;
}

.contact-form-container input,
.contact-form-container select {
  background: rgba(255,255,255,0.9);
  color: var(--dark-color);
}

/* ==========================================================================
   SITE FOOTER
   ========================================================================== */
.site-footer {
  background: #0b110e;
  color: rgba(255,255,255,0.5);
  padding: 50px 0;
  font-size: 12px;
  text-align: center;
}

.footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 30px auto;
}

.copyright {
  font-weight: 500;
}

/* ==========================================================================
   MODAL WINDOW
   ========================================================================== */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-dialog {
  background: var(--white);
  width: 100%;
  max-width: 440px;
  border-radius: 12px;
  padding: 40px;
  position: relative;
  transform: translateY(-50px);
  transition: transform 0.3s ease;
  box-shadow: var(--shadow-lg);
}

.modal.open .modal-dialog {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 28px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #999;
}

.modal-close:hover {
  color: var(--dark-color);
}

.modal-header h3 {
  font-size: 24px;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.modal-header p {
  font-size: 12px;
  color: #666;
  margin-bottom: 25px;
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 991px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-content {
    margin: 0 auto;
  }
  
  .hero-location {
    justify-content: center;
  }
  
  .hero-badge-strip {
    justify-content: center;
  }
  
  .quick-form-card {
    display: none; /* Hide on desktop position, show below */
  }
  
  .mobile-form-section {
    display: block; /* Show inline quick form under hero */
  }
  
  .mobile-form-section .quick-form-card {
    display: block;
    margin: 0 auto;
  }
  
  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .h-strip-item::after {
    display: none !important;
  }
  
  .details-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .floorplan-grid {
    grid-template-columns: 1fr;
    max-width: 550px;
    margin: 0 auto;
  }
  
  .location-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .agent-badge {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .section-title h2 {
    font-size: 28px;
  }
  
  .slide-content {
    height: 350px;
    padding: 20px;
  }
  
  .slide-caption {
    font-size: 20px;
  }
}

@media (max-width: 576px) {
  section {
    padding: 60px 0;
  }
  
  .highlights-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .modal-dialog {
    padding: 25px;
  }
}

/* ==========================================================================
   GOOGLE ADS MARKETING OPTIMIZATIONS
   ========================================================================== */
.rera-policy-tag {
  display: inline-block;
  background: rgba(200, 146, 10, 0.15);
  border: 1px solid var(--accent-color);
  color: var(--accent-light);
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 13px;
  margin-bottom: 20px;
}

.rera-policy-tag strong {
  color: var(--white);
}

.hero-cta-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.phone-cta {
  text-decoration: none;
}

/* Sticky bottom mobile conversion bar */
.mobile-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--white);
  box-shadow: 0 -4px 15px rgba(0,0,0,0.15);
  display: none;
  z-index: 1500;
  grid-template-columns: 1fr 1fr;
}

.sticky-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--white) !important;
}

.btn-call {
  background-color: var(--primary-color);
}

.btn-enquire {
  background-color: var(--accent-color);
}

.floating-actions {
  position: fixed !important;
  bottom: 25px !important;
  left: 25px !important;
  right: auto !important;
  z-index: 999999 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  pointer-events: auto !important;
}

.float-btn {
  width: 58px !important;
  height: 58px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #ffffff !important;
  background-color: #25d366 !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.35) !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease !important;
  text-decoration: none !important;
  padding: 0 !important;
}

.float-btn svg {
  width: 32px !important;
  height: 32px !important;
  fill: #ffffff !important;
}

.float-btn:hover {
  transform: scale(1.1) !important;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6) !important;
}

@media (max-width: 768px) {
  .floating-actions {
    bottom: 75px !important;
    left: 15px !important;
  }
  .float-btn {
    width: 50px !important;
    height: 50px !important;
  }
  .float-btn svg {
    width: 28px !important;
    height: 28px !important;
  }
  .mobile-sticky-bar {
    display: grid !important;
  }
  body {
    padding-bottom: 60px !important;
  }
}

.iti {
  display: block;
  width: 100%;
}


