/* 
   Style Sheet for Bangalore Vehicle Attachment & Onboarding Office Website
   Theme: Custom, professional design matched to the user's uploaded layout.
*/

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* --- Design Tokens / Variables --- */
:root {
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  /* Colors */
  --primary: #0f172a;       /* Midnight slate */
  --primary-light: #1e293b;
  --accent: #0070f3;        /* Blue */
  --accent-hover: #0051a8;
  --whatsapp: #22c55e;      /* Emerald Green */
  --whatsapp-hover: #16a34a;
  --whatsapp-light: #f0fdf4;
  --border: #e2e8f0;        /* Gray */
  --bg: #f8fafc;            /* Light gray background */
  --bg-card: #ffffff;
  --text-dark: #0f172a;
  --text-main: #334155;
  --text-light: #64748b;
  --yellow-accent: #f59e0b; /* Yellow for Rapido / Call */
  --yellow-hover: #d97706;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 20px -3px rgba(0, 0, 0, 0.04), 0 4px 12px -4px rgba(0, 0, 0, 0.04);

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--text-main);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  font-weight: 700;
}

a {
  text-decoration: none;
  color: inherit;
}

/* --- Layout Utility --- */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section-bg-white {
  background-color: #ffffff;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition-normal);
}

.btn-primary {
  background-color: var(--primary);
  color: #ffffff;
}

.btn-primary:hover {
  background-color: #000000;
  transform: translateY(-1px);
}

.btn-whatsapp {
  background-color: var(--whatsapp);
  color: #ffffff;
}

.btn-whatsapp:hover {
  background-color: var(--whatsapp-hover);
  transform: translateY(-1px);
}

.btn-outline {
  background-color: #ffffff;
  border: 1px solid var(--border);
  color: var(--text-dark);
  box-shadow: var(--shadow-sm);
}

.btn-outline:hover {
  background-color: #f1f5f9;
  border-color: #cbd5e1;
  transform: translateY(-1px);
}

.btn-icon {
  width: 18px;
  height: 18px;
}

/* --- Top Bar (Black) --- */
.top-bar {
  background-color: #0c0f16;
  color: #ffffff;
  font-size: 0.8rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid #1e293b;
}

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

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.top-bar-left svg, .top-bar-right svg {
  width: 14px;
  height: 14px;
  color: var(--whatsapp);
}

.top-bar-left {
  font-weight: 500;
}

.top-link {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  transition: var(--transition-fast);
}

.top-link:hover {
  color: var(--whatsapp);
}

/* --- Noticeable Top Phone Bar --- */
.top-phone-bar {
  background: linear-gradient(90deg, #0c0f16 0%, #1e293b 50%, #0c0f16 100%);
  color: #ffffff;
  padding: 0.6rem 0;
  border-bottom: 2px solid #eab308;
  position: relative;
  z-index: 101;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.top-phone-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

.phone-bar-tag {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 850;
  color: #eab308;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.phone-pills-wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.phone-num-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background-color: #ffffff;
  color: #0c0f16;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 900;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
  letter-spacing: 0.5px;
}

.phone-num-pill svg {
  width: 18px;
  height: 18px;
  color: #0c0f16;
}
  height: 14px;
  color: #0c0f16;
}

.phone-num-pill:hover {
  background-color: #eab308;
  color: #0c0f16;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(234, 179, 8, 0.4);
}

.phone-num-pill.wa-pill {
  background-color: var(--whatsapp);
  color: #ffffff;
}

.phone-num-pill.wa-pill svg {
  color: #ffffff;
}

.phone-num-pill.wa-pill:hover {
  background-color: #128c7e;
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.4);
}

/* --- Header / Navigation --- */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  transition: padding 0.3s ease;
}

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

/* Custom logo design based on user image */
.logo-wrapper-new {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-circle-icon {
  width: 42px;
  height: 42px;
  background-color: var(--whatsapp-light);
  border: 2px solid var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--whatsapp);
}

.logo-circle-icon svg {
  width: 22px;
  height: 22px;
}

.logo-text-block {
  display: flex;
  flex-direction: column;
}

.logo-line-1 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.15;
}

.logo-line-2 {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 500;
}

.logo-line-phones {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--whatsapp-hover);
  margin-top: 0.15rem;
}

.logo-line-phones a {
  color: var(--whatsapp-hover);
  text-decoration: underline;
}

.logo-line-phones a:hover {
  color: var(--accent);
}

/* Navigation Links */
.nav-menu {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-main);
  padding: 0.5rem 0;
  position: relative;
}

.nav-link:hover {
  color: var(--whatsapp);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--whatsapp);
  transition: var(--transition-fast);
}

.nav-link:hover::after {
  width: 100%;
}

.header-cta-new {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.header-ceo-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.95rem;
  background: linear-gradient(135deg, #0c0f16 0%, #1e293b 100%);
  color: #fbbf24;
  border-radius: var(--radius-full);
  border: 1.5px solid rgba(251, 191, 36, 0.5);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 950;
  text-decoration: none;
  box-shadow: 0 3px 10px rgba(12, 15, 22, 0.25);
  transition: all 0.2s ease;
  white-space: nowrap;
}

.header-ceo-btn:hover {
  background: #fbbf24;
  color: #0c0f16;
  border-color: #fbbf24;
  transform: translateY(-2px);
  box-shadow: 0 5px 14px rgba(251, 191, 36, 0.4);
}

.header-ceo-btn svg {
  width: 14px;
  height: 14px;
}

.header-wa-btn {
  padding: 0.55rem 1.1rem;
  font-size: 0.875rem;
  border-radius: var(--radius-md);
}

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--text-dark);
  margin-bottom: 4px;
  transition: all 0.3s ease;
}

.hamburger span:last-child {
  margin-bottom: 0;
}

/* --- Hero Section --- */
.hero-new {
  padding: 4.5rem 0 5.5rem 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(15, 23, 42, 0.8) 100%), url('./assets/hero-bg.jpg') center/cover no-repeat;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.hero-grid-new {
  display: block;
}

.hero-content-new {
  max-width: 800px;
}

.hero-title-new {
  font-size: 2.15rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 0.5rem;
}

.hero-title-new .green-highlight {
  color: #16a34a; /* Styled text highlighted in green */
}

.hero-desc-new {
  font-size: 0.95rem;
  color: var(--text-main);
  margin-bottom: 0;
  line-height: 1.5;
  font-weight: 500;
}

.hero-phones-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-left: 0.35rem;
  font-weight: 700;
  color: var(--text-dark);
}

.phone-highlight-link {
  color: #15803d !important;
  font-weight: 900 !important;
  font-size: 1.3rem;
  background-color: #f0fdf4;
  padding: 0.3rem 0.85rem;
  border-radius: 8px;
  border: 1.5px solid rgba(34, 197, 94, 0.4);
  text-decoration: none !important;
  transition: all 0.2s ease;
  box-shadow: 0 2px 6px rgba(22, 163, 74, 0.15);
  letter-spacing: 0.5px;
}

.phone-highlight-link:hover {
  background-color: #16a34a;
  color: #ffffff !important;
  transform: translateY(-1px);
  box-shadow: 0 3px 8px rgba(22, 163, 74, 0.3);
}

.wa-phone-link {
  color: #15803d !important;
  border-color: rgba(34, 197, 94, 0.5);
}

.hero-phones-block-second {
  display: block;
  margin-top: 0.6rem;
  font-weight: 850;
  font-size: 1.25rem;
  color: var(--text-dark);
}

.hero-ctas-new {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* --- Platforms Section --- */
.section-platform-box {
  padding: 4rem 0 5rem 0;
  margin-top: 0;
  position: relative;
  clear: both;
}
.hero-ctas-new .btn {
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
}

.hero-image-box {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-composite-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(226, 232, 240, 0.8);
}


.platform-container-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 1.25rem 2rem;
  gap: 1.25rem;
}

.platform-col {
  padding: 0 0 1.25rem 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  border-right: none;
  border-bottom: 1px solid var(--border);
  width: 100%;
  gap: 1.5rem;
}

.platform-col:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.platform-col-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.platform-logo-new {
  height: 100px;
  width: auto;
  max-width: 260px;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 1;
  min-width: 0;
}

/* Actual brand logo images */
.brand-logo-img {
  height: 100%;
  width: auto;
  max-width: 240px;
  max-height: 100px;
  object-fit: contain;
  display: block;
}

/* Namma Yatri Logo icon styling */
.brand-logo-img.namma-yatri-logo-img {
  max-height: 95px;
  max-width: 95px;
  border-radius: 16px;
  object-fit: contain;
  transform: none;
}

.logo-call-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.35rem;
  background: linear-gradient(135deg, #18181b 0%, #09090b 100%);
  color: #ffffff;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(9, 9, 11, 0.4);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  white-space: nowrap;
}

.logo-wa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem 1.35rem;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #ffffff;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  white-space: nowrap;
  text-decoration: none;
}

.logo-wa-btn:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.5);
  background: linear-gradient(135deg, #128c7e 0%, #075e54 100%);
  border-color: rgba(255, 255, 255, 0.35);
}

.logo-wa-btn svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: currentColor;
}

.logo-wa-btn span {
  font-size: 0.95rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  line-height: 1;
}

.platform-actions-group {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin-left: auto;
}

.logo-call-btn:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 6px 18px rgba(9, 9, 11, 0.6);
  background: linear-gradient(135deg, #27272a 0%, #18181b 100%);
  border-color: rgba(255, 255, 255, 0.35);
}

.logo-call-btn span {
  font-size: 0.95rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  line-height: 1;
}
  max-width: 180px;
  border-radius: 14px;
  object-fit: contain;
  transform: none;
}

.platform-col-text {
  flex: 1;
  padding: 0 1rem;
}

.platform-col-text h3 {
  font-size: 1.2rem;
  margin-bottom: 0.2rem;
  color: var(--text-dark);
  font-weight: 850;
}

.platform-col-text p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.35;
  margin-bottom: 0;
  font-weight: 500;
}

.platform-vehicle-btns {
  margin-top: 0;
  width: auto;
  flex-shrink: 0;
}

.platform-vehicle-label {
  display: block;
  font-size: 1.05rem;
  font-weight: 950;
  color: #0c0f16;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 0.5rem;
}

.vehicle-btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.vehicle-pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.7rem 1.3rem;
  font-size: 1.05rem;
  font-weight: 950;
  border-radius: var(--radius-full);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  letter-spacing: 0.5px;
}

/* Highly Noticeable Vehicle Buttons */
.vehicle-pill-btn.auto {
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(22, 163, 74, 0.35);
}

.vehicle-pill-btn.auto:hover {
  background: linear-gradient(135deg, #15803d 0%, #166534 100%);
  color: #ffffff;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 14px rgba(22, 163, 74, 0.45);
}

.vehicle-pill-btn.car {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.35);
}

.vehicle-pill-btn.car:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
  color: #ffffff;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 14px rgba(37, 99, 235, 0.45);
}

.vehicle-pill-btn.bike {
  background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(234, 88, 12, 0.35);
}

.vehicle-pill-btn.bike:hover {
  background: linear-gradient(135deg, #c2410c 0%, #9a3412 100%);
  color: #ffffff;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 14px rgba(234, 88, 12, 0.45);
}

.platform-logo-new {
  height: 100px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.platform-logo-new svg {
  height: 100%;
  width: auto;
  max-width: 240px;
}

/* Actual brand logo images */
.brand-logo-img {
  height: 100%;
  width: auto;
  max-width: 240px;
  max-height: 100px;
  object-fit: contain;
  display: block;
}

/* Make Namma Yatri Logo significantly bigger */
.brand-logo-img.namma-yatri-logo-img {
  max-height: 130px;
  max-width: 290px;
  transform: scale(1.3);
  transform-origin: left center;
}

/* Instagram Pink Buttons */
.btn-insta {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
  color: #ffffff !important;
  border: none !important;
  box-shadow: 0 4px 12px rgba(225, 48, 108, 0.35);
  font-weight: 700;
}

.btn-insta:hover {
  background: linear-gradient(45deg, #bc1888 0%, #cc2366 25%, #dc2743 50%, #e6683c 75%, #f09433 100%) !important;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(225, 48, 108, 0.5);
}

.btn-insta svg {
  color: #ffffff !important;
}

/* Instagram Top Bar Link */
#instagram-link {
  color: #e1306c !important;
  font-weight: 700;
}

#instagram-link:hover {
  color: #fd1d1d !important;
}

/* Mail blue hover */
#mail-link:hover {
  color: #4a90e2;
}

.platform-col h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.platform-col p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* --- Services Section --- */
.services-header-box {
  text-align: center;
  margin-bottom: 4rem;
}

.services-badge-new {
  display: inline-block;
  color: var(--whatsapp);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  margin-bottom: 0.5rem;
}

.services-title-new {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
  padding-bottom: 0.75rem;
}

/* Centered black and green divider bar underneath title */
.services-title-new::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(to right, #000000 50%, #22c55e 50%);
}

/* 3-Column Grid for Services Section */
.services-grid-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.service-card-new {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: visible;
  transition: var(--transition-normal);
  min-height: 340px;
}

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

/* Custom background themes from screenshot */
.service-card-new.auto-card { background-color: #f2faf5; border-color: rgba(34, 197, 94, 0.12); }
.service-card-new.car-card { background-color: #f3f7fe; border-color: rgba(37, 99, 235, 0.12); }
.service-card-new.bike-card { background-color: #fff9ec; border-color: rgba(245, 158, 11, 0.12); }

.service-card-content {
  max-width: 58%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  z-index: 5;
}

.service-icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.service-icon-circle.green { background-color: var(--whatsapp); }
.service-icon-circle.blue { background-color: var(--accent); }
.service-icon-circle.orange { background-color: var(--yellow-accent); }

.service-icon-circle svg {
  width: 22px;
  height: 22px;
}

.service-card-content h3 {
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem;
}

.service-card-new.auto-card h3 { color: #15803d; }
.service-card-new.car-card h3 { color: #1d4ed8; }
.service-card-new.bike-card h3 { color: #b45309; }

.service-card-content p {
  font-size: 0.9rem;
  color: var(--text-main);
  margin-bottom: 1.75rem;
  line-height: 1.55;
}

/* Capsule pills Learn More buttons with gradients */
.service-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
  color: #ffffff;
  transition: var(--transition-fast);
}

.service-card-btn.green { background: linear-gradient(135deg, #15803d 0%, #16a34a 100%); }
.service-card-btn.blue { background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 100%); }
.service-card-btn.orange { background: linear-gradient(135deg, #b45309 0%, #d97706 100%); }

.service-card-btn:hover {
  opacity: 0.95;
  gap: 0.75rem;
}

/* Sits on bottom right overlapping the card bounds slightly */
.service-card-img {
  position: absolute;
  bottom: 10px;
  right: 5px;
  max-height: 200px;
  width: auto;
  max-width: 50%;
  object-fit: contain;
  z-index: 1;
  pointer-events: none;
}

/* --- Documents & Why Choose Us --- */
.doc-why-split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: start;
}

/* Full-width documents section (no Why Choose Us) */
.doc-full-width {
  max-width: 680px;
  margin: 0 auto;
}

.doc-full-width .doc-column {
  width: 100%;
}

.column-title {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-bottom: 2rem;
  color: var(--text-dark);
  position: relative;
  padding-bottom: 0.5rem;
}

.column-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background-color: var(--whatsapp);
}

.doc-list-vertical {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.doc-alert-notice {
  background-color: #fefce8;
  border: 1px solid #fef08a;
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-top: 1rem;
}

/* Document Upload Box */
.doc-upload-box {
  background: var(--bg-card);
  border: 1.5px solid var(--whatsapp-light);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  margin-top: 1.75rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-md);
}

.doc-upload-header {
  margin-bottom: 1.25rem;
}

.doc-upload-header h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.35rem;
}

.doc-upload-header p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.upload-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.upload-field {
  width: 100%;
}

.upload-label {
  display: flex;
  flex-direction: column;
  background: var(--bg-body);
  border: 1.5px dashed var(--border-hover);
  border-radius: var(--radius-md);
  padding: 0.9rem 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.upload-label:hover {
  border-color: var(--whatsapp);
  background: var(--whatsapp-light);
}

.upload-field-title {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.35rem;
}

/* Driver Registration Form */
.form-inputs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--text-dark);
}

.form-input-control {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--bg-body);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: all 0.2s ease;
}

.form-input-control:focus {
  outline: none;
  border-color: var(--whatsapp);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.15);
}

.form-success-alert {
  margin-top: 1rem;
  background: #f0fdf4;
  border: 1px solid rgba(34, 197, 94, 0.4);
  color: #15803d;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  font-weight: 800;
  font-size: 0.95rem;
  text-align: center;
}

.formspree-setup-notice {
  background: #fefce8;
  border: 1.5px solid #fde047;
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
  font-size: 0.83rem;
  color: #854d0e;
  margin-bottom: 1rem;
}

.formspree-error-notice {
  background: #fef2f2;
  border: 1.5px solid #fca5a5;
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
  font-size: 0.85rem;
  color: #dc2626;
  margin-bottom: 1rem;
}

.field-error-text {
  font-size: 0.78rem;
  color: #dc2626;
  font-weight: 600;
  margin-top: 0.2rem;
}

.file-status-text {
  font-size: 0.78rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* WhatsApp 2-Step Guide */
.whatsapp-steps-box {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.wa-step-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--bg-body);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.1rem;
}

.step-num {
  width: 32px;
  height: 32px;
  background: var(--whatsapp);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1rem;
  flex-shrink: 0;
}

.step-desc strong {
  display: block;
  font-size: 0.92rem;
  color: var(--text-dark);
}

.step-desc p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
}

.upload-submit-row {
  margin-top: 0.5rem;
}

.upload-submit-btn {
  width: 100%;
  justify-content: center;
  padding: 0.85rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 800;
}

@media (max-width: 599px) {
  .upload-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}

.doc-card-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background-color: var(--whatsapp-light);
  color: var(--whatsapp);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.doc-card-icon svg {
  width: 18px;
  height: 18px;
}

.doc-card-mini span {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text-dark);
}

.doc-alert-notice {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background-color: var(--whatsapp-light);
  border: 1px solid rgba(34, 197, 94, 0.25);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  color: var(--whatsapp-hover);
  font-size: 0.85rem;
}

.doc-alert-notice svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* Why Choose Us Grid */
.why-grid-new {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.why-item-new {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  display: flex;
  gap: 1rem;
}

.why-icon-new {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background-color: var(--whatsapp-light);
  color: var(--whatsapp);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-icon-new svg {
  width: 18px;
  height: 18px;
}

.why-txt h4 {
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
  color: var(--text-dark);
}

.why-txt p {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.4;
}

/* --- Location & Contact --- */
.location-split-new {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: stretch;
}

.location-col-new {
  display: flex;
  flex-direction: column;
}

.location-details-new {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.address-text-new {
  font-size: 1rem;
  color: var(--text-dark);
  font-weight: 500;
  line-height: 1.6;
}

.btn-directions-new {
  flex-shrink: 0;
  background-color: #16a34a;
  color: #ffffff;
  padding: 0.65rem 1.25rem;
  font-size: 0.85rem;
}

.btn-directions-new:hover {
  background-color: #15803d;
}

.map-wrapper-new {
  flex: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  min-height: 250px;
}

.map-wrapper-new iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Contact Us Dark Slate Card */
.contact-card-dark {
  background-color: #0c0f16;
  border: 1px solid #1e293b;
  border-radius: var(--radius-lg);
  padding: 3rem;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
}

.dark-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--whatsapp);
  margin-bottom: 1.5rem;
}

.contact-card-dark h3 {
  color: #ffffff;
  font-size: 1.85rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.contact-card-dark p {
  color: #94a3b8;
  font-size: 0.95rem;
  margin-bottom: 2.25rem;
}

.contact-actions-dark {
  display: flex;
  gap: 0.75rem;
  width: 100%;
  margin-bottom: 2.5rem;
}

.contact-actions-dark .btn {
  flex: 1;
  padding: 0.8rem 1rem;
  font-size: 0.85rem;
}

.contact-actions-dark .yellow-btn {
  background-color: #f7c014;
  color: #000000;
}

.contact-actions-dark .yellow-btn:hover {
  background-color: #e5b20e;
}

.contact-footer-num {
  width: 100%;
  border-top: 1px solid #1e293b;
  padding-top: 1.5rem;
  text-align: center;
}

.phone-big-text {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 1px;
}

.phone-small-sub {
  font-size: 0.85rem;
  color: #10b981;
  font-weight: 600;
  margin-top: 0.25rem;
}

/* --- Footer --- */
footer {
  background-color: #05070a;
  border-top: 1px solid #1e293b;
  padding: 2rem 0;
  font-size: 0.85rem;
  color: #64748b;
}

.footer-bottom-new {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-credits a {
  color: #94a3b8;
}

/* --- Call Modal Dialog --- */
.call-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.call-modal-overlay.active {
  display: flex;
  opacity: 1;
}

.call-modal-card {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  width: 90%;
  max-width: 420px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  transform: scale(0.9);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.call-modal-overlay.active .call-modal-card {
  transform: scale(1);
}

.modal-header {
  background-color: #0c0f16;
  color: #ffffff;
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h3 {
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 700;
}

.modal-close-icon {
  background: none;
  border: none;
  color: #94a3b8;
  font-size: 1.75rem;
  cursor: pointer;
  line-height: 1;
}

.modal-close-icon:hover {
  color: #ffffff;
}

.modal-body {
  padding: 1.5rem;
}

.modal-body p {
  font-size: 0.9rem;
  color: var(--text-main);
  margin-bottom: 1.25rem;
}

.modal-phone-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  background-color: #f1f5f9;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1rem;
  margin-bottom: 1rem;
  transition: var(--transition-fast);
}

.modal-phone-btn:hover {
  background-color: #e2e8f0;
  border-color: #cbd5e1;
  transform: translateY(-1px);
}

.phone-icon-box {
  width: 40px;
  height: 40px;
  background-color: var(--whatsapp-light);
  color: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-icon-box.blue {
  background-color: #eff6ff;
  color: var(--accent);
}

.phone-icon-box svg {
  width: 18px;
  height: 18px;
}

.phone-btn-text {
  display: flex;
  flex-direction: column;
}

.phone-btn-text .label {
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 600;
  text-transform: uppercase;
}

.phone-btn-text .number {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 850;
  color: var(--text-dark);
}

.modal-footer {
  border-top: 1px solid var(--border);
  padding: 1rem 1.5rem;
  background-color: #f8fafc;
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 500;
}

/* --- Sticky Bottom Navigation Footer (Mobile Only) --- */
.sticky-nav-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.05);
  z-index: 1000;
  padding: 0.5rem 1rem;
  display: none; /* Hidden by default on desktop, shown on mobile max-width: 768px */
}

.sticky-footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.1fr 0.8fr;
  gap: 0.5rem;
  max-width: 600px;
  margin: 0 auto;
}

.sticky-btn-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.65rem 0.5rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  border: 1px solid transparent;
  color: #ffffff;
}

.sticky-btn-footer.wa-btn {
  background-color: var(--whatsapp);
}

.sticky-btn-footer.call-btn {
  background-color: #0c0f16;
}

.sticky-btn-footer.dir-btn {
  background-color: var(--accent);
}

.sticky-btn-footer.top-btn {
  background-color: #ffffff;
  border-color: var(--border);
  color: var(--text-dark);
}

.sticky-btn-footer.top-btn:hover {
  background-color: #f1f5f9;
}

.sticky-btn-footer svg {
  width: 16px;
  height: 16px;
}

/* --- Scroll Reveals --- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* --- Media Queries / Responsiveness (Phone & Tablet compatibility) --- */

@media (max-width: 1024px) {
  html { font-size: 15px; }
  
  .hero-grid-new {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }
  
  .hero-content-new {
    max-width: 100%;
  }
  
  .hero-ctas-new {
    justify-content: center;
  }

  .services-grid-new {
    grid-template-columns: 1fr; /* Stack services 1-column on tablets and smaller to allow full widths */
    max-width: 600px;
    margin: 0 auto;
    gap: 2rem;
  }

  .service-card-new {
    min-height: 280px;
  }
  
  .doc-why-split, .location-split-new {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 3.5rem 0; /* Reduced padding on mobile screens */
  }

  .top-bar-container {
    justify-content: center;
    text-align: center;
    gap: 0.5rem;
  }

  .top-bar-left {
    justify-content: center;
    text-align: center;
    font-size: 0.75rem;
  }
  
  .top-bar-right {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.75rem;
  }
  
  .nav-menu {
    position: fixed;
    top: 4.75rem;
    left: -100%;
    width: 100%;
    height: calc(100vh - 4.75rem);
    background-color: #ffffff;
    flex-direction: column;
    padding: 2.5rem;
    gap: 1.5rem;
    box-shadow: 0 10px 15px rgba(0,0,0,0.05);
    transition: var(--transition-normal);
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .hamburger {
    display: block;
  }

  .logo-line-1 {
    font-size: 1.1rem;
  }

  .logo-line-2 {
    font-size: 0.75rem;
  }

  .header-wa-btn {
    display: none; /* Handled by sticky bottom on phones */
  }

  .hero-title-new {
    font-size: 2.1rem; /* Slightly smaller size on phones */
  }

  .services-title-new {
    font-size: 1.85rem;
  }

  .why-grid-new {
    grid-template-columns: 1fr;
  }
  
  .location-details-new {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .btn-directions-new {
    width: 100%;
  }

  .map-wrapper-new {
    height: 280px;
  }

  .contact-card-dark {
    padding: 2rem 1.5rem;
  }
  
  .contact-actions-dark {
    flex-direction: column;
  }

  .phone-big-text {
    font-size: 1.85rem;
  }

  /* Show sticky bottom navigation footer on mobile devices */
  .sticky-nav-footer {
    display: block;
  }
  
  body {
    padding-bottom: 75px; /* Offset to prevent sticky bar overlapping page footer contents */
  }
}

/* Absolute Phone Stack Override for Services cards */
@media (max-width: 599px) {
  .platform-container-card {
    display: flex;
    flex-direction: column;
    padding: 1.1rem 0.9rem;
    gap: 1.5rem;
  }

  .platform-col {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .platform-col-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 0.5rem;
  }

  .platform-logo-new {
    height: 75px;
    width: auto;
    max-width: 180px;
    flex-shrink: 1;
    min-width: 0;
  }

  .brand-logo-img {
    max-height: 75px;
    width: auto;
    max-width: 170px;
    object-fit: contain;
  }

  .brand-logo-img.namma-yatri-logo-img {
    max-height: 75px;
    max-width: 75px;
    border-radius: 12px;
  }

  .platform-actions-group {
    margin-left: auto;
    display: flex;
    gap: 0.4rem;
    align-items: center;
  }

  .logo-call-btn {
    padding: 0.5rem 0.85rem;
    font-size: 0.8rem;
    flex-shrink: 0;
    white-space: nowrap;
    margin-left: 0;
  }

  .logo-wa-btn {
    padding: 0.5rem 0.85rem;
    font-size: 0.8rem;
    flex-shrink: 0;
    white-space: nowrap;
  }

  .logo-wa-btn span {
    display: none;
  }

  .logo-wa-btn svg {
    margin: 0;
    width: 1.1rem;
    height: 1.1rem;
  }

  .platform-col:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .service-card-new {
    flex-direction: column;
    min-height: auto;
    padding: 2rem 1.5rem;
    align-items: center;
  }
  
  .service-card-content {
    max-width: 100%;
    width: 100%;
    text-align: center;
    align-items: center;
  }
  
  .service-card-content p {
    text-align: center;
    margin-bottom: 1.25rem;
  }
  
  .service-card-img {
    position: static;
    display: block;
    width: 75%;
    max-width: 220px;
    height: auto;
    max-height: 140px;
    margin: 1.25rem auto 1.5rem auto;
  }
  
  .service-card-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 400px) {
  .logo-line-1 {
    font-size: 0.95rem; /* prevent logo overflow on extremely narrow phones like iPhone SE */
  }
}

/* --- All India Availability Section --- */
.all-india-section {
  padding: 3rem 0;
  background: var(--bg-body);
}

.all-india-card {
  background: linear-gradient(145deg, #0f172a 0%, #1e293b 100%);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  color: #f8fafc;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.all-india-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2.5rem auto;
}

.all-india-badge {
  display: inline-block;
  background: rgba(34, 197, 94, 0.2);
  color: #4ade80;
  border: 1px solid rgba(74, 222, 128, 0.4);
  font-size: 0.8rem;
  font-weight: 800;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
}

.all-india-header .column-title {
  color: #ffffff;
  font-size: 2.25rem;
  margin-bottom: 0.75rem;
}

.all-india-sub {
  color: #94a3b8;
  font-size: 1rem;
  line-height: 1.6;
}

.all-india-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.india-map-box {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  background: #020617;
}

.india-map-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.india-map-box:hover .india-map-img {
  transform: scale(1.03);
}

.map-overlay-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(52, 211, 153, 0.4);
  color: #34d399;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-md);
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulse-dot-anim 1.8s infinite;
}

@keyframes pulse-dot-anim {
  0% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

.metro-cities-box h3 {
  font-size: 1.4rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.metro-cities-box p {
  color: #94a3b8;
  font-size: 0.92rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.cities-chips-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.75rem;
}

.city-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  color: #e2e8f0;
  transition: all 0.2s ease;
}

.city-chip:hover {
  background: rgba(34, 197, 94, 0.15);
  border-color: rgba(34, 197, 94, 0.5);
  color: #4ade80;
  transform: translateY(-2px);
}

.city-chip.main-city {
  background: rgba(234, 179, 8, 0.15);
  border-color: rgba(234, 179, 8, 0.5);
  color: #fde047;
  font-weight: 700;
}

.city-tag {
  background: rgba(234, 179, 8, 0.3);
  color: #fef08a;
  font-size: 0.7rem;
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  text-transform: uppercase;
  margin-left: 0.2rem;
}

.all-india-cta {
  background: rgba(255, 255, 255, 0.04);
  border: 1px dashed rgba(255, 255, 255, 0.15);
  padding: 1.25rem;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.all-india-cta span {
  color: #cbd5e1;
  font-size: 0.88rem;
}

@media (max-width: 991px) {
  .all-india-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Fail-safe visibility so deployed website is NEVER blank */
.reveal, .reveal.active {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}
