/* ============================================
   ThirdEye Digital — Premium Indian Design System
   ============================================ */

/* --- Design Tokens --- */
:root {
  --cream: #FFFDF8;
  --cream-dark: #F5F0E8;
  --saffron: #E8A020;
  --saffron-light: #F5C563;
  --saffron-dark: #C48510;
  --navy: #1E1B4B;
  --navy-light: #312E81;
  --rust: #C0522A;
  --text-primary: #1E1B4B;
  --text-secondary: #4B5563;
  --text-muted: #6B7280;
  --white: #FFFFFF;
  --border: #E2D9C8;
  --shadow-sm: 0 2px 8px rgba(16,24,40,0.06);
  --shadow-md: 0 4px 20px rgba(16,24,40,0.08);
  --shadow-lg: 0 8px 40px rgba(16,24,40,0.12);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --transition: 0.3s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

/* ============================================
   PRELOADER
   ============================================ */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}
#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}
.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  position: relative;
}

/* Spinning rings */
.pre-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(232,160,32,0.25);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pre-spin 4s linear infinite;
}
.pre-ring-outer {
  width: 200px;
  height: 200px;
  border-color: rgba(232,160,32,0.15);
  animation-direction: normal;
}
.pre-ring-mid {
  width: 160px;
  height: 160px;
  border-color: rgba(232,160,32,0.25);
  border-top-color: var(--saffron);
  animation-direction: reverse;
  animation-duration: 2.5s;
}

/* Eye SVG */
.pre-eye-wrap {
  width: 110px;
  height: 110px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  position: relative;
  z-index: 2;
}
.pre-logo-img {
  width: 180px;
  height: 180px;
  object-fit: contain;
  animation: pre-logo-appear 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.3s;
  opacity: 0;
  filter: drop-shadow(0 0 16px rgba(232,160,32,0.35));
}
@keyframes pre-logo-appear {
  from { opacity: 0; transform: scale(0.7); }
  to   { opacity: 1; transform: scale(1); }
}

/* Brand text */
.pre-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-bottom: 24px;
  animation: pre-fade-up 0.6s ease forwards 1.2s;
  opacity: 0;
  position: relative;
  z-index: 2;
}
.pre-brand-en {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 2px;
}
.pre-brand-mr {
  font-family: 'Noto Sans Marathi', sans-serif;
  font-size: 0.85rem;
  color: var(--saffron);
  font-weight: 600;
  letter-spacing: 1px;
}

/* Loading bar */
.pre-bar-wrap {
  width: 180px;
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
  animation: pre-fade-up 0.4s ease forwards 1.6s;
  opacity: 0;
}
.pre-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--saffron-dark), var(--saffron), var(--saffron-light));
  border-radius: 10px;
  animation: pre-load 2s ease 1.8s forwards;
}
.pre-tagline {
  font-family: 'Noto Sans Marathi', sans-serif;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  position: relative;
  z-index: 2;
  animation: pre-fade-up 0.4s ease forwards 1.9s;
  opacity: 0;
  letter-spacing: 0.5px;
}

/* Preloader keyframes */
@keyframes pre-spin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}
@keyframes pre-fade-up {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pre-load {
  0% { width: 0%; }
  30% { width: 40%; }
  70% { width: 75%; }
  100% { width: 100%; }
}


body {
  font-family: 'Noto Sans Marathi', 'Inter', sans-serif;
  background: var(--cream);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

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

/* --- Typography --- */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; color: var(--navy); line-height: 1.3; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 700; }
h3 { font-size: 1.3rem; font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

.marathi-text { font-family: 'Noto Sans Marathi', sans-serif; }
.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 8px;
  position: relative;
  padding-left: 40px;
}
.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 28px;
  height: 2px;
  background: var(--saffron);
}

.section-title { margin-bottom: 16px; }
.section-subtitle { color: var(--text-secondary); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }
.text-center { text-align: center; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-family: 'Noto Sans Marathi', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}
.btn-primary {
  background: var(--saffron);
  color: var(--white);
  border-color: var(--saffron);
  position: relative;
}
.btn-primary:hover { 
  background: var(--saffron-dark); 
  border-color: var(--saffron-dark); 
  transform: translateY(-2px); 
  box-shadow: var(--shadow-md);
  animation: pulse-glow 1.5s infinite;
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }
.btn-white { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn-white:hover { background: var(--cream); transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ============================================
   1. NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
  background: transparent;
}
.navbar.scrolled {
  background: rgba(255,253,248,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  padding: 10px 0;
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar-logo {
  display: flex;
  align-items: center;
}
.navbar-logo-img {
  height: 80px;
  width: auto;
  display: block;
  transition: var(--transition);
}
.navbar-logo-img:hover { opacity: 0.85; }
.navbar.scrolled .navbar-logo-img { height: 60px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-family: 'Noto Sans Marathi', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  position: relative;
  padding: 4px 0;
}
.nav-mr {
  display: none;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--saffron);
  transition: var(--transition);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: var(--transition);
}

/* ============================================
   2. HERO SECTION
   ============================================ */
.hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232,160,32,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-content { position: relative; z-index: 2; }
.hero-content h1 {
  margin-bottom: 20px;
  line-height: 1.4;
}
.hero-content h1 .highlight {
  color: var(--saffron);
  position: relative;
}
.hero-content .subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 12px;
  font-weight: 500;
}
.hero-content .description {
  color: var(--text-muted);
  margin-bottom: 32px;
  font-size: 1rem;
  line-height: 1.8;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-visual {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual img {
  max-width: 100%;
  border-radius: var(--radius-lg);
  filter: drop-shadow(0 20px 40px rgba(26,43,74,0.1));
  animation: float 6s ease-in-out infinite;
}

/* ============================================
   3. STATS STRIP
   ============================================ */
.stats {
  padding: 48px 0;
  background: var(--navy);
  position: relative;
}
.stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--saffron), var(--rust), var(--saffron));
}
.stats .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--saffron);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-family: 'Noto Sans Marathi', sans-serif;
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
}

/* ============================================
   4. ABOUT SECTION
   ============================================ */
.about {
  padding: 100px 0;
  background: var(--white);
}
.about .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-text .philosophy-quote {
  background: linear-gradient(135deg, rgba(232,160,32,0.08), rgba(232,160,32,0.03));
  border-left: 4px solid var(--saffron);
  padding: 20px 24px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 24px 0;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--navy);
  font-weight: 500;
}
.about-text p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.9;
}
.about-visual { position: relative; }
.about-visual img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  animation: float 7s ease-in-out infinite reverse;
}
.about-visual .experience-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--saffron);
  color: var(--white);
  padding: 20px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.experience-badge .big-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
}
.experience-badge .badge-text {
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 4px;
}

/* ============================================
   5. SERVICES SECTION
   ============================================ */
.services {
  padding: 100px 0;
  background: var(--cream);
}
.services-header { text-align: center; margin-bottom: 60px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  border-top: 3px solid var(--saffron);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-lg);
}
.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(232,160,32,0.03) 100%);
  pointer-events: none;
}
.service-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--cream), var(--cream-dark));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--saffron);
  font-size: 1.5rem;
  transition: all 0.3s ease;
}
.service-card:hover .service-icon {
  transform: scale(1.15) rotate(5deg);
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  color: var(--white);
}
.service-card h3 { margin-bottom: 14px; font-size: 1.15rem; }
.service-card ul { margin-top: 10px; }
.service-card ul li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.6;
  border-bottom: 1px solid rgba(226,217,200,0.5);
}
.service-card ul li:last-child { border-bottom: none; }
.service-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--saffron);
  font-weight: 700;
  font-size: 0.85rem;
}
.service-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  background: var(--cream-dark);
}
.bg-pattern {
  position: relative;
}
.bg-pattern::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url('../img/bg_pattern.png');
  background-repeat: repeat;
  background-size: 300px;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
}
.bg-pattern > .container {
  position: relative;
  z-index: 1;
}

/* ============================================
   6. WHY THIRDEYE SECTION
   ============================================ */
.why-us {
  padding: 100px 0;
  background: var(--white);
}
.why-us-header { text-align: center; margin-bottom: 60px; }
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.why-card {
  display: flex;
  gap: 20px;
  padding: 32px;
  background: var(--cream);
  border-radius: var(--radius-md);
  transition: var(--transition);
  border: 1px solid transparent;
}
.why-card:hover {
  border-color: var(--border);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.why-card-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--saffron), var(--saffron-light));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.3rem;
}
.why-card h4 { margin-bottom: 8px; }
.why-card p { color: var(--text-secondary); font-size: 0.93rem; line-height: 1.7; }

/* ============================================
   7. STATES COVERAGE
   ============================================ */
.states {
  padding: 60px 0;
  background: var(--cream-dark);
}
.states-header { text-align: center; margin-bottom: 40px; }
.states-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.state-chip {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 2px solid transparent;
}
.state-chip:hover {
  border-color: var(--saffron);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.state-chip .state-icon {
  font-size: 2rem;
  margin-bottom: 10px;
  display: block;
}
.state-chip h4 { font-size: 1rem; color: var(--navy); }
.state-chip p { font-size: 0.8rem; color: var(--text-muted); margin-top: 4px; }

/* ============================================
   8. QUOTE / PHILOSOPHY SECTION
   ============================================ */
.quote-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.quote-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(232,160,32,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.quote-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(232,160,32,0.1) 0%, transparent 70%);
  border-radius: 50%;
}
.quote-section .container { position: relative; z-index: 2; }
.quote-icon {
  font-size: 3rem;
  color: var(--saffron);
  margin-bottom: 20px;
}
.quote-text {
  font-family: 'Noto Sans Marathi', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  color: var(--white);
  font-weight: 600;
  max-width: 800px;
  margin: 0 auto 20px;
  line-height: 1.6;
}
.quote-author {
  color: var(--saffron);
  font-weight: 600;
  font-size: 1.1rem;
}

/* ============================================
   9. CONTACT & FOOTER
   ============================================ */
.footer {
  padding: 80px 0 0;
  background: var(--navy);
  color: rgba(255,255,255,0.8);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 20px;
}
.footer-about p { font-size: 0.93rem; line-height: 1.8; margin-bottom: 16px; }
.footer-links a {
  display: block;
  padding: 6px 0;
  font-size: 0.93rem;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--saffron); padding-left: 6px; }
.footer-contact .contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
  font-size: 0.9rem;
}
.footer-contact .contact-item i {
  color: var(--saffron);
  margin-top: 4px;
  font-size: 0.95rem;
  width: 16px;
  flex-shrink: 0;
}
.social-links { display: flex; gap: 10px; margin-top: 20px; }
.social-links a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: var(--transition);
}
.social-links a:hover {
  background: var(--saffron);
  border-color: var(--saffron);
  color: var(--white);
}
.footer-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-top: 20px;
}
.footer-bottom a { color: var(--saffron); }
.footer-bottom a:hover { text-decoration: underline; }

/* --- Back to Top --- */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: var(--saffron);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
  z-index: 999;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--saffron-dark); transform: translateY(-3px); }

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.zoom-in {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-up.visible, .fade-left.visible, .fade-right.visible, .zoom-in.visible {
  opacity: 1;
  transform: translate(0) scale(1);
}

.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }
.delay-500 { transition-delay: 500ms; }
.delay-600 { transition-delay: 600ms; }

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

@keyframes pulse-glow {
  0% { box-shadow: 0 0 0 0 rgba(232, 160, 32, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(232, 160, 32, 0); }
  100% { box-shadow: 0 0 0 0 rgba(232, 160, 32, 0); }
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes spin-slow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes ring-pulse {
  0% { transform: scale(0.9); opacity: 0.7; }
  100% { transform: scale(1.3); opacity: 0; }
}

/* ============================================
   HERO CREATIVE ELEMENTS
   ============================================ */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero-orb-1 {
  top: 10%;
  right: 5%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(232,160,32,0.07) 0%, transparent 70%);
}
.hero-orb-2 {
  bottom: 10%;
  left: -5%;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(26,43,74,0.05) 0%, transparent 70%);
}
.hero-badge-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 6px 14px;
  border-radius: 50px;
  background: rgba(232,160,32,0.12);
  color: var(--saffron-dark);
  border: 1px solid rgba(232,160,32,0.25);
}
.hero-pill-2 {
  background: rgba(26,43,74,0.07);
  color: var(--navy);
  border-color: rgba(26,43,74,0.15);
}
.hero-marathi-sub {
  font-size: 1.15rem;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 14px;
  line-height: 1.6;
}
.platform-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.ptag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text-secondary);
  transition: var(--transition);
}
.ptag:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.ptag-fb { color: #1877f2; border-color: #1877f220; background: #1877f208; }
.ptag-ig { color: #e1306c; border-color: #e1306c20; background: #e1306c08; }
.ptag-tw { color: #1da1f2; border-color: #1da1f220; background: #1da1f208; }
.ptag-wa { color: #25d366; border-color: #25d36620; background: #25d36608; }
.ptag-yt { color: #ff0000; border-color: #ff000020; background: #ff000008; }

.hero-img-wrap { position: relative; display: inline-block; width: 100%; }
.hero-float-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  min-width: 170px;
}
.hero-float-card i { font-size: 1.4rem; color: var(--saffron); }
.hero-float-card strong { display: block; font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--navy); line-height: 1; }
.hero-float-card span { font-size: 0.75rem; color: var(--text-muted); }
.hero-float-card-1 { bottom: 25%; left: -20px; }
.hero-float-card-2 { top: 10%; right: -10px; }

/* ============================================
   TAGLINE STRIP
   ============================================ */
.tagline-strip {
  background: var(--navy);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
  border-top: 2px solid var(--saffron);
}
.tagline-track {
  display: inline-block;
  animation: marquee 30s linear infinite;
  font-family: 'Noto Sans Marathi', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}
.tagline-track span { margin: 0 8px; }
.tagline-track .sep { color: var(--saffron); margin: 0 12px; }

/* ============================================
   PROCESS SECTION
   ============================================ */
.process-section {
  padding: 100px 0;
  background: var(--white);
}
.process-header { text-align: center; margin-bottom: 64px; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}
.process-step {
  text-align: center;
  padding: 0 20px;
  position: relative;
}
.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(232,160,32,0.12);
  line-height: 1;
  margin-bottom: -10px;
}
.step-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.4rem;
  margin: 0 auto 16px;
  position: relative;
  z-index: 2;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(232,160,32,0.3);
}
.process-step:hover .step-icon {
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(232,160,32,0.4);
}
.process-step h4 {
  font-size: 0.95rem;
  margin-bottom: 10px;
  line-height: 1.5;
  color: var(--navy);
}
.process-step h4 span { font-size: 0.88rem; color: var(--saffron); font-family: 'Noto Sans Marathi', sans-serif; font-weight: 600; }
.process-step p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.step-connector {
  position: absolute;
  top: 82px;
  right: -50%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--saffron), rgba(232,160,32,0.2));
  z-index: 1;
}
.process-step:last-child .step-connector { display: none; }

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  padding: 60px 0;
  background: var(--cream-dark);
}
.cta-card {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, #2d4a7a 100%);
  border-radius: var(--radius-lg);
  padding: 64px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-content { position: relative; z-index: 2; }
.cta-visual {
  position: relative;
  width: 160px;
  height: 160px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-eye-icon {
  width: 64px;
  height: 64px;
  object-fit: contain;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 12px rgba(232,160,32,0.4));
}
.cta-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(232,160,32,0.3);
  animation: ring-pulse 2.5s ease-out infinite;
}
.cta-ring-1 { width: 100px; height: 100px; animation-delay: 0s; }
.cta-ring-2 { width: 140px; height: 140px; animation-delay: 0.8s; }

/* --- Quote Divider --- */
.quote-divider {
  width: 60px;
  height: 2px;
  background: rgba(255,255,255,0.3);
  margin: 28px auto;
}


/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero-buttons { justify-content: center; }
  .platform-tags { justify-content: center; }
  .hero-badge-row { justify-content: center; }
  .hero-float-card-1 { left: 0; }
  .hero-float-card-2 { right: 0; }
  .hero-visual img { max-width: 400px; margin: 0 auto; }
  .about .container { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .states-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 40px; }
  .step-connector { display: none; }
  .cta-card { grid-template-columns: 1fr; padding: 40px; }
  .cta-visual { display: none; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    padding: 24px;
    box-shadow: var(--shadow-md);
    gap: 16px;
  }
  .mobile-toggle { display: flex; }
  .hero { padding: 120px 0 60px; min-height: auto; }
  .stats .container { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .why-us-grid { grid-template-columns: 1fr; }
  .states-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .stat-number { font-size: 2rem; }
  .process-steps { grid-template-columns: 1fr; gap: 32px; }
  .cta-card { padding: 28px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .states-grid { grid-template-columns: 1fr 1fr; }
  .hero-buttons { flex-direction: column; align-items: center; }
}

/* ============================================
   OUR WORK SECTION STYLES
   ============================================ */
.work-section {
  padding: 100px 0;
  background: var(--cream);
  position: relative;
}
.work-header {
  text-align: center;
  margin-bottom: 60px;
}
.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}
.work-item {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 3/4;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
  border: 1px solid rgba(226, 217, 200, 0.4);
}
.work-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}
.work-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30, 27, 75, 0.95) 15%, rgba(30, 27, 75, 0.4) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px 24px;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
}
.work-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -30%);
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 20px rgba(232, 160, 32, 0.4);
}
.work-category {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--saffron-light);
  transform: translateY(15px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  margin-bottom: 4px;
}
.work-title {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 600;
  font-family: 'Mukta', sans-serif;
  transform: translateY(15px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.05s;
}

/* Work Item Hover */
.work-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(30, 27, 75, 0.15), 0 0 20px rgba(232, 160, 32, 0.15);
  border-color: var(--saffron-light);
}
.work-item:hover img {
  transform: scale(1.06);
}
.work-item:hover .work-overlay {
  opacity: 1;
}
.work-item:hover .work-icon {
  opacity: 1;
  transform: translate(-50%, -50%);
}
.work-item:hover .work-category,
.work-item:hover .work-title {
  transform: translateY(0);
}

/* ============================================
   TESTIMONIALS SECTION STYLES
   ============================================ */
.testimonials-section {
  padding: 100px 0;
  background: var(--cream-dark);
  position: relative;
  overflow: hidden;
}
.testimonials-header {
  text-align: center;
  margin-bottom: 60px;
}
.testimonials-slider-container {
  position: relative;
  width: 100%;
}
.testimonial-slider {
  overflow: visible; /* To allow slide hover shadows to pop */
  width: 100%;
}
.slider-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
.testimonial-slide {
  padding: 12px;
  box-sizing: border-box;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--saffron-light);
}
.testimonial-img-wrapper {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  background: var(--white);
}
.testimonial-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.5s ease;
}
.testimonial-zoom {
  position: absolute;
  inset: 0;
  background: rgba(30, 27, 75, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.testimonial-card:hover .testimonial-img-wrapper img {
  transform: scale(1.03);
}
.testimonial-card:hover .testimonial-zoom {
  opacity: 1;
}
.testimonial-content {
  padding: 24px;
  background: var(--white);
  border-top: 1px solid rgba(226, 217, 200, 0.5);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.testimonial-content h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  font-family: 'Mukta', sans-serif;
}
.testimonial-content p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Slider Navigation */
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
}
.slider-nav {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--navy);
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.3s ease;
  z-index: 10;
}
.slider-nav:hover {
  background: var(--saffron);
  border-color: var(--saffron);
  color: var(--white);
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(232, 160, 32, 0.3);
}
.slider-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(30, 27, 75, 0.2);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}
.slider-dot:hover {
  background: rgba(30, 27, 75, 0.4);
}
.slider-dot.active {
  background: var(--saffron);
  width: 24px;
  border-radius: 10px;
}

/* ============================================
   LIGHTBOX MODAL STYLES
   ============================================ */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(15, 12, 40, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}
.lightbox-modal.open {
  opacity: 1;
  visibility: visible;
}
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.7);
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10010;
  line-height: 1;
  padding: 8px;
}
.lightbox-close:hover {
  color: var(--saffron);
  transform: scale(1.1) rotate(90deg);
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  transition: all 0.3s ease;
  z-index: 10005;
}
.lightbox-nav:hover {
  background: var(--saffron);
  border-color: var(--saffron);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 4px 16px rgba(232, 160, 32, 0.4);
}
.lightbox-prev {
  left: 32px;
}
.lightbox-next {
  right: 32px;
}
.lightbox-content-wrap {
  position: relative;
  max-width: 90vw;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.lightbox-image {
  max-width: 100%;
  max-height: 82vh;
  border-radius: var(--radius-sm);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  object-fit: contain;
  transition: opacity 0.15s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.lightbox-caption {
  margin-top: 20px;
  text-align: center;
  color: var(--white);
  max-width: 600px;
}
.lightbox-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--saffron);
  margin-bottom: 6px;
  font-family: 'Mukta', sans-serif;
}
.lightbox-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

/* ============================================
   RESPONSIVE OVERRIDES FOR NEW SECTIONS
   ============================================ */
@media (max-width: 1024px) {
  .work-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .work-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonial-img-wrapper {
    height: 260px;
  }
  .lightbox-nav {
    width: 44px;
    height: 44px;
    font-size: 0.95rem;
  }
  .lightbox-prev {
    left: 12px;
  }
  .lightbox-next {
    right: 12px;
  }
  .lightbox-close {
    top: 16px;
    right: 16px;
    font-size: 2.5rem;
  }
  .lightbox-content-wrap {
    max-width: 95vw;
  }
  .lightbox-image {
    max-height: 78vh;
  }
}
@media (max-width: 480px) {
  .work-grid {
    grid-template-columns: 1fr;
  }
  .testimonial-img-wrapper {
    height: 240px;
  }
  .lightbox-nav {
    display: none !important;
  }
}

/* ============================================
   WHATSAPP CHATBOT WIDGET STYLES
   ============================================ */
.wa-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  font-family: 'Inter', 'Noto Sans Marathi', sans-serif;
}
.wa-toggle-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  border: none;
  color: var(--white);
  font-size: 1.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}
.wa-toggle-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
}
.wa-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background: #EF4444;
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--white);
  animation: wa-bounce 2s infinite;
}
.wa-popup {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 360px;
  background: #E5DDD5;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.95);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 10000;
}
.wa-popup.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.wa-popup-header {
  background: #075E54;
  color: var(--white);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}
.wa-avatar-wrap {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.wa-avatar-wrap img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}
.wa-online-dot {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 10px;
  height: 10px;
  background: #4ADE80;
  border-radius: 50%;
  border: 2px solid #075E54;
  animation: wa-pulse 1.8s infinite;
}
.wa-header-info h5 {
  font-family: 'Mukta', sans-serif;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0;
}
.wa-header-info span {
  font-size: 0.75rem;
  opacity: 0.85;
  display: block;
}
.wa-close-btn {
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  font-size: 1.8rem;
  color: rgba(255, 255, 255, 0.7);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease;
  line-height: 1;
  padding: 4px;
}
.wa-close-btn:hover {
  color: var(--white);
}
.wa-chat-body {
  padding: 20px;
  flex-grow: 1;
  max-height: 380px;
  overflow-y: auto;
  position: relative;
  background-image: radial-gradient(rgba(0, 0, 0, 0.08) 15%, transparent 15%);
  background-size: 16px 16px;
  display: flex;
  flex-direction: column;
}
.wa-msg {
  max-width: 85%;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 0.88rem;
  line-height: 1.45;
  margin-bottom: 16px;
  position: relative;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  animation: wa-bubble-up 0.4s ease forwards;
}
.bot-msg {
  background: var(--white);
  color: var(--text-primary);
  border-top-left-radius: 2px;
  align-self: flex-start;
}
.bot-msg::before {
  content: '';
  position: absolute;
  top: 0;
  left: -8px;
  width: 0;
  height: 0;
  border: 8px solid transparent;
  border-top-color: var(--white);
  border-right-color: var(--white);
}
.user-msg {
  background: #DCF8C6;
  color: var(--text-primary);
  align-self: flex-end;
  margin-left: auto;
  border-top-right-radius: 2px;
}
.user-msg::before {
  content: '';
  position: absolute;
  top: 0;
  right: -8px;
  width: 0;
  height: 0;
  border: 8px solid transparent;
  border-top-color: #DCF8C6;
  border-left-color: #DCF8C6;
}
.wa-chat-form {
  display: flex;
  flex-direction: column;
  margin-top: 10px;
  gap: 12px;
}
.wa-input-step {
  display: none;
  align-items: center;
  gap: 8px;
  width: 100%;
  animation: wa-fade-in 0.3s ease forwards;
}
.wa-input-step.active {
  display: flex;
}
.wa-input-step input, .wa-input-step select {
  flex-grow: 1;
  padding: 12px 16px;
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 0.88rem;
  background: var(--white);
  outline: none;
  font-family: inherit;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: border-color 0.3s ease;
  height: 42px;
}
.wa-input-step input:focus, .wa-input-step select:focus {
  border-color: #25D366;
}
.wa-next-step {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #128C7E;
  color: var(--white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.wa-next-step:hover {
  background: #075E54;
  transform: scale(1.05);
}
.wa-submit-btn {
  width: 100%;
  padding: 12px;
  border-radius: 24px;
  background: #25D366;
  color: var(--white);
  border: none;
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  height: 42px;
}
.wa-submit-btn:hover {
  background: #20BA5A;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}
.wa-popup-footer {
  background: #F0F0F0;
  padding: 12px;
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}
.wa-direct-link {
  font-size: 0.78rem;
  color: #075E54;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}
.wa-direct-link:hover {
  color: #128C7E;
  text-decoration: underline;
}

/* Back to Top reposition */
.back-to-top {
  bottom: 105px !important;
}

/* Animations */
@keyframes wa-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
@keyframes wa-pulse {
  0% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.5); }
  70% { box-shadow: 0 0 0 6px rgba(74, 222, 128, 0); }
  100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}
@keyframes wa-bubble-up {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes wa-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ============================================
   CONTACT PAGE DETAILS AND FORM STYLES
   ============================================ */
.contact-section {
  padding: 60px 0 100px;
  background: var(--cream);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: start;
}
.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.contact-intro h3 {
  font-family: 'Mukta', sans-serif;
  font-size: 1.8rem;
  color: var(--navy);
  margin-bottom: 14px;
}
.contact-intro p {
  color: var(--text-secondary);
  line-height: 1.7;
}
.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-detail-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.contact-detail-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(232, 160, 32, 0.1);
  color: var(--saffron);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
  border: 1px solid rgba(232, 160, 32, 0.2);
}
.contact-detail-content h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.contact-detail-content p, .contact-detail-content a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
  display: block;
}
.contact-detail-content a:hover {
  color: var(--saffron);
}
.contact-map-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  height: 240px;
}
.contact-map-card iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.contact-form-col {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(226, 217, 200, 0.5);
  position: relative;
}
.contact-form-col h3 {
  font-family: 'Mukta', sans-serif;
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.contact-form-col p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 28px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  font-family: 'Inter', 'Noto Sans Marathi', sans-serif;
}
.form-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.form-input-wrapper i {
  position: absolute;
  left: 16px;
  color: var(--saffron);
  font-size: 0.95rem;
  pointer-events: none;
}
.form-control {
  width: 100%;
  padding: 12px 16px 12px 42px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  font-family: 'Noto Sans Marathi', 'Inter', sans-serif;
  font-size: 0.92rem;
  background: var(--cream);
  outline: none;
  transition: all 0.3s ease;
  color: var(--text-primary);
}
.form-control:focus {
  border-color: var(--saffron);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(232, 160, 32, 0.1);
}
select.form-control {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23C48510' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
}
textarea.form-control {
  padding-left: 16px;
  resize: vertical;
  min-height: 120px;
}
.form-submit-btn {
  width: 100%;
  padding: 14px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  color: var(--white);
  border: none;
  font-family: 'Noto Sans Marathi', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 8px 20px rgba(232, 160, 32, 0.3);
}
.form-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(232, 160, 32, 0.4);
}

@media (max-width: 991px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
@media (max-width: 576px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .contact-form-col {
    padding: 30px 20px;
  }
}