.bangalore-landing {
  --bl-bg: #0B0E1F;
  --bl-bg-panel: #141933;
  --bl-bg-panel-hover: #1C2347;
  --bl-amber: #FFB13D;
  --bl-amber-hover: #F0A028;
  --bl-teal: #5EEAD4;
  --bl-text: #F4F2EA;
  --bl-muted: #A0A7C4;
  --bl-line: rgba(244, 242, 234, 0.14);
  --bl-line-soft: rgba(244, 242, 234, 0.08);
  --bl-whatsapp: #25D366;

  box-sizing: border-box;
  margin: 0;
  background: var(--bl-bg);
  color: var(--bl-text);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

.bangalore-landing * {
  box-sizing: border-box;
}

.bangalore-landing h1,
.bangalore-landing h2,
.bangalore-landing h3,
.bangalore-landing h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  margin: 0;
  letter-spacing: -0.01em;
  color: var(--bl-text);
}

.bangalore-landing a {
  color: inherit;
}

.bangalore-landing img {
  max-width: 100%;
}

.bangalore-landing .wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
}

@media (max-width: 640px) {
  .bangalore-landing .wrap {
    padding: 0 20px;
  }
}

.bangalore-landing :focus-visible {
  outline: 2px solid var(--bl-teal);
  outline-offset: 3px;
}

/* ---------- NAV ---------- */
.bangalore-landing header.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 14, 31, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--bl-line-soft);
}

.bangalore-landing .nav-inner {
  display: flex;
  align-items: center;
  padding: 16px 32px;
  max-width: 1120px;
  margin: 0 auto;
}

.bangalore-landing .logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  margin-right: auto;
}

.bangalore-landing .logo-img {
  height: 115px;
  max-height: 130px;
  width: auto;
  object-fit: contain;
  transition: opacity 0.15s ease;
}

.bangalore-landing .logo-link:hover .logo-img {
  opacity: 0.9;
}

.bangalore-landing .nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  color: var(--bl-muted);
  margin-right: 24px;
}

.bangalore-landing .nav-links a {
  text-decoration: none;
  transition: color 0.15s ease;
}

.bangalore-landing .nav-links a:hover {
  color: var(--bl-text);
}

.bangalore-landing .nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.bangalore-landing .nav-cta {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 10px 20px;
  background: var(--bl-amber);
  color: #16121F;
  border-radius: 4px;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.15s ease, background 0.15s ease;
}

.bangalore-landing .nav-cta:hover {
  transform: translateY(-1px);
  background: var(--bl-amber-hover);
}

.bangalore-landing .mobile-nav-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--bl-text);
  cursor: pointer;
  padding: 6px;
}

@media (max-width: 860px) {
  .bangalore-landing .nav-links {
    display: none;
  }
  .bangalore-landing .mobile-nav-toggle {
    display: block;
  }
}

@media (max-width: 640px) {
  .bangalore-landing .nav-inner {
    padding: 14px 20px;
  }
  .bangalore-landing .logo-img {
    height: 75px;
  }
  .bangalore-landing .nav-cta {
    padding: 8px 14px;
    font-size: 12px;
  }
}

.bangalore-landing .mobile-nav-menu {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px 32px;
  background: var(--bl-bg-panel);
  border-bottom: 1px solid var(--bl-line-soft);
}

.bangalore-landing .mobile-nav-menu a {
  text-decoration: none;
  font-size: 15px;
  color: var(--bl-text);
}

/* ---------- HERO ---------- */
.bangalore-landing .hero {
  padding: 64px 0 56px;
  border-bottom: 1px solid var(--bl-line-soft);
}

.bangalore-landing .hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
}

.bangalore-landing .location-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--bl-teal);
  margin-bottom: 16px;
}

.bangalore-landing .location-tag .pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--bl-teal);
  box-shadow: 0 0 0 0 rgba(94, 234, 212, 0.5);
  animation: pulse-bl 2.2s infinite;
}

@keyframes pulse-bl {
  0% {
    box-shadow: 0 0 0 0 rgba(94, 234, 212, 0.45);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(94, 234, 212, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(94, 234, 212, 0);
  }
}

.bangalore-landing .hero h1 {
  font-size: clamp(32px, 4.2vw, 48px);
  line-height: 1.12;
}

.bangalore-landing .hero .hero-subheading {
  margin-top: 16px;
  font-size: 18px;
  font-weight: 500;
  color: var(--bl-text);
  line-height: 1.4;
}

.bangalore-landing .hero p.lede {
  margin-top: 14px;
  color: var(--bl-muted);
  font-size: 15px;
  line-height: 1.6;
}

.bangalore-landing .hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.bangalore-landing .btn-primary-hero {
  background: var(--bl-amber);
  color: #16121F;
  font-weight: 700;
  font-size: 15px;
  padding: 13px 26px;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.bangalore-landing .btn-primary-hero:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(255, 177, 61, 0.25);
}

.bangalore-landing .btn-secondary-hero {
  border: 1px solid var(--bl-line);
  color: var(--bl-text);
  font-weight: 600;
  font-size: 14px;
  padding: 12px 22px;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.15s ease, color 0.15s ease;
}

.bangalore-landing .btn-secondary-hero:hover {
  border-color: var(--bl-teal);
  color: var(--bl-teal);
}

.bangalore-landing .hero-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 16px;
  margin-top: 32px;
}

.bangalore-landing .hero-badge {
  font-size: 13px;
  color: var(--bl-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.bangalore-landing .hero-badge .tick {
  color: var(--bl-teal);
  font-size: 15px;
  font-weight: 700;
}

.bangalore-landing .lead-card {
  background: var(--bl-bg-panel);
  border: 1px solid var(--bl-line);
  border-radius: 6px;
  padding: 28px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.25);
}

.bangalore-landing .lead-card h2 {
  font-size: 20px;
  margin-bottom: 6px;
}

.bangalore-landing .lead-card .sub {
  color: var(--bl-muted);
  font-size: 13px;
  margin-bottom: 20px;
  line-height: 1.4;
}

.bangalore-landing .field {
  margin-bottom: 14px;
}

.bangalore-landing .field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.bangalore-landing .field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--bl-muted);
  margin-bottom: 5px;
}

.bangalore-landing .field input,
.bangalore-landing .field select,
.bangalore-landing .field textarea {
  width: 100%;
  background: var(--bl-bg);
  border: 1px solid var(--bl-line);
  border-radius: 4px;
  padding: 11px 13px;
  color: var(--bl-text);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  transition: border-color 0.15s ease;
}

.bangalore-landing .field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8'><path d='M1 1l5 5 5-5' stroke='%239CA3C0' stroke-width='1.5' fill='none' fill-rule='evenodd'/></svg>");
  background-repeat: no-repeat;
  background-position: right 13px center;
}

.bangalore-landing .field input:focus,
.bangalore-landing .field select:focus,
.bangalore-landing .field textarea:focus {
  border-color: var(--bl-teal);
  outline: none;
}

.bangalore-landing .btn-primary {
  width: 100%;
  background: var(--bl-amber);
  color: #16121F;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 13px 24px;
  border-radius: 4px;
  border: none;
  text-decoration: none;
  font-size: 14px;
  display: block;
  text-align: center;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.bangalore-landing .btn-primary:hover:not(:disabled) {
  transform: translateY(-1px);
  background: var(--bl-amber-hover);
  box-shadow: 0 8px 24px rgba(255, 177, 61, 0.25);
}

.bangalore-landing .btn-primary:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.bangalore-landing .lead-note {
  margin-top: 12px;
  font-size: 12px;
  color: var(--bl-muted);
  text-align: center;
}

@media (max-width: 900px) {
  .bangalore-landing .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .bangalore-landing .field-row {
    grid-template-columns: 1fr;
  }
}

/* ---------- TRUST / RESULTS STRIP ---------- */
.bangalore-landing .results-strip {
  background: var(--bl-bg-panel);
  border-bottom: 1px solid var(--bl-line-soft);
  padding: 40px 0;
}

.bangalore-landing .results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.bangalore-landing .result-card {
  text-align: center;
  padding: 16px;
  border-right: 1px solid var(--bl-line-soft);
}

.bangalore-landing .result-card:last-child {
  border-right: none;
}

.bangalore-landing .result-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(32px, 3.8vw, 44px);
  font-weight: 700;
  color: var(--bl-teal);
  line-height: 1;
}

.bangalore-landing .result-label {
  color: var(--bl-muted);
  font-size: 14px;
  margin-top: 8px;
  font-weight: 500;
}

@media (max-width: 780px) {
  .bangalore-landing .results-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .bangalore-landing .result-card {
    border-right: none;
    border-bottom: 1px solid var(--bl-line-soft);
    padding-bottom: 20px;
  }
  .bangalore-landing .result-card:nth-child(3),
  .bangalore-landing .result-card:nth-child(4) {
    border-bottom: none;
  }
}

/* ---------- GENERAL SECTIONS ---------- */
.bangalore-landing section {
  padding: 80px 0;
  border-bottom: 1px solid var(--bl-line-soft);
}

.bangalore-landing section:last-of-type {
  border-bottom: none;
}

.bangalore-landing .section-head {
  max-width: 640px;
  margin-bottom: 48px;
}

.bangalore-landing .section-head.text-center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.bangalore-landing .section-head h2 {
  font-size: clamp(26px, 3.2vw, 36px);
  margin-bottom: 12px;
  line-height: 1.2;
}

.bangalore-landing .section-head p {
  color: var(--bl-muted);
  font-size: 16px;
  line-height: 1.5;
}

/* ---------- PROBLEM SECTION ---------- */
.bangalore-landing .problem-section .pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.bangalore-landing .pain-card {
  background: var(--bl-bg-panel);
  border: 1px solid var(--bl-line);
  border-radius: 6px;
  padding: 28px;
  transition: transform 0.15s ease, border-color 0.15s ease;
}

.bangalore-landing .pain-card:hover {
  transform: translateY(-2px);
  border-color: var(--bl-teal);
}

.bangalore-landing .pain-card .mark {
  color: var(--bl-amber);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.bangalore-landing .pain-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.bangalore-landing .pain-card p {
  margin: 0;
  color: var(--bl-muted);
  font-size: 14px;
  line-height: 1.5;
}

.bangalore-landing .problem-bottom {
  margin-top: 36px;
  text-align: center;
}

.bangalore-landing .problem-bottom p {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  color: var(--bl-teal);
  background: rgba(94, 234, 212, 0.08);
  border: 1px solid rgba(94, 234, 212, 0.2);
  padding: 12px 24px;
  border-radius: 4px;
  margin: 0;
}

@media (max-width: 780px) {
  .bangalore-landing .problem-section .pain-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- WHY CLIXHORA ---------- */
.bangalore-landing .why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.bangalore-landing .why-item {
  background: var(--bl-bg-panel);
  border: 1px solid var(--bl-line);
  border-radius: 6px;
  padding: 24px;
}

.bangalore-landing .why-item .mark {
  color: var(--bl-amber);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.bangalore-landing .why-item h3 {
  font-size: 17px;
  margin-bottom: 8px;
}

.bangalore-landing .why-item p {
  color: var(--bl-muted);
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

@media (max-width: 860px) {
  .bangalore-landing .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 580px) {
  .bangalore-landing .why-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- SERVICES ---------- */
.bangalore-landing .services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.bangalore-landing .service-card {
  background: var(--bl-bg-panel);
  border: 1px solid var(--bl-line);
  border-radius: 6px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.15s ease, border-color 0.15s ease;
}

.bangalore-landing .service-card:hover {
  transform: translateY(-2px);
  border-color: var(--bl-amber);
}

.bangalore-landing .service-card h3 {
  font-size: 19px;
  margin-bottom: 10px;
}

.bangalore-landing .service-card p {
  color: var(--bl-muted);
  font-size: 14px;
  line-height: 1.5;
  margin: 0 0 20px;
  flex-grow: 1;
}

.bangalore-landing .service-link {
  color: var(--bl-amber);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.15s ease;
}

.bangalore-landing .service-link:hover {
  color: var(--bl-teal);
}

@media (max-width: 860px) {
  .bangalore-landing .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 580px) {
  .bangalore-landing .services-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- MID-PAGE CTA BANNER ---------- */
.bangalore-landing .mid-cta-banner {
  background: linear-gradient(135deg, var(--bl-bg-panel) 0%, var(--bl-bg-panel-hover) 100%);
  border-top: 1px solid var(--bl-line);
  border-bottom: 1px solid var(--bl-line);
  padding: 64px 0;
}

.bangalore-landing .mid-cta-inner {
  text-align: center;
  max-width: 680px;
}

.bangalore-landing .mid-cta-inner h2 {
  font-size: clamp(26px, 3.4vw, 36px);
  margin-bottom: 12px;
}

.bangalore-landing .mid-cta-inner p {
  color: var(--bl-muted);
  font-size: 16px;
  margin-bottom: 28px;
}

.bangalore-landing .mid-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.bangalore-landing .btn-primary-banner {
  background: var(--bl-amber);
  color: #16121F;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  padding: 13px 26px;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.15s ease, background 0.15s ease;
}

.bangalore-landing .btn-primary-banner:hover {
  transform: translateY(-1px);
  background: var(--bl-amber-hover);
}

.bangalore-landing .btn-secondary-banner {
  border: 1px solid var(--bl-line);
  color: var(--bl-text);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  padding: 12px 24px;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.15s ease, color 0.15s ease;
}

.bangalore-landing .btn-secondary-banner:hover {
  border-color: var(--bl-teal);
  color: var(--bl-teal);
}

/* ---------- PROCESS SECTION ---------- */
.bangalore-landing .process-timeline {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  position: relative;
}

.bangalore-landing .proc-step {
  background: var(--bl-bg-panel);
  border: 1px solid var(--bl-line);
  border-radius: 6px;
  padding: 20px 16px;
}

.bangalore-landing .proc-num {
  font-family: 'Space Grotesk', sans-serif;
  color: var(--bl-amber);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.bangalore-landing .proc-step h3 {
  font-size: 16px;
  margin-bottom: 6px;
}

.bangalore-landing .proc-step p {
  color: var(--bl-muted);
  font-size: 13px;
  line-height: 1.4;
  margin: 0;
}

@media (max-width: 960px) {
  .bangalore-landing .process-timeline {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

@media (max-width: 580px) {
  .bangalore-landing .process-timeline {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* ---------- CASE STUDIES SECTION ---------- */
.bangalore-landing .case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.bangalore-landing .case-card {
  background: var(--bl-bg-panel);
  border: 1px solid var(--bl-line);
  border-radius: 6px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bangalore-landing .case-card .tag {
  font-size: 12px;
  font-weight: 600;
  color: var(--bl-amber);
  margin-bottom: 8px;
}

.bangalore-landing .case-card h3 {
  font-size: 19px;
  margin-bottom: 16px;
}

.bangalore-landing .case-results {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.bangalore-landing .case-results div {
  font-family: 'Space Grotesk', sans-serif;
  color: var(--bl-teal);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

.bangalore-landing .case-results div span {
  display: block;
  color: var(--bl-muted);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 400;
  margin-top: 3px;
}

.bangalore-landing .case-link {
  color: var(--bl-text);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.15s ease;
}

.bangalore-landing .case-link:hover {
  color: var(--bl-amber);
}

@media (max-width: 860px) {
  .bangalore-landing .case-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- CERTIFICATIONS SECTION ---------- */
.bangalore-landing .cert-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.bangalore-landing .cert-badge {
  background: var(--bl-bg-panel);
  border: 1px solid var(--bl-line);
  border-radius: 4px;
  padding: 16px 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--bl-text);
  font-family: 'Space Grotesk', sans-serif;
}

/* ---------- TESTIMONIALS SECTION ---------- */
.bangalore-landing .testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.bangalore-landing .testi-card {
  background: var(--bl-bg-panel);
  border: 1px solid var(--bl-line);
  border-radius: 6px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bangalore-landing .testi-card .stars {
  color: var(--bl-amber);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.bangalore-landing .testi-card p {
  font-size: 15px;
  color: var(--bl-text);
  margin: 0 0 20px;
  line-height: 1.5;
}

.bangalore-landing .testi-card cite {
  font-style: normal;
  font-size: 13px;
  color: var(--bl-muted);
}

.bangalore-landing .testi-card cite span {
  color: var(--bl-text);
  font-weight: 600;
}

@media (max-width: 860px) {
  .bangalore-landing .testi-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- FAQ ACCORDION SECTION ---------- */
.bangalore-landing .faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 800px;
  margin: 0 auto;
}

.bangalore-landing .faq-item {
  background: var(--bl-bg-panel);
  border: 1px solid var(--bl-line);
  border-radius: 6px;
  overflow: hidden;
  transition: border-color 0.15s ease;
}

.bangalore-landing .faq-item.open {
  border-color: var(--bl-teal);
}

.bangalore-landing .faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 20px 24px;
  text-align: left;
  color: var(--bl-text);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 17px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 16px;
}

.bangalore-landing .faq-icon {
  font-size: 20px;
  color: var(--bl-amber);
  line-height: 1;
}

.bangalore-landing .faq-answer {
  padding: 0 24px 20px;
  color: var(--bl-muted);
  font-size: 15px;
  line-height: 1.6;
}

.bangalore-landing .faq-answer p {
  margin: 0;
}

/* ---------- FINAL CONTACT SECTION ---------- */
.bangalore-landing .final-contact-section .contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.bangalore-landing .contact-info h2 {
  font-size: clamp(26px, 3.2vw, 36px);
}

.bangalore-landing .contact-info p {
  color: var(--bl-muted);
  margin-top: 14px;
  font-size: 15px;
}

.bangalore-landing .contact-detail {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 15px;
}

.bangalore-landing .contact-detail div span {
  display: block;
  color: var(--bl-muted);
  font-size: 12px;
  margin-bottom: 2px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.bangalore-landing .contact-detail div strong {
  font-weight: 500;
}

.bangalore-landing .map-frame {
  margin-top: 28px;
  border: 1px solid var(--bl-line);
  border-radius: 6px;
  overflow: hidden;
  height: 200px;
}

.bangalore-landing .map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.4) invert(0.92) contrast(0.9);
}

.bangalore-landing .form-card {
  background: var(--bl-bg-panel);
  border: 1px solid var(--bl-line);
  border-radius: 6px;
  padding: 32px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.25);
}

@media (max-width: 780px) {
  .bangalore-landing .final-contact-section .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- FOOTER ---------- */
.bangalore-landing footer {
  padding: 40px 0;
  border-top: 1px solid var(--bl-line-soft);
  background: var(--bl-bg);
}

.bangalore-landing .footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--bl-muted);
  font-size: 13px;
}

.bangalore-landing .footer-links {
  display: flex;
  gap: 22px;
}

.bangalore-landing .footer-links a {
  text-decoration: none;
  color: var(--bl-muted);
  transition: color 0.15s ease;
}

.bangalore-landing .footer-links a:hover {
  color: var(--bl-text);
}

/* ---------- STICKY WHATSAPP ---------- */
.bangalore-landing .whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 60;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--bl-whatsapp);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.15s ease;
}

.bangalore-landing .whatsapp-btn:hover {
  transform: translateY(-2px);
}

.bangalore-landing .whatsapp-btn svg {
  width: 28px;
  height: 28px;
}
