:root {
  --primary: #3f3b7a;
  --primary-light: #5a5796;
  --accent: #e74c3c;
  --accent-light: #ec7063;
  --dark: #1a1a1a;
  --light: #f8f9fa;
  --gray: #6c757d;
  --border-color: #e0e0e0;
  --shadow-soft: 0 4px 20px -4px rgba(63, 59, 122, 0.15);
  --shadow-strong: 0 8px 30px -4px rgba(63, 59, 122, 0.25);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Top Call Bar */
.call-bar {
  background: hsl(243 45% 40%);
  color: white;
  padding: 0.75rem 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  font-size: 0.875rem;
}

.call-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.call-info i {
  font-size: 0.75rem;
}

.call-label {
  display: none;
}

@media (min-width: 576px) {
  .call-label {
    display: inline;
  }
}

.call-number {
  color: white;
  font-weight: bold;
  text-decoration: none;
  letter-spacing: 0.05em;
}

.call-features {
  display: flex;
  gap:0;
  font-size: 14px;
  color:#fff;
}

.feature-dot {
  display: inline-block;
  width: 8px;              /* bigger dot */
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  /* margin-right: 3px; */
  position: relative;
}
/* Main Header */
.main-header {
  position: fixed;
  top: 50px;              
  left: 0;
  right: 0;
  background: #fff;
  /* border-bottom: 1px solid #eee; */
  z-index: 1020;
  text-align: center;
  align-items: center;
}

.main-header .container-fluid {
  padding: 12px 24px;
}

/* Logo */
.logo img {
  height: 42px;
  width: auto;
}

/* Desktop Nav */
.nav-desktop {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  text-decoration: none;
}

.nav-link:hover {
  color: hsl(243 45% 40%);
}

/* CTA Button */
/* .btn-cta {
  background: #e11d2e;
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.25s ease;
  height: 40px;
}

.btn-cta:hover {
  background: #c51625;
   transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(225, 29, 46, 0.35);
} */

/* Mobile */
.btn-menu {
  font-size: 26px;
  background: none;
  border: none;
  color: #333;
}

/* Mobile Menu */
/* ===== MOBILE NAV – LOVABLE STYLE ===== */
.nav-mobile {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;

  background: #ffffff;
  padding: 1.25rem 1rem;

  border-top: 1px solid #eee;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);

  z-index: 9999;
}

/* open state */
.nav-mobile.active {
  display: block;
}

/* links */
.nav-link-mobile {
  display: block;
  padding: 0.75rem 0;

  font-size: 1rem;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.75);
  text-decoration: none;

  transition: color 0.2s ease;
}

.nav-link-mobile:hover {
  color: #6d28d9; /* primary / accent */
}

/* CTA button (Lovable style) */
.nav-mobile .btn-cta {
  margin-top: 1rem;
   transition: all 0.25s ease;
  transform: translateY(-1px);


  width: 100%;
  height: 48px;

  border-radius: 14px;
  font-size: 1rem;
  font-weight: 600;

  background: hsl(0 79% 50%); /* red */
  color: #fff;
  border: none;

  box-shadow: 0 10px 25px rgba(239, 68, 68, 0.35);
}


/* Body spacing (important) */

/* Buttons */
.btn {
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
}

.btn-cta {
  background: hsl(0 79% 50%);
  color: white;
  padding: 0.5rem 1rem;
  transition: all 0.25s ease;
}

.btn-cta:hover {
  background: hsl(0 79% 50%);
  color: white;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(225, 29, 46, 0.35);
}

.btn-cta:active {
  transform: scale(0.97);
  background: hsl(0 79% 50%) !important;
  color: white !important;
}

.btn-cta.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}

.btn-hero {
  background: hsl(0 79% 50%);
  color: #fff;
  padding: 1rem 2rem;
  font-weight: 700;
  font-size: 1rem;
    transition: all 0.25s ease;

}

.btn-hero:hover {
  background: hsl(0 79% 50%);;
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(225, 29, 46, 0.35);
}

.btn-hero:active {
  transform: scale(0.97);
  background: hsl(0 79% 50%) !important;
  color: white !important;
    transform: scale(0.97);

}

.btn-hero-outline {
  background: transparent;
  color: white;
  border: 2px solid white;
  padding: 1rem 2rem;
  font-weight: 700;
  font-size: 1rem;
}

.btn-hero-outline:hover {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  text-decoration: none;
}

.btn-cta-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.5);
  padding: 0.75rem 1.5rem;
}

.btn-cta-outline:hover {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  text-decoration: none;
}



.btn-light {
  background: white;
  color: #111827;
}

.btn-light:hover {
  background: var(--light);
  color: #111827;
  text-decoration: none;
}

.btn-dark {
  background: hsl(243 45% 40%);
  color: white;
  padding: 0.75rem 1.5rem;
}

.btn-dark:hover {
  background: var(--primary-light);
  color: white;
  text-decoration: none;
}
.btn-dark:active {
  background: hsl(243 45% 40%) !important;
  color: white;
}

/* Hero Section */
.hero-section {
  margin-top: 120px;
  min-height: 90vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  padding: 3rem 1rem;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(55, 54, 85, 0.7) 0%,
    rgba(60, 58, 90, 0.5) 50%,
    rgba(64, 62, 92, 0.8) 100%
  );
  z-index: 0;
  
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: white;
}

.accent-text {
  color: hsl(0 79% 50%);
}

.hero-subtitle {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 auto 2rem auto;
  max-width: 520px;
  text-align: center;   /* 🔥 Lovable look */
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;   /* 🔥 center */
  align-items: center;
  margin-bottom: 3rem;
}

@media (max-width: 576px) {
  .hero-buttons {
    display: flex;
    flex-direction: column;     /* 🔥 stack */
    align-items: stretch;
    gap: 0.75rem;
  }

  .hero-buttons .btn {
    width: 100%;
    padding: 0.9rem 1rem;       /* Lovable height */
    font-size: 0.95rem;
    border-radius: 14px;        /* Lovable round */
  }

  .btn-hero-outline {
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(2px);
  }
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 2rem;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 1.75rem;
  font-weight: 800;
  color: white;
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.scroll-indicator {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-dot {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 8px;
  position: relative;
}

.scroll-dot::after {
  content: "";
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {
  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(8px);
    opacity: 0.5;
  }
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fade-in-up 0.8s ease-out forwards;
  opacity: 0;
}

/* Sections */
section {
  padding: 4rem 0;
}

.section-header {
  margin-bottom: 3rem;
  text-align: center;
}

.section-header h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--dark);
}

.section-header p {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
}

.badge {
  display: inline-block;
  background: rgba(63, 59, 122, 0.1);
  color: var(--primary);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
/* USP Section */
.usp-section {
  background: #f7faff; /* Lovable light background */
  padding: 4rem 0;
}

/* Card */
.usp-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 2.2rem 1.8rem;
  text-align: center;
  height: 100%;
  width:100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.25s ease;
}

/* Hover – Lovable me zyada jump nahi hota */
.usp-card:hover {
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

/* Icon container */
.usp-icon {
  width: 56px;
  height: 56px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: rgba(63, 59, 122, 0.08);
  border-radius: 14px;

  margin-bottom: 1.25rem;

  color: hsl(243 45% 40%);; /* Lovable blue */
  font-size: 1.6rem;

  transition: all 0.25s ease;
}

.usp-card:hover .usp-icon {
  background: rgba(63, 59, 122, 0.14);
}

/* Heading */
.usp-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: #111827; /* dark text */
}

/* Sub text */
.usp-card p {
  font-size: 0.92rem;
  color: #6b7280; /* gray like Lovable */
  margin: 0;
}

/* Section heading polish */
.section-header h2 {
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.section-header p {
  color: #6b7280;
  font-size: 1rem;
}

/* Featured Section */
.featured-section {
  background: hsl(243 45% 40%);;
  color: white;
}

.featured-section .section-header h2,
.featured-section .section-header p {
  color: white;
}

.featured-section .section-header p {
  color: rgba(255, 255, 255, 0.8);
}

.featured-map {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  height: 300px;
  min-height: 300px;
}

@media (min-width: 768px) {
  .featured-map {
    height: 100%;
    min-height: 400px;
  }
}

.price-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1.5rem;
  padding: 2rem;
}

.price-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.price-label {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-bottom: 0.5rem;
}

.price-amount {
  font-size: 3rem;
  font-weight: 800;
  color: white;
}

.price-note {
  font-size: 0.85rem;
  opacity: 0.7;
  margin: 0.5rem 0 0;
}

.location-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
}

.map-link {
  display: block;
  text-align: center;
  color: white;
  /* text-decoration: none; */
  margin-bottom: 1.5rem;
  font-weight: 500;
  /* border-bottom: 1px solid rgba(255, 255, 255, 0.35); */
  padding-bottom: 1rem;
  transition: opacity 0.3s;
}

.map-link:hover {
  opacity: 0.8;
  text-decoration: none;
  color: white;
}

.featured-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
/* Section background like Lovable */
.specs-section {
  background: #f6f9fc;
  padding: 4rem 0;
}

/* Card */
.spec-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.spec-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

/* Header (price strip) */
.spec-header {
  background: hsl(243 45% 40%);;
  color: #fff;
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.spec-header span {
  font-size: 20px;
  opacity: 0.9;
}

.spec-header div {
  font-size: 20px;
  font-weight: 700;
}

/* Body */
.spec-body {
  padding: 22px;
}

.spec-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: #111827;
}

.spec-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: #6b7280;
  margin-bottom: 16px;
}

/* Area + price boxes */
.spec-detail {
  background: #f9fafb;
  border-radius: 12px;
  padding: 14px 10px;
  text-align: center;
}

.spec-detail i {
  color: #3f3b7a;
  font-size: 18px;
  margin-bottom: 6px;
}

.detail-value {
  font-weight: 700;
  font-size: 0.95rem;
  color: #111827;
}

.detail-label {
  font-size: 0.75rem;
  color: #6b7280;
}

/* Feature chips */
.spec-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 14px;
  margin-top: 14px;
  border-top: 1px solid #e5e7eb;
}

.feature-tag {
  background: #eef2ff;
  color: #3f3b7a;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.specs-disclaimer {
  text-align: center;
  font-size: 0.85rem;
  color: var(--gray);
  margin-top: 2rem;
}

.price-value {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 700;
  font-size: 1.25rem;
}

.rupee-icon {
  width: 22px;
  height: 22px;
  color: currentColor;
  position: relative;
  top: -1px; /* optical alignment */
}



/* CTA Banner */
.cta-banner {
  background: hsl(243 45% 40%);
  color: white;
  padding: 2.5rem 0;
}

.cta-banner h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.cta-banner p {
  margin-bottom: 1.5rem;
  opacity: 0.9;
  font-size: 1rem;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 576px) {
  .cta-buttons {
    flex-direction: row;
    justify-content: center;
  }
}
/* Gallery Section */
.gallery-section {
  background: #ffffff;
  padding: 4rem 0;
}

/* IMPORTANT: Bootstrap row ko hi use karo */
.gallery-grid {
  row-gap: 1.25rem;
}

/* Card */
.gallery-item {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;           /* sab images equal height */
  border-radius: 16px;
  overflow: hidden;
  background: #f3f4f6;
  cursor: pointer;

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

/* Image */
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

/* Overlay */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(17, 24, 39, 0.85) 0%,
    rgba(17, 24, 39, 0.4) 40%,
    transparent 65%
  );
  display: flex;
  align-items: flex-end;
  padding: 1rem 1.25rem;

  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 500;

  opacity: 0;
  transition: opacity 0.25s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}




/* Office Section */
.office-section {
  background: #f5f5f5;
}

.office-card {
  background: white;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: var(--shadow-soft);
}
.office-card a{
  height: 55px;
}

.office-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.office-item:last-child {
  margin-bottom: 0;
}

.office-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 0.5rem;
  flex-shrink: 0;
  font-size: 1.25rem;
}

.address-icon {
  background: rgba(63, 59, 122, 0.1);
  color: var(--primary);
}

.phone-icon {
  background: rgba(231, 76, 60, 0.1);
  color: hsl(142 76% 36%);
}

.clock-icon {
  background: rgba(231, 76, 60, 0.1);
  color: var(--accent);
}

.office-item h4 {
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}
.office-item a {
  color: hsl(142 76% 36%);
  font-size: 0.9rem;
  margin: 0;
  text-decoration: none;
  transition: color 0.3s;
}
.office-item p {
  color: var(--gray);
  font-size: 0.9rem;
  margin: 0;
  text-decoration: none;
  transition: color 0.3s;
}

.office-item a:hover {
  color: var(--primary);
}

/* Contact Section */
.contact-section {
  background: hsl(243 45% 40%);
  color: white;
}

.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

.contact-section h2 {
  color: white;
  margin-bottom: 0.75rem;
}

.contact-section > div > div:first-child p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}

.contact-form {
  /* background: rgba(255, 255, 255, 0.1); */
  border-radius: 1rem;
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.contact-form .btn-cta {
  height: 56px;          
  font-size: 16px;
  font-weight: 600;
  border-radius: 12px;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group:last-of-type {
  margin-bottom: 1.5rem;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

/* icon */
.input-wrapper i {
  position: absolute;
  left: 14px;                 /* thoda andar */
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;            /* 🔥 readable icon */
  color: #9ca3af;             /* muted gray (Lovable) */
  pointer-events: none;
}

/* input field */
.input-wrapper .form-control {
  width: 100%;
  height: 48px;               /* h-12 */
  padding-left: 44px !important; /* pl-11 */
  padding-right: 12px;

  border-radius: 10px;        /* rounded-md */
  border: 1px solid #e5e7eb;  /* soft border */

  font-size: 15px;
  color: #111827;
  background: #fff;

  transition: all 0.2s ease;
}

/* placeholder */
.input-wrapper .form-control::placeholder {
  color: #9ca3af;
}

/* focus ring (Lovable look) */
.input-wrapper .form-control:focus {
  outline: none;
  border-color: hsl(243 45% 40%);
  box-shadow: 0 0 0 3px rgba(63, 59, 122, 0.18);
}


.form-control {
  padding-left: 2.75rem !important;
  height: 3.5rem;
  font-size: 1rem;
  border-radius: 0.75rem;
  border: none;
  background: white;
  color: var(--dark);
}

.form-control::placeholder {
  color: var(--gray);
}

.form-control:focus {
  border: none;
  outline: none;
  box-shadow: 0 0 0 3px rgba(63, 59, 122, 0.1);
}

.contact-note {
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* Callback Modal */
.callback-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1060;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.callback-modal.active {
  display: flex;
}

.callback-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  animation: fade-in 0.3s;
}

.callback-content {
  position: relative;
  background: white;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-strong);
  width: 100%;
  max-width: 420px;
  padding: 1.5rem;
  animation: slide-up 0.3s;
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slide-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.callback-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--gray);
  cursor: pointer;
  padding: 0.5rem;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.callback-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.callback-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: rgba(239, 68, 68, 0.35);
  border-radius: 50%;
  margin-bottom: 1rem;
  color: hsl(0 79% 50%);
  font-size: 1.75rem;
}

.callback-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.callback-header p {
  color: var(--gray);
  margin: 0;
  font-size: 0.95rem;
}

.callback-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1rem;
}

.callback-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--gray);
  margin: 0;
}

/* Footer */
.footer {
  background: #0f1729;
  color: rgba(255, 255, 255, 0.8);
  padding: 2.5rem 0 1.5rem;
}

.footer-logo {
  height: 48px;
  width: auto;
}

.footer-tagline {
  font-size: 0.9rem;
  max-width: 300px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-link {
  display: flex;
  align-items: center;
  gap: 10px;

  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;

  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 0.9rem;

  transition: all 0.25s ease;
}

.footer-link:hover {
  color: white;
  text-decoration: none;
}

.footer-link i {
  font-size: 0.85rem;
}

.footer .col-md.text-md-end {
  display: flex;
  flex-direction: column;
  align-items: flex-end;   /* 🔥 main fix */
}

.footer-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 1.5rem 0;
}

.footer-copyright {
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

@media (max-width: 767px) {

  /* footer ke saare columns center */
  .footer .row > div {
    display: flex !important;
    flex-direction: column;
    align-items: center !important;
    text-align: center !important;
  }

  /* phone + address links center */
  .footer-link {
    justify-content: center;
  }

  /* tagline center */
  .footer-tagline {
    margin-left: auto;
    margin-right: auto;
  }
}


/* Responsive */
@media (max-width: 991px) {
  .hero-title {
    font-size: 2.25rem;
  }

  .section-header h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  section {
    padding: 2.5rem 0;
  }

  .main-header .container {
    padding: 0.5rem 1rem;
  }

  .logo img {
    height: 35px;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
  }

  .stat-number {
    font-size: 1.25rem;
  }

  .stat-label {
    font-size: 0.75rem;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .section-header h2 {
    font-size: 1.25rem;
  }

  .price-amount {
    font-size: 2rem;
  }

  .usp-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}
