/* ============================================================
   SHREEJI LIBRARY STUDY CAFE — MAIN STYLESHEET
   Modern | Premium | High-Converting Landing Page
   ============================================================ */

/* ---- CSS VARIABLES ---- */
:root {
  --blue: #2563eb;
  --blue-light: #3b82f6;
  --blue-dark: #1d4ed8;
  --green: #16a34a;
  --green-wa: #25d366;
  --green-wa-dark: #1da851;
  --gold: #d97706;
  --gold-light: #f59e0b;
  --white: #ffffff;
  --bg: #f8fafc;
  --bg-dark: #f1f5f9;
  --text: #1e293b;
  --text-light: #64748b;
  --text-muted: #94a3b8;
  --border: #e2e8f0;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow: 0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.14);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.18);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-main: 'Inter', 'Poppins', sans-serif;
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-main);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- CONTAINER ---- */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---- SECTION BASE ---- */
.section {
  padding: 80px 0;
}

/* ---- SECTION HEADER ---- */
.section-header {
  text-align: center;
  margin-bottom: 52px;
}
.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.25;
  margin-bottom: 12px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 520px;
  margin: 0 auto;
}
.highlight {
  color: var(--blue);
  position: relative;
}
.gold-text { color: var(--gold); }
.hindi-text {
  color: var(--blue-light);
  font-style: italic;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-align: center;
  white-space: nowrap;
}
.btn-sm { padding: 8px 16px; font-size: 0.85rem; }
.btn-lg { padding: 15px 32px; font-size: 1.05rem; }
.btn-xl { padding: 18px 40px; font-size: 1.1rem; }
.btn-full { width: 100%; justify-content: center; }

.btn-wa {
  background: var(--green-wa);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(37,211,102,0.35);
}
.btn-wa:hover {
  background: var(--green-wa-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.45);
}

.btn-call {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(37,99,235,0.3);
}
.btn-call:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: var(--white);
  box-shadow: 0 4px 14px rgba(37,99,235,0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(37,99,235,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

.btn-gold {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(217,119,6,0.4);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(217,119,6,0.5);
}

/* Pulse animation for CTAs */
.pulse-btn {
  animation: pulse-glow 2.5s infinite;
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 4px 14px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 28px rgba(37,211,102,0.7), 0 0 0 8px rgba(37,211,102,0.12); }
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 14px 0;
  transition: var(--transition);
  background: transparent;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
  padding: 10px 0;
}
.nav-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-icon { font-size: 1.8rem; }
.brand-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  transition: var(--transition);
  line-height: 1.2;
}
.navbar.scrolled .brand-name { color: var(--text); }
.brand-sub {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.75);
  transition: var(--transition);
  line-height: 1;
}
.navbar.scrolled .brand-sub { color: var(--text-light); }
.nav-actions { display: flex; gap: 10px; align-items: center; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 40%, #1d4ed8 80%, #0369a1 100%);
  overflow: hidden;
  padding: 100px 20px 60px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center top, rgba(37,99,235,0.3) 0%, transparent 70%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
}
.offer-badge {
  display: inline-block;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 20px;
  box-shadow: 0 4px 14px rgba(245,158,11,0.4);
}
.hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 18px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
}
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}
.trust-strip span {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}
.trust-strip span i { color: var(--gold-light); }
.hero-location {
  color: rgba(255,255,255,0.75);
  font-size: 0.92rem;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.hero-location i { color: var(--gold-light); }
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.bounce {
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ============================================================
   ENVIRONMENT SECTION
   ============================================================ */
.environment-section { background: var(--bg); }
.env-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.env-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
  border: 1px solid var(--border);
}
.env-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-light);
}
.env-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #dbeafe, #eff6ff);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 1.3rem;
  color: var(--blue);
}
.env-img-placeholder {
  width: 100%;
  height: 140px;
  border-radius: var(--radius);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.env-img-content { font-size: 3rem; opacity: 0.25; }
.env-ac { background: linear-gradient(135deg, #dbeafe, #bfdbfe); color: #1d4ed8; }
.env-silent { background: linear-gradient(135deg, #dcfce7, #bbf7d0); color: #15803d; }
.env-seat { background: linear-gradient(135deg, #fef3c7, #fde68a); color: #b45309; }
.env-security { background: linear-gradient(135deg, #fee2e2, #fecaca); color: #b91c1c; }
.env-clean { background: linear-gradient(135deg, #f3e8ff, #e9d5ff); color: #7c3aed; }
.env-wifi { background: linear-gradient(135deg, #cffafe, #a5f3fc); color: #0e7490; }

.env-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}
.env-card p {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-section { background: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.why-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  opacity: 0;
  transition: var(--transition);
}
.why-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--blue-light); }
.why-card:hover::before { opacity: 1; }
.why-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 14px;
}
.why-card h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}
.why-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* ============================================================
   PRICING SECTION
   ============================================================ */
.pricing-section { background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
  align-items: start;
}
.price-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 30px 24px;
  box-shadow: var(--shadow);
  border: 2px solid var(--border);
  transition: var(--transition);
  position: relative;
  text-align: center;
}
.price-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}
.price-card.featured {
  border-color: var(--blue);
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: var(--white);
  transform: scale(1.03);
}
.price-card.featured:hover { transform: scale(1.03) translateY(-8px); }
.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: var(--white);
  padding: 5px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(245,158,11,0.4);
}
.price-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}
.price-card.featured .price-icon { color: rgba(255,255,255,0.9); }
.price-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 14px;
}
.price-card.featured h3 { color: rgba(255,255,255,0.95); }
.price-tag {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
  line-height: 1;
}
.price-tag span { font-size: 1rem; font-weight: 400; color: var(--text-light); }
.price-card.featured .price-tag { color: var(--white); }
.price-card.featured .price-tag span { color: rgba(255,255,255,0.65); }
.price-features {
  text-align: left;
  margin-bottom: 24px;
}
.price-features li {
  padding: 7px 0;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.price-features li:last-child { border-bottom: none; }
.price-card.featured .price-features li { color: rgba(255,255,255,0.9); border-bottom-color: rgba(255,255,255,0.15); }
.price-features li i.fa-check { color: var(--green); font-size: 0.8rem; }
.price-features li.not-included { color: var(--text-muted); }
.price-features li.not-included i { color: var(--text-muted); }
.price-card.featured .price-features li i.fa-check { color: #86efac; }
.locker-card { grid-column: auto; }

/* ============================================================
   OFFER SECTION
   ============================================================ */
.offer-section {
  background: linear-gradient(135deg, #0f172a, #1e3a5f);
  position: relative;
  overflow: hidden;
}
.offer-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(37,99,235,0.2) 0%, transparent 60%);
}
.offer-box {
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
}
.offer-badge-big {
  display: inline-block;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: var(--white);
  padding: 8px 24px;
  border-radius: 50px;
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 1rem;
}
.offer-box h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 32px;
}
.offer-items {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.offer-item {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  flex: 1;
  min-width: 200px;
  max-width: 280px;
  backdrop-filter: blur(8px);
}
.offer-item i {
  font-size: 2rem;
  color: var(--gold-light);
  margin-bottom: 12px;
  display: block;
}
.offer-item h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.offer-item p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
}
.offer-divider {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-light);
  background: rgba(245,158,11,0.15);
  border: 1px solid rgba(245,158,11,0.3);
  border-radius: 50%;
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.urgency-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(239,68,68,0.15);
  border: 1px solid rgba(239,68,68,0.3);
  color: #fca5a5;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 28px;
}
.urgency-tag i { color: #f87171; }

/* ============================================================
   FACILITIES SECTION
   ============================================================ */
.facilities-section { background: var(--bg); }
.facilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}
.facility-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px 16px;
  text-align: center;
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.facility-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-light);
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
}
.facility-card i {
  font-size: 1.8rem;
  color: var(--blue);
  transition: var(--transition);
}
.facility-card:hover i { color: var(--blue-dark); transform: scale(1.15); }
.facility-card span {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.3;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}
.testimonial-card {
  background: var(--bg);
  border-radius: var(--radius-xl);
  padding: 28px;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 4rem;
  color: var(--blue-light);
  opacity: 0.12;
  font-family: Georgia, serif;
  line-height: 1;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-light);
}
.testimonial-card.featured-testimonial {
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  border-color: var(--blue-light);
}
.stars { font-size: 1.1rem; margin-bottom: 14px; }
.review-text {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}
.reviewer-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.reviewer-name { font-weight: 600; font-size: 0.95rem; }
.reviewer-meta { font-size: 0.8rem; color: var(--text-light); }
.justdial-badge {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  border: 1px solid #fcd34d;
  border-radius: 50px;
  padding: 12px 28px;
  font-size: 0.95rem;
  color: var(--text);
  max-width: 360px;
  margin: 0 auto;
}

/* ============================================================
   INQUIRY FORM
   ============================================================ */
.form-section {
  background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
}
.form-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 52px;
  align-items: start;
}
.form-left .section-title {
  text-align: left;
  margin-bottom: 14px;
}
.form-left > p {
  color: var(--text-light);
  margin-bottom: 28px;
  font-size: 0.98rem;
}
.form-contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
.contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition);
}
.contact-link:hover { color: var(--blue); }
.contact-link i {
  width: 36px; height: 36px;
  background: var(--blue);
  color: var(--white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.form-timings {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px;
  border: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text-light);
}
.form-timings i {
  font-size: 1.3rem;
  color: var(--blue);
  flex-shrink: 0;
}
.form-timings strong { display: block; color: var(--text); margin-bottom: 2px; }

.inquiry-form {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: var(--font-main);
  color: var(--text);
  background: var(--bg);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}
.form-group textarea { resize: vertical; min-height: 90px; }
.form-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 12px;
}

/* ============================================================
   GOOGLE REVIEWS
   ============================================================ */
.reviews-section { background: var(--bg); }
.google-rating-box {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 28px 36px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 36px;
}
.google-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
}
.rating-display { text-align: center; }
.rating-number {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  font-family: 'Poppins', sans-serif;
}
.rating-stars { font-size: 1.3rem; margin: 4px 0; }
.rating-count { font-size: 0.85rem; color: var(--text-light); }
.map-container { }
.map-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.map-title i { color: var(--blue); }

/* ============================================================
   LOCATION SECTION
   ============================================================ */
.location-section {
  background: linear-gradient(135deg, #1e3a5f, #0f172a);
  text-align: center;
}
.location-wrapper { max-width: 700px; margin: 0 auto; }
.location-icon-big {
  font-size: 3rem;
  color: var(--gold-light);
  margin-bottom: 16px;
}
.location-section .section-title { color: var(--white); }
.location-address {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  margin: 20px 0 32px;
  line-height: 1.7;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.location-address i { color: var(--gold-light); font-size: 1.2rem; margin-bottom: 4px; }
.location-address strong { color: var(--white); font-size: 1.1rem; }
.location-nearby {
  margin-bottom: 36px;
}
.location-nearby h4 {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 14px;
}
.nearby-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.nearby-tags span {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.85);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
}

/* ============================================================
   FINAL CTA SECTION
   ============================================================ */
.final-cta-section {
  background: linear-gradient(135deg, #1e3a5f 0%, #1d4ed8 100%);
  position: relative;
  overflow: hidden;
}
.final-cta-section::before {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -10%;
  width: 50%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(37,211,102,0.12) 0%, transparent 60%);
}
.final-cta-box {
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
}
.urgency-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(239,68,68,0.2);
  border: 1px solid rgba(239,68,68,0.4);
  color: #fca5a5;
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.final-cta-box h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}
.final-cta-box > p {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 32px;
}
.cta-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold-light);
  font-family: 'Poppins', sans-serif;
}
.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.final-cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.cta-mail {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.cta-mail a { color: rgba(255,255,255,0.85); }
.cta-mail a:hover { color: var(--gold-light); }

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section { background: var(--bg); }
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover { border-color: var(--blue-light); box-shadow: var(--shadow); }
.faq-item.active { border-color: var(--blue); box-shadow: var(--shadow); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.97rem;
  color: var(--text);
  gap: 12px;
  user-select: none;
}
.faq-q span {
  display: flex;
  align-items: center;
  gap: 10px;
}
.faq-icon-q { color: var(--blue); font-size: 0.9rem; flex-shrink: 0; }
.faq-arrow {
  color: var(--text-light);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  font-size: 0.85rem;
}
.faq-item.active .faq-arrow { transform: rotate(180deg); color: var(--blue); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s ease;
  padding: 0 22px;
}
.faq-item.active .faq-a { max-height: 200px; padding: 0 22px 18px; }
.faq-a p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}
.faq-a p a { color: var(--blue); font-weight: 500; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #0f172a;
  color: rgba(255,255,255,0.75);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.footer-tagline {
  color: var(--blue-light);
  font-size: 0.88rem;
  font-weight: 500;
  margin-bottom: 12px;
}
.footer-desc {
  font-size: 0.88rem;
  line-height: 1.7;
}
.footer h4 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 16px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--blue-light); padding-left: 4px; }
.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
}
.footer-contact-item i {
  color: var(--blue-light);
  margin-top: 3px;
  flex-shrink: 0;
  width: 16px;
}
.footer-contact-item a:hover { color: var(--blue-light); }
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}
.social-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}
.social-btn.wa { background: var(--green-wa); color: var(--white); }
.social-btn.call { background: var(--blue); color: var(--white); }
.social-btn.mail { background: #ea4335; color: var(--white); }
.social-btn:hover { transform: translateY(-3px); opacity: 0.9; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

/* ============================================================
   STICKY BUTTONS
   ============================================================ */
.sticky-wa {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  background: var(--green-wa);
  color: var(--white);
  border-radius: 50px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
  transition: var(--transition);
  animation: pulse-glow 2.5s infinite;
}
.sticky-wa:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 10px 30px rgba(37,211,102,0.6);
}
.sticky-wa i { font-size: 1.3rem; }
.sticky-wa-text { font-size: 0.88rem; }

.sticky-call {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 999;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  width: 56px; height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 6px 20px rgba(37,99,235,0.45);
  transition: var(--transition);
}
.sticky-call:hover { transform: scale(1.1); }

/* ============================================================
   TOAST NOTIFICATION
   ============================================================ */
.toast {
  position: fixed;
  top: 90px;
  left: 50%;
  transform: translateX(-50%) translateY(-20px);
  background: #15803d;
  color: var(--white);
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 0.92rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 2000;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-lg);
  pointer-events: none;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.toast i { font-size: 1.1rem; }

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 900px) {
  .section { padding: 60px 0; }
  .section-title { font-size: 1.8rem; }
  .form-wrapper { grid-template-columns: 1fr; gap: 36px; }
  .form-left .section-title { text-align: center; }
  .form-left > p { text-align: center; }
  .form-contact-info { align-items: center; }
  .form-timings { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .google-rating-box { flex-direction: column; text-align: center; }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 600px) {
  .section { padding: 48px 0; }
  .section-title { font-size: 1.5rem; }
  .hero { padding: 90px 16px 48px; }
  .hero-title { font-size: 1.6rem; }
  .hero-sub { font-size: 1rem; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .env-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .price-card.featured:hover { transform: translateY(-8px); }
  .offer-items { flex-direction: column; align-items: stretch; }
  .offer-divider { display: none; }
  .offer-item { max-width: 100%; }
  .offer-box h2 { font-size: 1.6rem; }
  .final-cta-box h2 { font-size: 1.6rem; }
  .final-cta-btns { flex-direction: column; }
  .final-cta-btns .btn { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .nav-actions .btn-sm span { display: none; }
  .sticky-wa-text { display: none; }
  .sticky-wa { border-radius: 50%; width: 60px; height: 60px; padding: 0; justify-content: center; }
  .cta-stats { gap: 24px; }
  .inquiry-form { padding: 24px 18px; }
  .env-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .facilities-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 400px) {
  .facilities-grid { grid-template-columns: 1fr 1fr; }
  .trust-strip span { font-size: 0.78rem; padding: 5px 11px; }
}

/* ============================================================
   SCROLL ANIMATION HELPER
   ============================================================ */
[data-aos] { will-change: transform, opacity; }
