* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

body {
  background-color: #ffffff;
  color: #1a1a1a;
  line-height: 1.6;
}

/* Design System Variables */
:root {
  --primary: #013ca6;
  --primary-light: #eef4fc;
  --primary-dark: #002b7a;
  --white: #ffffff;
  --gray-light: #f8fafc;
  --gray-border: #e9edf4;
  --text-muted: #4a5568;
  
  /* Layout Spacing */
  --max-width: 1200px;
  --section-padding: 5.5rem;
  --section-padding-mobile: 3.5rem;
  
  /* Shadows */
  --card-shadow: 0 10px 30px -10px rgba(1, 60, 166, 0.08);
  --card-shadow-hover: 0 20px 40px -15px rgba(1, 60, 166, 0.15);
  --nav-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px; /* Offset for sticky header */
}

/* ----- Navigation (sticky, premium) ----- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-border);
  box-shadow: var(--nav-shadow);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 5%;
  width: 100%;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.5px;
}

.logo span {
  font-weight: 300;
  color: #1a1a1a;
}

.nav-links {
  display: flex;
  gap: 2.2rem;
  font-weight: 500;
  color: #1a1a1a;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: #1a1a1a;
  transition: color 0.2s;
  font-size: 0.95rem;
}

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

.nav-links a.active {
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
  padding-bottom: 4px;
}

.nav-cta {
  background: var(--primary);
  color: var(--white) !important;
  padding: 0.55rem 1.5rem;
  border-radius: 30px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(1, 60, 166, 0.15);
  transition: all 0.2s ease;
}

.nav-cta:hover {
  background: var(--primary-dark) !important;
  color: var(--white) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(1, 60, 166, 0.25);
}

/* ----- Hero (aligned stats) ----- */
.about-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url('../assets/chhattisgarh_real_estate.png') no-repeat center center/cover;
  padding: 8rem 5% 7rem;
  text-align: center;
  border-bottom: 1px solid var(--gray-border);
}

.about-hero h1 {
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -1px;
  margin-bottom: 0.5rem;
}

.about-hero .subhead {
  font-size: 1.2rem;
  color: #e2e8f0;
  max-width: 750px;
  margin: 0.5rem auto 2.5rem;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 4.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.hero-stats .stat-item {
  text-align: center;
}

.hero-stats .stat-number {
  font-size: 2.8rem;
  font-weight: 700;
  color: #ffd700; /* Premium gold accent */
  line-height: 1.2;
}

.hero-stats .stat-label {
  font-size: 0.95rem;
  color: #e2e8f0;
  letter-spacing: 0.3px;
  margin-top: 0.3rem;
}

/* ----- Company intro ----- */
.company-section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--section-padding) 5%;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4.5rem;
  align-items: center;
}

.company-text h2 {
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1.2rem;
  letter-spacing: -0.5px;
}

.company-text p {
  color: #2d3748;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  line-height: 1.7;
}

.company-text .highlight-badge {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 0.35rem 1.1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 1.2rem;
}

.company-video-container {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--gray-border);
  box-shadow: 0 12px 28px rgba(1, 60, 166, 0.08);
  background: #000;
}

.company-video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ----- Values Section ----- */
.values-section {
  background: var(--gray-light);
  padding: var(--section-padding) 5%;
  border-top: 1px solid var(--gray-border);
  border-bottom: 1px solid var(--gray-border);
}

.values-container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.values-container h2 {
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--primary);
  text-align: center;
  margin-bottom: 3.5rem;
  letter-spacing: -0.5px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.2rem;
}

.value-card {
  background: var(--white);
  padding: 2.8rem 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--gray-border);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--card-shadow-hover);
  border-color: rgba(1, 60, 166, 0.2);
}

.value-card i {
  font-size: 2.6rem;
  color: var(--primary);
  margin-bottom: 1.2rem;
  display: inline-block;
}

.value-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: #1a1a1a;
}

.value-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* ----- Milestones Section ----- */
.timeline-section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--section-padding) 5%;
}

.timeline-section h2 {
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--primary);
  text-align: center;
  margin-bottom: 3rem;
  letter-spacing: -0.5px;
}

.timeline-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.8rem;
  max-width: 900px;
  margin: 0 auto;
}

.timeline-item {
  background: var(--gray-light);
  padding: 0.6rem 1.5rem;
  border-radius: 30px;
  font-weight: 500;
  color: var(--primary);
  border: 1px solid var(--gray-border);
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.timeline-item:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: scale(1.05);
}

/* ----- Testimonials & Trust ----- */
.awards-section {
  background: var(--primary);
  color: var(--white);
  padding: 4.5rem 5%;
  text-align: center;
}

.awards-container {
  max-width: 900px;
  margin: 0 auto;
}

.awards-container blockquote {
  font-size: 1.7rem;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 2rem;
  quotes: "“" "”" "‘" "’";
}

.awards-container blockquote::before {
  content: "“";
  font-size: 2.8rem;
  opacity: 0.4;
  margin-right: 4px;
  vertical-align: middle;
}

.awards-container blockquote::after {
  content: "”";
  font-size: 2.8rem;
  opacity: 0.4;
  margin-left: 4px;
  vertical-align: middle;
}

.awards-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem 3.5rem;
  font-weight: 400;
  opacity: 0.95;
  font-size: 1rem;
}

.awards-logos span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.awards-logos i {
  font-size: 1.25rem;
}

/* ----- Contact Section ----- */
.contact-section {
  background: var(--white);
  padding: var(--section-padding) 5%;
  border-top: 1px solid var(--gray-border);
}

.contact-container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.contact-container h2 {
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--primary);
  text-align: center;
  margin-bottom: 0.5rem;
  letter-spacing: -0.5px;
}

.contact-subhead {
  font-size: 1.1rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.contact-info h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 1.2rem;
}

.contact-info > p {
  color: var(--text-muted);
  margin-bottom: 2.2rem;
  font-size: 1.05rem;
  line-height: 1.6;
}

.info-item {
  display: flex;
  gap: 1.4rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}

.info-item i {
  font-size: 1.4rem;
  color: var(--primary);
  background: var(--primary-light);
  padding: 0.85rem;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-item h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.info-item p {
  color: var(--text-muted);
  font-size: 0.98rem;
}

.contact-form-container {
  background: var(--gray-light);
  padding: 3rem;
  border-radius: 20px;
  border: 1px solid var(--gray-border);
  box-shadow: var(--card-shadow);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1.1rem 1.3rem;
  border: 1px solid var(--gray-border);
  border-radius: 10px;
  background: var(--white);
  font-size: 1rem;
  outline: none;
  transition: all 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(1, 60, 166, 0.08);
}

.submit-btn {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 1.1rem;
  border-radius: 30px;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(1, 60, 166, 0.15);
  transition: all 0.2s ease;
}

.submit-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(1, 60, 166, 0.25);
}

.submit-btn:active {
  transform: scale(0.98);
}

/* ----- Footer ----- */
.footer {
  background: #0b1a2f;
  color: #cbd5e1;
  padding: 3.5rem 5% 3rem;
  text-align: center;
  border-top: 1px solid #1e2f45;
}

.footer .footer-brand {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.footer .footer-brand span {
  color: #8aa3d1;
}

.footer p {
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Social icons styling */
.social-links {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin: 1.8rem 0;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 1.1rem;
}

.social-links a:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(1, 60, 166, 0.35);
  border-color: var(--primary);
}

/* ----- Responsive Rules ----- */
@media (max-width: 992px) {
  .company-section {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: var(--section-padding-mobile);
  }

  .navbar {
    flex-wrap: wrap;
    gap: 1.2rem;
    padding: 1rem 5%;
    justify-content: center;
  }

  .nav-links {
    gap: 1.4rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .about-hero {
    padding: 4.5rem 5% 3.5rem;
  }

  .about-hero h1 {
    font-size: 2.5rem;
  }

  .hero-stats {
    gap: 2rem 3rem;
  }

  .values-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-form-container {
    padding: 2.2rem;
  }

  .awards-container blockquote {
    font-size: 1.35rem;
  }
}

@media (max-width: 480px) {
  .values-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats .stat-number {
    font-size: 2.2rem;
  }
  
  .contact-form-container {
    padding: 1.5rem;
  }
}

/* ----- Property Scrollable Slider ----- */
.property-slider-container {
  margin-top: 3.5rem;
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.property-slider {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 10px 5px 25px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
  -webkit-overflow-scrolling: touch;
}

/* Custom scrollbar styling for webkit browsers */
.property-slider::-webkit-scrollbar {
  height: 6px;
}
.property-slider::-webkit-scrollbar-track {
  background: transparent;
}
.property-slider::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 10px;
}

.property-slide {
  flex: 0 0 calc(33.33% - 16px);
  min-width: 280px;
  scroll-snap-align: start;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  overflow: hidden;
  text-align: left;
  transition: transform 0.3s ease, border-color 0.3s ease;
  box-shadow: 0 10px 25px -10px rgba(0, 0, 0, 0.3);
}

.property-slide:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.12);
}

.property-slide img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.property-slide-info {
  padding: 1.5rem;
}

.property-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: #ffd700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.property-slide-info h3 {
  font-size: 1.15rem;
  font-weight: 650;
  color: var(--white);
  margin: 0.4rem 0 0.2rem;
}

.property-slide-info p {
  font-size: 0.85rem;
  color: #cbd5e1;
  margin: 0;
}

.slider-hint {
  font-size: 0.85rem;
  color: #94a3b8;
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 500;
}

.slider-hint i {
  animation: bounceX 1.5s infinite alternate;
}

@keyframes bounceX {
  0% { transform: translateX(-3px); }
  100% { transform: translateX(3px); }
}

@media (max-width: 900px) {
  .property-slide {
    flex: 0 0 calc(50% - 12px);
  }
}

@media (max-width: 600px) {
  .property-slide {
    flex: 0 0 85%;
  }
}

/* ----- Floating WhatsApp Button ----- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  background-color: #20ba5a;
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
  color: #fff;
}

.whatsapp-float .whatsapp-tooltip {
  position: absolute;
  right: 76px;
  background-color: #333;
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.whatsapp-float .whatsapp-tooltip::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  margin-top: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent transparent #333;
}

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

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
    font-size: 28px;
  }
  .whatsapp-float .whatsapp-tooltip {
    display: none;
  }
}

/* ----- YouTube Feed Cards ----- */
.yt-feed-card {
  transition: all 0.3s ease;
}

.yt-feed-card:hover > div {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(1, 60, 166, 0.15) !important;
  border-color: var(--primary) !important;
}

.yt-feed-card:hover div div i {
  color: var(--white) !important;
}

.yt-feed-card:hover div div div {
  background: #ff0000 !important;
  transform: translate(-50%, -50%) scale(1.1);
}

/* ----- Testimonials Slider ----- */
.testimonial-slide {
  display: none;
  width: 100%;
  text-align: center;
}

.testimonial-slide.active {
  display: block;
  animation: fadeInTestimonial 0.5s ease forwards;
}

@keyframes fadeInTestimonial {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ----- Mobile Responsive Menu ----- */
@media (max-width: 768px) {
  .navbar {
    position: relative;
  }
  
  .menu-toggle {
    display: block !important;
    font-size: 1.6rem;
    color: var(--primary);
    cursor: pointer;
    transition: transform 0.2s ease;
  }
  
  .menu-toggle:hover {
    transform: scale(1.05);
  }
  
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    border-bottom: 1px solid var(--gray-border);
    padding: 1.5rem 5%;
    gap: 1.2rem;
    box-shadow: 0 10px 20px rgba(1, 60, 166, 0.08);
    z-index: 1000;
    align-items: flex-start;
    box-sizing: border-box;
  }
  
  .nav-links.active {
    display: flex;
    animation: slideDownMenu 0.3s ease forwards;
  }
  
  .nav-links a {
    width: 100%;
    padding: 6px 0;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
  }
  
  .nav-links a.active {
    border-bottom: none;
    padding-bottom: 0;
    font-weight: 700;
  }

  .nav-cta {
    width: auto;
    text-align: center;
    margin-top: 8px;
    padding: 0.65rem 2rem;
  }
}

@keyframes slideDownMenu {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}