/* ============================================
   MANKI INFRA PROJECT PVT LTD - Design System
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@400;500;600;700&display=swap');

:root {
  --primary: #ffffff;
  --secondary: #0f9d58;
  --accent: #1e88e5;
  --dark: #1a1a2e;
  --dark2: #16213e;
  --gray-50: #f8f9fa;
  --gray-100: #f1f3f5;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-400: #ced4da;
  --gray-500: #adb5bd;
  --gray-600: #6c757d;
  --gray-700: #495057;
  --gray-800: #343a40;
  --gray-900: #212529;
  --green-light: #e8f5e9;
  --green-dark: #0a7a43;
  --blue-light: #e3f2fd;
  --blue-dark: #1565c0;
  --gold: #f4a940;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.2);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-body: 'Inter', sans-serif;
  --font-heading: 'Playfair Display', serif;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  line-height: 1.7;
  overflow-x: hidden;
  background: var(--primary);
}

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

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  font-family: inherit;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: 1rem;
}

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

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

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-xl);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  letter-spacing: 0.3px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--secondary), var(--green-dark));
  color: #fff;
  box-shadow: 0 4px 15px rgba(15, 157, 88, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(15, 157, 88, 0.5);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--accent), var(--blue-dark));
  color: #fff;
  box-shadow: 0 4px 15px rgba(30, 136, 229, 0.4);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(30, 136, 229, 0.5);
}

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

.btn-outline:hover {
  background: var(--secondary);
  color: #fff;
  transform: translateY(-3px);
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
  transform: translateY(-3px);
  background: #1ebe5d;
}

.btn-call {
  background: var(--accent);
  color: #fff;
}

.btn-call:hover {
  transform: translateY(-3px);
}

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

.section-header h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--dark);
  margin-bottom: 15px;
  position: relative;
}

.section-header h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  margin: 15px auto 0;
  border-radius: 2px;
}

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

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
  padding: 15px 0;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-md);
  padding: 8px 0;
}

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

.header .logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header .logo img {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.header .logo-text {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
}

.header .logo-text span {
  display: block;
  font-size: 0.65rem;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--secondary);
  letter-spacing: 2px;
  text-transform: uppercase;
}

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

.nav-links a {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--gray-700);
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--secondary);
  background: var(--green-light);
}

.header:not(.scrolled) .nav-links a {
  color: rgba(255, 255, 255, 0.9);
}

.header:not(.scrolled) .nav-links a:hover,
.header:not(.scrolled) .nav-links a.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
}

.header:not(.scrolled) .logo-text {
  color: #fff;
}

.header:not(.scrolled) .logo-text span {
  color: rgba(255, 255, 255, 0.8);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 5px;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 2.5px;
  background: var(--dark);
  border-radius: 3px;
  transition: var(--transition);
}

.header:not(.scrolled) .hamburger span {
  background: #fff;
}

/* ===== TOP BAR ===== */
.top-bar {
  background: linear-gradient(90deg, var(--dark), var(--dark2));
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
  padding: 8px 0;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.top-bar a {
  color: rgba(255, 255, 255, 0.9);
}

.top-bar a:hover {
  color: var(--secondary);
}

.top-bar-left,
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.75), rgba(15, 157, 88, 0.35)), url('../assets/hero-bg.jpg') center/cover no-repeat;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.03)" d="M0,160L48,170.7C96,181,192,203,288,197.3C384,192,480,160,576,154.7C672,149,768,171,864,186.7C960,203,1056,213,1152,202.7C1248,192,1344,160,1392,144L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"/></svg>') no-repeat bottom;
  background-size: cover;
}

.hero-content {
  position: relative;
  z-index: 5;
  text-align: center;
  max-width: 850px;
  padding: 0 20px;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 24px;
  border-radius: var(--radius-xl);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 25px;
  animation: float 3s ease infinite;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero h1 span {
  background: linear-gradient(90deg, var(--secondary), #4caf50);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 35px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
  position: relative;
  z-index: 10;
}

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero-wave svg {
  display: block;
  width: 100%;
}

/* Floating shapes */
.hero .floating-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  animation: float 6s ease infinite;
}

.hero .shape1 {
  width: 300px;
  height: 300px;
  background: var(--secondary);
  top: 10%;
  left: -5%;
  animation-delay: 0s;
}

.hero .shape2 {
  width: 200px;
  height: 200px;
  background: var(--accent);
  top: 20%;
  right: -3%;
  animation-delay: 2s;
}

.hero .shape3 {
  width: 150px;
  height: 150px;
  background: var(--gold);
  bottom: 20%;
  left: 10%;
  animation-delay: 4s;
}

/* ===== COUNTERS ===== */
.counters-section {
  background: linear-gradient(135deg, var(--dark), var(--dark2));
  padding: 60px 0;
  position: relative;
}

.counters-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: center;
}

.counter-item {
  padding: 30px;
}

.counter-item .counter-icon {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.counter-item .counter-number {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  font-family: var(--font-heading);
}

.counter-item .counter-number span {
  color: var(--secondary);
}

.counter-item .counter-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin-top: 5px;
}

/* ===== AMENITIES ===== */
.amenities-section {
  background: var(--gray-50);
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
}

.amenity-card {
  background: #fff;
  padding: 35px 25px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--gray-200);
}

.amenity-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--secondary);
}

.amenity-card .amenity-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: var(--transition);
  border: 3px solid var(--green-light);
}

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

.amenity-card:hover .amenity-icon {
  border-color: var(--secondary);
  transform: scale(1.1) rotate(5deg);
}

.amenity-card:hover .amenity-icon img {
  transform: scale(1.1);
}

.amenity-card h3 {
  font-size: 1.05rem;
  color: var(--dark);
  margin-bottom: 8px;
}

.amenity-card p {
  font-size: 0.85rem;
  color: var(--gray-600);
}

/* ===== DEVELOPMENTS ===== */
.developments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.dev-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--secondary);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 20px;
}

.dev-card:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
}

.dev-card .dev-icon {
  width: 70px;
  height: 70px;
  min-width: 70px;
  background: var(--blue-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 2px solid var(--secondary);
  transition: var(--transition);
}

.dev-card .dev-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.dev-card:hover .dev-icon img {
  transform: scale(1.1);
}

.dev-card h3 {
  font-size: 1rem;
  color: var(--dark);
}

.dev-card p {
  font-size: 0.82rem;
  color: var(--gray-600);
  margin-top: 4px;
}

/* ===== WHY CHOOSE US ===== */
.why-section {
  background: var(--gray-50);
}

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

.why-card {
  background: #fff;
  padding: 35px 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.why-card:hover::before {
  transform: scaleX(1);
}

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

.why-card .why-icon {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.why-card h3 {
  font-size: 1.15rem;
  color: var(--dark);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.9rem;
  color: var(--gray-600);
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  background: linear-gradient(135deg, var(--dark), var(--dark2));
  color: #fff;
}

.testimonials-section .section-header h2 {
  color: #fff;
}

.testimonials-section .section-header p {
  color: rgba(255, 255, 255, 0.7);
}

.testimonial-carousel {
  position: relative;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-card {
  min-width: 100%;
  padding: 0 20px;
}

.testimonial-card .t-content {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 40px;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-card .t-stars {
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.testimonial-card .t-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-card .t-author {
  font-weight: 600;
  color: var(--secondary);
}

.testimonial-card .t-role {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.testimonial-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: var(--transition);
}

.testimonial-dots .dot.active {
  background: var(--secondary);
  transform: scale(1.2);
}

/* ===== MAP ===== */
.map-section iframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

/* ===== FOOTER ===== */
.footer {
  background: linear-gradient(135deg, var(--dark), #0d1117);
  color: rgba(255, 255, 255, 0.8);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
}

.footer-col h3 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--secondary);
  border-radius: 2px;
}

.footer-col p {
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.footer-col a {
  display: block;
  padding: 5px 0;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--secondary);
  padding-left: 8px;
}

.footer-col .footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.footer-col .footer-logo img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
}

.footer-col .social-links {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}

.footer-col .social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  padding: 0;
}

.footer-col .social-links a:hover {
  background: var(--secondary);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
  padding: 20px 0;
  text-align: center;
  font-size: 0.85rem;
}

/* ===== FLOATING BUTTONS ===== */
.float-whatsapp {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  z-index: 999;
  transition: var(--transition);
  animation: pulse 2s infinite;
}

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

.float-call {
  position: fixed;
  bottom: 25px;
  left: 25px;
  width: 60px;
  height: 60px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  box-shadow: 0 4px 20px rgba(30, 136, 229, 0.5);
  z-index: 999;
  transition: var(--transition);
}

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

.scroll-top {
  position: fixed;
  bottom: 95px;
  right: 25px;
  width: 45px;
  height: 45px;
  background: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: var(--secondary);
  transform: translateY(-3px);
}

/* ===== POPUP ===== */
.lead-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
}

.lead-popup-overlay.active {
  display: flex;
}

.lead-popup {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 450px;
  width: 90%;
  position: relative;
  animation: slideDown 0.5s ease;
  box-shadow: var(--shadow-xl);
}

.lead-popup .close-popup {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 1.5rem;
  background: none;
  color: var(--gray-600);
}

.lead-popup h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 8px;
}

.lead-popup p {
  color: var(--gray-600);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.lead-popup .form-group {
  margin-bottom: 15px;
}

.lead-popup input,
.lead-popup select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  transition: var(--transition);
}

.lead-popup input:focus,
.lead-popup select:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(15, 157, 88, 0.1);
}

.lead-popup .btn {
  width: 100%;
  justify-content: center;
}

/* ===== FORMS ===== */
.form-section {
  background: var(--gray-50);
}

.form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  max-width: 700px;
  margin: 0 auto;
}

.form-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 25px;
  color: var(--dark);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--gray-700);
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  transition: var(--transition);
  background: #fff;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(15, 157, 88, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 30px;
}

.form-success.active {
  display: block;
}

.form-success .check-icon {
  font-size: 3rem;
  color: var(--secondary);
  margin-bottom: 15px;
}

.form-success h3 {
  color: var(--dark);
  margin-bottom: 10px;
}

/* ===== PAGE HERO ===== */
.page-hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--dark), var(--dark2));
  text-align: center;
  color: #fff;
  position: relative;
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  margin-bottom: 15px;
}

.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.page-hero .breadcrumb a {
  color: var(--secondary);
}

/* ===== ABOUT PAGE ===== */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-intro .about-text h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--dark);
  margin-bottom: 15px;
}

.about-intro .about-text p {
  color: var(--gray-600);
  margin-bottom: 15px;
}

.about-img {
  background: linear-gradient(135deg, var(--green-light), var(--blue-light));
  border-radius: var(--radius-lg);
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}

.vision-mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.vm-card {
  background: #fff;
  padding: 35px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--secondary);
}

.vm-card:nth-child(2) {
  border-top-color: var(--accent);
}

.vm-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--dark);
}

.director-section {
  background: var(--gray-50);
}

.director-card {
  display: flex;
  gap: 40px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.director-avatar {
  min-width: 150px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: #fff;
}

.director-card blockquote {
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gray-700);
  line-height: 1.8;
  border-left: 4px solid var(--secondary);
  padding-left: 20px;
}

.invest-reasons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.invest-card {
  background: #fff;
  padding: 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.invest-card .invest-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.invest-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--dark);
}

/* ===== PLOT PAGE ===== */
.plot-table-wrap {
  overflow-x: auto;
}

.plot-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.plot-table th {
  background: linear-gradient(135deg, var(--secondary), var(--green-dark));
  color: #fff;
  padding: 15px 20px;
  text-align: left;
  font-weight: 600;
}

.plot-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--gray-200);
}

.plot-table tr:hover td {
  background: var(--green-light);
}

.plot-table .price {
  font-weight: 700;
  color: var(--secondary);
}

.layout-plan {
  background: var(--gray-50);
  text-align: center;
}

.layout-placeholder {
  background: #fff;
  border: 2px dashed var(--gray-300);
  border-radius: var(--radius-md);
  padding: 60px;
  color: var(--gray-500);
  font-size: 1.1rem;
}

.emi-calculator {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  max-width: 600px;
  margin: 0 auto;
}

.emi-calculator h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 25px;
  text-align: center;
}

.emi-slider-group {
  margin-bottom: 25px;
}

.emi-slider-group label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--gray-700);
}

.emi-slider-group label span {
  color: var(--secondary);
  font-weight: 700;
}

.emi-slider-group input[type="range"] {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  background: var(--gray-200);
  border-radius: 3px;
  outline: none;
}

.emi-slider-group input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--secondary);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(15, 157, 88, 0.4);
}

.emi-result {
  background: linear-gradient(135deg, var(--green-light), #c8e6c9);
  border-radius: var(--radius-md);
  padding: 25px;
  text-align: center;
  margin-top: 20px;
}

.emi-result .emi-amount {
  font-size: 2rem;
  font-weight: 800;
  color: var(--secondary);
}

.emi-result p {
  color: var(--gray-700);
}

/* ===== GALLERY ===== */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.gallery-filters button {
  padding: 10px 24px;
  border-radius: var(--radius-xl);
  background: var(--gray-100);
  color: var(--gray-700);
  font-weight: 500;
  transition: var(--transition);
  border: 1px solid var(--gray-200);
}

.gallery-filters button.active,
.gallery-filters button:hover {
  background: var(--secondary);
  color: #fff;
  border-color: var(--secondary);
}

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

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/2;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.gallery-item .gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent 60%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 25px;
}

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

.gallery-overlay p {
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
  transform: translateY(10px);
  transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay p {
  transform: translateY(0);
}

/* Transformation Section */
.transformation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.transformation-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

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

.transformation-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.transformation-content {
  padding: 25px;
  text-align: center;
}

.transformation-content h3 {
  margin-bottom: 10px;
  color: var(--dark);
}

.transformation-content p {
  color: var(--gray-600);
  font-size: 0.95rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox .lightbox-content {
  max-width: 90%;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: #fff;
  background: var(--dark2);
  padding: 60px;
  border-radius: var(--radius-md);
}

.lightbox .close-lightbox {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2rem;
  color: #fff;
  background: none;
  cursor: pointer;
}

/* ===== CAREER ===== */
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
  margin-bottom: 50px;
}

.job-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--secondary);
  transition: var(--transition);
}

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

.job-card h3 {
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 8px;
}

.job-card .job-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 12px;
  font-size: 0.85rem;
  color: var(--gray-600);
}

.job-card .job-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.job-card p {
  font-size: 0.9rem;
  color: var(--gray-600);
  margin-bottom: 15px;
}

/* ===== ADMIN ===== */
.admin-login {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-50);
}

.login-card {
  background: #fff;
  padding: 50px 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  max-width: 420px;
  width: 90%;
  text-align: center;
}

.login-card .login-logo {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
}

.login-card .login-logo img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.login-card h2 {
  font-family: var(--font-heading);
  margin-bottom: 8px;
}

.login-card p {
  color: var(--gray-600);
  font-size: 0.9rem;
  margin-bottom: 25px;
}

.admin-dashboard {
  display: none;
  min-height: 100vh;
}

.admin-dashboard.active {
  display: flex;
}

.admin-sidebar {
  width: 260px;
  background: var(--dark);
  color: #fff;
  padding: 25px 0;
  min-height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
}

.admin-sidebar .sidebar-header {
  padding: 0 25px 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 12px;
}

.admin-sidebar .sidebar-header img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.admin-sidebar .sidebar-header h3 {
  font-size: 0.95rem;
}

.admin-sidebar nav {
  padding: 15px 0;
}

.admin-sidebar nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 25px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: var(--transition);
}

.admin-sidebar nav a:hover,
.admin-sidebar nav a.active {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-right: 3px solid var(--secondary);
}

.admin-main {
  margin-left: 260px;
  padding: 30px;
  flex: 1;
  background: var(--gray-50);
  min-height: 100vh;
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.admin-header h1 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.stat-card {
  background: #fff;
  padding: 25px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.stat-card .stat-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.stat-card .stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark);
}

.stat-card .stat-label {
  color: var(--gray-600);
  font-size: 0.85rem;
}

.admin-panel-section {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 25px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 25px;
}

.admin-panel-section h2 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--gray-200);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table th {
  background: var(--gray-50);
  padding: 12px 15px;
  text-align: left;
  font-size: 0.85rem;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.admin-table td {
  padding: 12px 15px;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.9rem;
}

.admin-table .badge {
  padding: 4px 12px;
  border-radius: var(--radius-xl);
  font-size: 0.78rem;
  font-weight: 500;
}

.badge-active {
  background: var(--green-light);
  color: var(--green-dark);
}

.badge-pending {
  background: #fff3e0;
  color: #e65100;
}

.admin-btn {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 500;
  transition: var(--transition);
}

.admin-btn-edit {
  background: var(--blue-light);
  color: var(--accent);
}

.admin-btn-delete {
  background: #fce4ec;
  color: #c62828;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .admin-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    padding: 80px 30px 30px;
    box-shadow: var(--shadow-xl);
    transition: right 0.3s ease;
    gap: 5px;
    z-index: 1001;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    color: var(--gray-800) !important;
    padding: 12px 16px;
    width: 100%;
  }

  .nav-links a:hover {
    background: var(--green-light) !important;
    color: var(--secondary) !important;
  }

  .hamburger {
    display: flex;
    z-index: 1002;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

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

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

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

  .counters-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .counter-item .counter-number {
    font-size: 2rem;
  }

  .about-intro {
    grid-template-columns: 1fr;
  }

  .vision-mission {
    grid-template-columns: 1fr;
  }

  .director-card {
    flex-direction: column;
    text-align: center;
  }

  .director-card blockquote {
    border-left: none;
    padding-left: 0;
    border-top: 4px solid var(--secondary);
    padding-top: 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    transform: translateX(-100%);
  }

  .admin-main {
    margin-left: 0;
  }

  .admin-stats {
    grid-template-columns: 1fr;
  }

  .top-bar {
    display: none;
  }

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

  .float-call {
    bottom: 25px;
    left: 25px;
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .float-whatsapp {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

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

  .hero h1 {
    font-size: 1.8rem;
  }

  .counters-grid {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .counter-item .counter-number {
    font-size: 1.8rem;
  }

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

  .hero-badge {
    font-size: 0.75rem;
  }

  .page-hero h1 {
    font-size: 2rem;
  }
}