/* Theme overrides inspired by template-pro-wizard.lovable.app */
:root {
  /* Core surface + text */
  --bg-primary: #ffffff;
  --bg-secondary: #faf7f0; /* warm white */
  --bg-light: #f3efe6;

  --text-primary: #141414; /* charcoal */
  --text-secondary: #6b6b6b; /* slate-ish */
  --text-light: #8a8a8a;
  --text-inverse: #ffffff;

  /* Brand accents (yellow + charcoal) */
  --primary-color: #141414;
  --primary-dark: #0f0f0f;
  --primary-light: #2a2a2a;

  --secondary-color: #fbbf24; /* yellow */
  --secondary-dark: #d97706;

  --accent-color: #fbbf24;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #0f0f0f 0%, #2a2a2a 100%);
  --gradient-secondary: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
  --gradient-hero: linear-gradient(135deg, #0f0f0f 0%, #141414 50%, #2a2a2a 100%);

  /* Borders */
  --border-color: #e7e2d7;

  /* Buttons: consistent MD + 5px corners (site-wide) */
  --btn-radius: 5px;
  --btn-pad-y: 10px;
  --btn-pad-x: 18px;
  --btn-font-size: 0.9rem;
}

/* Force Lovable palette even if legacy CSS sets variables */
html:root {
  --primary-color: #141414;
  --primary-dark: #0f0f0f;
  --primary-light: #2a2a2a;
  --secondary-color: #fbbf24;
  --secondary-dark: #d97706;
  --accent-color: #fbbf24;
  --bg-primary: #ffffff;
  --bg-secondary: #faf7f0;
  --bg-light: #f3efe6;
  --text-primary: #141414;
  --text-secondary: #6b6b6b;
  --text-light: #8a8a8a;
  --text-inverse: #ffffff;
  --gradient-primary: linear-gradient(135deg, #0f0f0f 0%, #2a2a2a 100%);
  --gradient-secondary: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
  --gradient-hero: linear-gradient(135deg, #0f0f0f 0%, #141414 50%, #2a2a2a 100%);
  --border-color: #e7e2d7;
  --btn-radius: 5px;
  --btn-pad-y: 10px;
  --btn-pad-x: 18px;
  --btn-font-size: 0.9rem;
}

/* ---------- Header (black like reference) ---------- */
.navbar {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px) !important;
  box-shadow: none !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.navbar.scrolled {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25) !important;
}

.logo-text h1,
.logo-text .logo-title {
  color: rgba(22, 22, 22, 0.95) !important;
  font-weight: 800 !important;
  letter-spacing: -0.01em;
}

.logo-text p {
  color: rgba(251, 191, 36, 0.95) !important;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 700 !important;
}

.nav-links a {
  /* color: rgba(255, 255, 255, 0.9) !important; */
}

.nav-links a::after {
  background: rgba(251, 191, 36, 0.95) !important;
}

.nav-links a:hover {
  color: rgba(251, 191, 36, 0.95) !important;
}

.cta-button .btn {
  background: rgba(251, 191, 36, 0.98) !important;
  color: rgba(20, 20, 20, 1) !important;
  border-radius: 5px !important;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25) !important;
  padding: var(--btn-pad-y) var(--btn-pad-x) !important;
  font-size: var(--btn-font-size) !important;
  margin-left: 2rem;
}

.cta-button .btn:hover {
  transform: translateY(-1px);
  background: rgba(245, 158, 11, 0.98) !important;
}

.menu-toggle span {
  background: rgba(255, 255, 255, 0.9) !important;
}

/* Dropdown menu match dark header */
.nav-dropdown-menu {
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(20, 20, 20, 0.12);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.25);
}

.nav-dropdown-menu a {
  color: rgba(20, 20, 20, 0.92) !important;
}

.nav-dropdown-menu a:hover {
  background: rgba(20, 20, 20, 0.06);
}

.logo-img {
  border-radius: 5px;
  background: #fff;
  padding: 4px;
}

.nav-dropdown-sep {
  background: rgba(20, 20, 20, 0.12);
}

/* ---------- Hero (Lovable) ---------- */
.hero-section.lovable-hero {
  background: var(--gradient-primary);
  color: var(--text-inverse);
}

.hero-section.lovable-hero .hero-pattern {
  opacity: 0.35;
}

.hero-section.lovable-hero {
  position: relative;
  overflow: hidden;
}

.lovable-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.55;
  pointer-events: none;
}

.lovable-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,15,15,0.65) 0%, rgba(20,20,20,0.55) 60%, rgba(42,42,42,0.45) 100%);
}

.hero-section.lovable-hero .container,
.hero-section.lovable-hero .lovable-hero-inner {
  position: relative;
  z-index: 2;
}

.lovable-hero-inner {
  padding: 112px 0 44px;
}

.lovable-hero-copy h1 {
  color: var(--text-inverse);
  font-size: clamp(2.4rem, 5vw, 2.5rem);
  line-height: 1.1;
  margin-bottom: 24px;
  text-transform: none;
}

.lovable-hero-copy p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.15rem;
  max-width: 720px;
  margin-bottom: 34px;
}

.lovable-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.lovable-hero-stats {
  margin-top: 32px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.hero-section.lovable-hero {
  min-height: 100vh;
}

.lovable-hero-form-card textarea {
  min-height: 88px;
}

.lovable-hero-stat-value {
  font-family: var(--font-primary);
  font-size: 2.1rem;
  color: var(--secondary-color);
  margin-bottom: 6px;
}

.lovable-hero-stat-label {
  font-family: var(--font-secondary);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

@media (min-width: 768px) {
  .lovable-hero-stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .lovable-hero-inner {
    padding: 120px 0 70px;
  }
  .lovable-hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Section backgrounds */
.bg-light {
  background-color: var(--bg-secondary);
}

/* Titles: charcoal + strong contrast */
.section-header h2,
h1, h2, h3, h4, h5, h6 {
  color: var(--text-primary);
}

/* Buttons: match yellow accent */
.btn-primary {
  background: var(--gradient-secondary);
}

/* Site-wide: all buttons medium + 5px radius */
.btn,
a.btn,
button.btn,
input[type="submit"].btn {
  border-radius: var(--btn-radius) !important;
  padding: var(--btn-pad-y) var(--btn-pad-x) !important;
  font-size: var(--btn-font-size) !important;
  line-height: 1.85 !important;
}

/* Yellow button (matches template) */
.btn-yellow {
  background: var(--secondary-color);
  border: 1px solid rgba(20, 20, 20, 0.12);
  color: var(--text-primary);
  border-radius: var(--btn-radius) !important;
  padding: var(--btn-pad-y) var(--btn-pad-x) !important;
}

.btn-yellow:hover {
  background: #f59e0b;
}

.btn-outline {
  border-color: var(--text-inverse);
}

/* ---------- CTA (Lovable) ---------- */
.lovable-cta {
  background: var(--secondary-color);
  position: relative;
  overflow: hidden;
  padding: 70px 0;
}

.lovable-cta::before,
.lovable-cta::after {
  content: "";
  position: absolute;
  border-radius: 9999px;
  background: rgba(217, 119, 6, 0.18);
  width: 380px;
  height: 380px;
  z-index: 0;
}

.lovable-cta::before {
  top: -140px;
  right: -140px;
}

.lovable-cta::after {
  bottom: -120px;
  left: -120px;
  width: 280px;
  height: 280px;
  background: rgba(217, 119, 6, 0.12);
}

.lovable-cta .container {
  position: relative;
  z-index: 1;
}

.lovable-cta-inner {
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: flex-start;
  justify-content: space-between;
}

.lovable-cta h2 {
  color: var(--text-primary);
  margin-bottom: 10px;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.lovable-cta p {
  color: rgba(20, 20, 20, 0.75);
  font-size: 1rem;
  margin: 0;
  max-width: 820px;
}

@media (min-width: 1024px) {
  .lovable-cta h2 {
    white-space: nowrap;
  }
  .lovable-cta p {
    max-width: none;
  }
}

.lovable-cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* CTA section buttons inherit global .btn sizing */

.btn-dark {
  background: var(--primary-color);
  color: var(--text-inverse);
  border-radius: var(--btn-radius) !important;
  padding: var(--btn-pad-y) var(--btn-pad-x) !important;
}

.btn-dark:hover {
  background: var(--primary-light);
}

.btn-outline-dark {
  background: transparent;
  border: 1px solid rgba(20, 20, 20, 0.35);
  color: var(--text-primary);
  border-radius: var(--btn-radius) !important;
  padding: var(--btn-pad-y) var(--btn-pad-x) !important;
}

.btn-outline-dark:hover {
  background: rgba(217, 119, 6, 0.18);
}

@media (min-width: 1024px) {
  .lovable-cta-inner {
    flex-direction: row;
    align-items: center;
  }
}

/* ---------- Platforms marquee ---------- */
.lovable-platforms {
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border-color);
  padding: 48px 0;
}

.lovable-platforms-title {
  font-family: var(--font-secondary);
  color: var(--text-secondary);
  text-align: center;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin: 0 0 22px 0;
}

.lovable-platform-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--border-color);
  margin-bottom: 28px;
}

.lovable-platform-tile {
  padding: 18px 12px;
  text-align: center;
  border-right: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  background: var(--bg-primary);
}

.lovable-platform-tile:nth-child(4n) {
  border-right: 0;
}

.lovable-platform-tile:nth-last-child(-n+4) {
  border-bottom: 0;
}

.lovable-platform-tile .lovable-platform-name {
  display: block;
  font-family: var(--font-primary);
  font-size: 1.05rem;
  color: rgba(20, 20, 20, 0.7);
}

.lovable-platform-tile .lovable-platform-meta {
  display: block;
  margin-top: 6px;
  font-family: var(--font-secondary);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(107, 107, 107, 0.55);
}

@media (max-width: 1024px) {
  .lovable-platform-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .lovable-platform-tile:nth-child(4n) {
    border-right: 1px solid var(--border-color);
  }
  .lovable-platform-tile:nth-child(2n) {
    border-right: 0;
  }
  .lovable-platform-tile:nth-last-child(-n+4) {
    border-bottom: 1px solid var(--border-color);
  }
  .lovable-platform-tile:nth-last-child(-n+2) {
    border-bottom: 0;
  }
}

/* ---------- Why India (Lovable cards) ---------- */
.lovable-why-india-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.lovable-why-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  padding: 18px;
}

.lovable-why-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-color);
  color: var(--secondary-color);
  margin-bottom: 12px;
}

.lovable-why-card h3 {
  margin: 0 0 8px 0;
  font-size: 0.98rem;
}

.lovable-why-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .lovable-why-india-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .lovable-why-india-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Hero media (dummy image slider) ---------- */
.lovable-hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
}

.lovable-hero-media-frame {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  padding: 10px;
}

.lovable-hero-media-frame img {
  width: 100%;
  height: auto;
  display: block;
}

.lovable-hero-media-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 12px;
}

.lovable-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
}

.lovable-dot.is-active {
  background: var(--secondary-color);
}

@media (min-width: 1024px) {
  .lovable-hero-inner {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
  }
  .lovable-hero-stats {
    grid-column: 1 / -1;
  }
}

.lovable-hero-form-card {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  padding: 18px;
  backdrop-filter: blur(6px);
  border-radius: 5px;
}

.lovable-hero-form-kicker {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 10px;
}

.lovable-hero-form-card h3 {
  margin: 0 0 12px 0;
  color: var(--text-inverse);
  font-size: 1.05rem;
}

.lovable-hero-form-card label {
  color: rgba(255, 255, 255, 0.75);
}

.lovable-hero-form-card input,
.lovable-hero-form-card textarea {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-inverse);
  border-color: rgba(255, 255, 255, 0.16);
  border-radius: 5px;
}

.lovable-hero-form-card input::placeholder,
.lovable-hero-form-card textarea::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.lovable-hero-form-submit {
  width: 100%;
  justify-content: center;
  margin-top: 12px;
  padding: var(--btn-pad-y) var(--btn-pad-x) !important;
  border-radius: 5px !important;
  font-size: var(--btn-font-size) !important;
}

@media (max-width: 1024px) {
  .lovable-hero-form {
    margin-top: 6px;
  }
}

/* ---------- Pointer fixes ---------- */
a,
button,
[role="button"] {
  cursor: pointer;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  min-width: 0;
}

.logo-section {
  min-width: 0;
  flex: 1 1 auto;
}

.logo-text {
  min-width: 0;
}

/* ---------- Header dropdown (Services) ---------- */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-control {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-dropdown-link {
  text-decoration: none;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /* width: 30px; */
  height: 30px;
  /* min-width: 30px; */
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text-primary);
  cursor: pointer;
  border-radius: 6px;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-dropdown-toggle:hover,
.nav-dropdown-toggle:focus-visible {
  background: rgba(20, 20, 20, 0.06);
  color: rgba(245, 158, 11, 0.98);
  outline: none;
}

.nav-dropdown.is-open .nav-dropdown-toggle {
  transform: rotate(180deg);
}

.nav-caret {
  font-size: 0.8em;
  opacity: 0.8;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.12);
  margin-top: 10px;
  padding: 10px;
  display: none;
  z-index: 2000;
}

.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -10px;
  height: 10px;
}

.nav-dropdown:hover .nav-dropdown-menu {
  display: block;
}

.nav-dropdown:focus-within .nav-dropdown-menu {
  display: block;
}

.nav-dropdown.is-open .nav-dropdown-menu {
  display: block;
}

.nav-dropdown-menu a {
  display: block;
  padding: 8px 10px;
  color: var(--text-primary);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  border-radius: 5px;
}

.nav-dropdown-menu a:hover {
  background: var(--bg-secondary);
}

.nav-dropdown-sep {
  height: 1px;
  background: var(--border-color);
  margin: 8px 4px;
}

@media (max-width: 768px) {
  .nav-dropdown-control {
    width: 100%;
    justify-content: flex-start;
    align-items: center;
  }

  .nav-dropdown-link {
    flex: 1 1 auto;
    min-width: 0;
    display: block;
  }

  .nav-dropdown-toggle {
    display: inline-flex;
  }

  .nav-links.is-open {
    display: flex !important;
    flex-direction: column;
    gap: 12px;
    position: absolute;
    top: calc(100% + 10px);
    left: auto !important;
    right: 0 !important;
    width: min(320px, calc(100vw - 28px)) !important;
    max-width: calc(100vw - 28px);
    margin: 0;
    padding: 18px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(20, 20, 20, 0.12);
    border-radius: 12px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
    z-index: 2000;
    box-sizing: border-box;
    overflow: visible;
  }

  .nav-links.is-open > li {
    width: 100%;
  }

  .nav-dropdown-menu {
    display: none;
  }

  .nav-dropdown.is-open .nav-dropdown-menu {
    display: block !important;
    position: static !important;
    box-shadow: none !important;
    border: 1px solid rgba(20,20,20,0.08) !important;
    border-radius: 8px !important;
    background: rgba(20,20,20,0.03) !important;
    margin-top: 6px !important;
    padding: 6px !important;
    min-width: 0 !important;
    max-height: 260px;
    overflow-y: auto;
  }
}

.lovable-marquee {
  overflow: hidden;
}

.lovable-marquee-track {
  display: flex;
  gap: 48px;
  align-items: center;
  animation: lovableMarquee 20s linear infinite;
  will-change: transform;
}

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

.lovable-marquee-item {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.lovable-platform-name {
  font-family: var(--font-primary);
  font-size: 1.3rem;
  color: rgba(20, 20, 20, 0.35);
  transition: color 0.2s ease;
  white-space: nowrap;
}

.lovable-marquee-item:hover .lovable-platform-name {
  color: var(--secondary-color);
}

.lovable-platform-meta {
  font-family: var(--font-secondary);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(107, 107, 107, 0.5);
}

@media (prefers-reduced-motion: reduce) {
  .lovable-marquee-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ---------- Services (border grid) ---------- */
.lovable-section-head {
  max-width: 920px;
  margin-bottom: 28px;
}

.lovable-section-head h2 {
  margin-bottom: 14px;
}

.lovable-services-grid {
  display: grid;
  gap: 16px !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 1024px) {
  .lovable-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .lovable-services-grid {
    grid-template-columns: 1fr;
  }
}

/* Lovable service tiles (anchor cards) */
.lovable-service-tile {
  display: block;
  padding: 26px 26px;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  background: var(--bg-primary);
}

.lovable-service-tile::before {
  content: none;
}

.lovable-service-tile:hover::before {
  transform: none;
}

.lovable-service-tile:hover {
  background: var(--bg-secondary);
}

.lovable-tile-icon {
  display: inline-flex;
  font-size: 1.6rem;
  color: var(--secondary-color);
  margin-bottom: 18px;
}

.lovable-service-tile h3 {
  margin: 0 0 10px 0;
  font-family: var(--font-primary);
  font-size: 0.98rem;
  color: var(--text-primary);
}

/* Slightly tighter defaults for data-heavy screens */
.service-card.lovable-service-card {
  padding: 22px !important;
  border-radius: 5px;
  transition: none !important;
  transform: none !important;
  box-shadow: none !important;
}

.service-card.lovable-service-card:hover {
  transform: none !important;
  box-shadow: none !important;
}

.lovable-service-tile p {
  margin: 0 0 16px 0;
  font-family: var(--font-secondary);
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.65;
  max-width: 52ch;
}

.lovable-tile-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--secondary-dark);
}

.lovable-service-tile:hover .lovable-tile-link {
  gap: 12px;
  transition: gap 0.15s ease;
}

/* ---------- About (two column + dark panel) ---------- */
.lovable-about {
  background: var(--bg-secondary);
}

.lovable-about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}

.lovable-about-left h2 {
  margin-bottom: 18px;
}

.lovable-about-left p {
  font-family: var(--font-secondary);
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 18px;
  font-size: 1.05rem;
}

.lovable-about-left strong {
  color: var(--text-primary);
  font-weight: 700;
}

.lovable-about-list {
  list-style: none;
  padding: 0;
  margin: 26px 0 26px 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.lovable-about-list li {
  position: relative;
  padding-left: 28px;
  font-family: var(--font-secondary);
  color: var(--text-primary);
  font-size: 0.95rem;
}

.lovable-about-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--secondary-color);
  font-weight: 800;
}

.lovable-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: var(--secondary-color);
  font-family: var(--font-secondary);
  font-weight: 700;
}

.lovable-link::after {
  content: "→";
  font-weight: 800;
}

.lovable-link:hover {
  gap: 14px;
}

.lovable-about-right {
  background: var(--primary-color);
  color: var(--text-inverse);
  padding: 48px;
}

.lovable-about-quote {
  display: flex;
  gap: 18px;
  margin-bottom: 34px;
}

.lovable-about-quote-bar {
  width: 4px;
  background: var(--secondary-color);
  flex-shrink: 0;
}

.lovable-about-quote p {
  margin: 0;
  font-family: var(--font-primary);
  font-size: 1.5rem;
  line-height: 1.4;
}

.lovable-about-pills {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.lovable-pill-value {
  font-family: var(--font-primary);
  color: var(--secondary-color);
  font-size: 1.4rem;
  margin-bottom: 6px;
}

.lovable-pill-label {
  font-family: var(--font-secondary);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

@media (min-width: 1024px) {
  .lovable-about-grid {
    grid-template-columns: 2fr 1fr;
    gap: 64px;
  }
}

@media (min-width: 640px) {
  .lovable-about-list {
    grid-template-columns: 1fr 1fr;
  }
}

/* ---------- Contact (Lovable) ---------- */
.lovable-contact {
  background: var(--bg-secondary);
  padding: 96px 0;
}

.lovable-contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
}

.lovable-contact-left h2 {
  margin-bottom: 18px;
}

.lovable-contact-left > p {
  font-family: var(--font-secondary);
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.75;
  margin-bottom: 34px;
}

.lovable-contact-items {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.lovable-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.lovable-contact-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-color);
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lovable-contact-item-label {
  margin: 0;
  font-family: var(--font-secondary);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(107, 107, 107, 0.7);
}

.lovable-contact-item-value {
  margin: 4px 0 0 0;
  font-family: var(--font-secondary);
  color: var(--text-primary);
  font-weight: 600;
  line-height: 1.5;
}

.lovable-contact-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  padding: 36px;
  border-radius: 5px;
}

.lovable-contact-card h3 {
  margin-bottom: 22px;
}

.lovable-form-field label {
  display: none;
}

.lovable-form-field input,
.lovable-form-field textarea {
  border-radius: 5px;
}

.lovable-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.lovable-form-field label {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-secondary);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(107, 107, 107, 0.75);
  font-weight: 700;
}

.lovable-form-field input,
.lovable-form-field textarea {
  width: 100%;
  border: 1px solid var(--border-color);
  padding: 14px 14px;
  border-radius: 5px;
  font-family: var(--font-secondary);
  outline: none;
}

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

.lovable-form-field input:focus,
.lovable-form-field textarea:focus {
  border-color: rgba(251, 191, 36, 0.65);
  box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.2);
}

.lovable-form-field--full {
  grid-column: 1 / -1;
}

.lovable-submit {
  width: 100%;
  margin-top: 18px;
  justify-content: center;
  border-radius: 5px !important;
  padding: var(--btn-pad-y) var(--btn-pad-x) !important;
  font-size: var(--btn-font-size) !important;
}

@media (min-width: 1024px) {
  .lovable-contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
  }
}

@media (min-width: 640px) {
  .lovable-form-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ---------- Inner page hero ---------- */
.lovable-page-hero {
  background: var(--gradient-primary);
  color: var(--text-inverse);
  padding: 70px 0 70px;
  margin-top: 80px; /* fixed navbar offset */
}

.lovable-page-hero .section-kicker {
  margin-bottom: 16px;
}

.lovable-page-hero h1 {
  color: var(--text-inverse);
  margin: 0 0 12px 0;
  font-size: clamp(1.65rem, 3.2vw + 1rem, 3rem);
  line-height: 1.15;
  word-wrap: break-word;
}

.lovable-page-hero p {
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  max-width: 880px;
  font-size: clamp(0.95rem, 0.35vw + 0.9rem, 1.1rem);
  line-height: 1.7;
}

@media (max-width: 992px) {
  .lovable-page-hero {
    padding: 56px 0 56px;
  }
}

@media (max-width: 768px) {
  .lovable-page-hero {
    padding: 48px 0 48px;
    margin-top: 80px;
  }
}

@media (max-width: 480px) {
  .lovable-page-hero {
    padding: 40px 0 40px;
  }
}

/* ---------- Hero with lead card (2-col grid) ---------- */
.hero-with-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
  gap: 32px;
  align-items: center;
}

.hero-with-card__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.lovable-page-hero .hero-with-card__copy p {
  max-width: none;
}

/* kw-lead-card — sidebar enquiry form (hero + SEO keyword pages) */
.kw-lead-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, .12);
}

.kw-lead-card h2 {
  font-size: 1rem;
  margin: 0 0 4px;
  color: var(--text-primary);
}

.kw-lead-card > p {
  margin: 0 0 12px;
  color: var(--text-secondary);
  font-size: .82rem;
  line-height: 1.45;
}

.kw-lead-card .lovable-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 7px;
}

.kw-lead-card input,
.kw-lead-card textarea {
  width: 100%;
  border: 1px solid rgba(15, 23, 42, .14);
  border-radius: 6px;
  padding: 7px 10px;
  font: inherit;
  font-size: .84rem;
  color: var(--text-primary);
  background: #fff;
  outline: none;
  transition: border-color 0.2s;
}

.kw-lead-card input:focus,
.kw-lead-card textarea:focus {
  border-color: var(--primary-color);
}

.kw-lead-card input[type="email"],
.kw-lead-card input[name="contact-city"],
.kw-lead-card textarea {
  grid-column: 1 / -1;
}

.kw-lead-card textarea {
  min-height: 52px;
  resize: vertical;
}

.kw-lead-card .lovable-submit {
  width: 100%;
  margin-top: 10px;
  padding: 9px 12px;
  font-size: .88rem;
}

@media (max-width: 960px) {
  .hero-with-card {
    grid-template-columns: 1fr;
  }

  .kw-lead-card .lovable-form-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Simple Lovable card helpers ---------- */
.lovable-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 5px;
}

/* Dark sections helper */
.section-dark {
  background: var(--primary-color);
  color: var(--text-inverse);
}

/* ---------- How it works (compact 4-up) ---------- */
.lovable-process-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.lovable-process-steps .step-card {
  padding: 22px 22px;
  border-right: 1px solid var(--border-color);
  min-height: 180px;
}

.lovable-process-steps .step-card:last-child {
  border-right: 0;
}

.lovable-process-steps .step-number {
  font-weight: 700;
  width: auto;
  height: auto;
  background: transparent;
  border-radius: 0;
  display: block;
  padding: 0;
  margin: 0 0 12px 0;
  color: rgba(20, 20, 20, 0.48);
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  line-height: 1;
}

.lovable-process-steps h3 {
  font-size: 1rem;
  margin: 0 0 10px 0;
}

.lovable-process-steps p {
  font-size: 0.9rem;
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .lovable-process-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .lovable-process-steps .step-card:nth-child(2) {
    border-right: 0;
  }
  .lovable-process-steps .step-card {
    border-bottom: 1px solid var(--border-color);
  }
  .lovable-process-steps .step-card:nth-child(3),
  .lovable-process-steps .step-card:nth-child(4) {
    border-bottom: 0;
  }
}

@media (max-width: 560px) {
  .lovable-process-steps {
    grid-template-columns: 1fr;
  }
  .lovable-process-steps .step-card {
    border-right: 0;
    border-bottom: 1px solid var(--border-color);
  }
  .lovable-process-steps .step-card:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 560px) {
  .navbar .container {
    align-items: flex-start;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .logo-text h1,
  .logo-text .logo-title {
    font-size: 0.95rem;
  }

  .logo-text p {
    display: none;
  }

  .cta-button .btn {
    padding: 8px 10px !important;
    font-size: 0.76rem !important;
  }

  .footer-logo-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-contact-item {
    gap: 12px;
  }
}

/* ---------- Industries (compact grid) ---------- */
.lovable-industries-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--border-color);
}

.lovable-industry-tile {
  background: var(--bg-primary);
  padding: 26px 18px;
  text-align: center;
  border-right: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.lovable-industry-tile:nth-child(4n) {
  border-right: 0;
}

.lovable-industry-tile:nth-last-child(-n+4) {
  border-bottom: 0;
}

.lovable-industry-tile i {
  font-size: 28px;
  color: rgba(20, 20, 20, 0.55);
  margin-bottom: 14px;
}

.lovable-industry-tile h3 {
  font-size: 0.95rem;
  margin: 0 0 6px 0;
}

.lovable-industry-tile span {
  display: inline-block;
  font-size: 0.8rem;
  color: rgba(217, 119, 6, 0.95);
  font-weight: 700;
}

@media (max-width: 1024px) {
  .lovable-industries-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .lovable-industry-tile:nth-child(4n) {
    border-right: 1px solid var(--border-color);
  }
  .lovable-industry-tile:nth-child(2n) {
    border-right: 0;
  }
  .lovable-industry-tile:nth-last-child(-n+4) {
    border-bottom: 1px solid var(--border-color);
  }
  .lovable-industry-tile:nth-last-child(-n+2) {
    border-bottom: 0;
  }
}

/* ---------- Testimonials (sharper contrast + grid) ---------- */
.section-dark {
  background: #0f0f0f;
}

.testimonial-card--dark {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 26px;
}

.testimonial-card--dark .testimonial-text {
  font-size: 1rem;
  line-height: 1.75;
}

.accreditation-card--dark i {
  color: var(--secondary-color);
  font-size: 26px;
  margin-bottom: 12px;
}

/* ---------- Service detail (right sidebar layout) ---------- */
.lovable-service-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 26px;
  align-items: start;
}

.lovable-service-main .lovable-section-head {
  margin-bottom: 22px;
}

.lovable-service-main .lovable-section-head h2 {
  margin-bottom: 10px;
}

.lovable-service-paragraphs p {
  margin: 0 0 12px 0;
  color: var(--text-secondary);
  line-height: 1.85;
  font-size: 0.95rem;
}

.lovable-service-paragraphs p:last-child {
  margin-bottom: 0;
}

.lovable-service-block-title {
  margin: 34px 0 16px 0;
}

.lovable-service-aside {
  display: grid;
  gap: 16px;
}

.lovable-aside-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  padding: 14px;
}

.lovable-aside-kicker {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 800;
  color: rgba(20, 20, 20, 0.6);
  margin-bottom: 10px;
}

.lovable-aside-card h3 {
  font-size: 1rem;
  margin: 0 0 10px 0;
}

.lovable-aside-card p {
  margin: 0 0 14px 0;
  font-size: 0.86rem;
}

.lovable-aside-actions {
  display: grid;
  gap: 10px;
}

.lovable-aside-actions .btn {
  width: 100%;
  justify-content: center;
  padding: 10px 12px;
  font-size: 0.9rem;
}

/* Sidebar actions use global button radius */
.lovable-inquiry-open {
  border-radius: 5px !important;
}

.lovable-aside-links {
  display: grid;
  gap: 10px;
  max-height: 240px;
  overflow: auto;
  padding-right: 6px;
}

.lovable-aside-links a {
  color: var(--text-primary);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
}

.lovable-aside-links a:hover {
  color: var(--secondary-dark);
}

.lovable-aside-more {
  display: inline-flex;
  margin-top: 12px;
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--secondary-dark);
}

/* ---------- Inquiry modal ---------- */
.lovable-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
}

.lovable-modal.is-open {
  display: block;
}

.lovable-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.lovable-modal__dialog {
  position: relative;
  max-width: 720px;
  width: calc(100% - 24px);
  margin: 70px auto;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  padding: 18px;
  border-radius: 5px;
}

.lovable-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border-color);
  background: var(--bg-primary);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  border-radius: 5px;
}

.lovable-modal__head {
  margin-bottom: 12px;
}

/* ---------- Global thin loader (forms) ---------- */
.lovable-thin-loader {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(1px);
}

.lovable-thin-loader.is-visible {
  display: flex;
}

.lovable-thin-loader__spinner {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.22);
  border-top-color: rgba(251, 191, 36, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  animation: lovableSpin 0.9s linear infinite;
}

@keyframes lovableSpin {
  to { transform: rotate(360deg); }
}

/* ---------- Simple thin scrollbar (Chrome-like) ---------- */
* {
  scrollbar-width: thin; /* Firefox */
  scrollbar-color: rgba(20, 20, 20, 0.35) rgba(20, 20, 20, 0.08); /* Firefox */
}

*::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

*::-webkit-scrollbar-track {
  background: rgba(20, 20, 20, 0.06);
}

*::-webkit-scrollbar-thumb {
  background-color: rgba(20, 20, 20, 0.28);
  border-radius: 999px;
  border: 2px solid rgba(20, 20, 20, 0.06);
}

*::-webkit-scrollbar-thumb:hover {
  background-color: rgba(20, 20, 20, 0.38);
}

/* ---------- Footer icons (Lovable style) ---------- */
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: transform 0.15s ease, background-color 0.15s ease, border-color 0.15s ease;
}

.footer-social a:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(251, 191, 36, 0.55);
}

.footer-social a i {
  font-size: 0.95rem;
}

.footer-social--inline {
  margin-top: 18px;
}

/* Footer logo row */
.footer-logo-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.footer-logo-img {
  display: block;
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 5px;
  object-fit: cover;
  background: #fff;
  padding: 4px;
  opacity: 1;
  visibility: visible;
  flex-shrink: 0;
}

.footer-logo-text h3 {
  margin: 0;
}

/* Footer typography + spacing polish */
.footer-logo-text .tagline {
  display: block;
  margin-top: 2px;
  color: rgba(251, 191, 36, 0.95);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-about {
  margin-top: 12px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* Ensure Get In Touch icons always visible/aligned */
.footer-contact-item {
  align-items: flex-start;
}

.footer-contact-item i {
  display: inline-flex;
  width: 18px;
  min-width: 18px;
  justify-content: center;
  color: rgba(251, 191, 36, 0.95) !important;
  margin-top: 3px;
}

.footer-contact-item span {
  color: rgba(255, 255, 255, 0.85);
  overflow-wrap: anywhere;
}

/* ---------- Header: WhatsApp + CTA row ---------- */
.navbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.navbar nav {
  position: relative;
  display: flex;
  align-items: center;
}

.header-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  /* padding: var(--btn-pad-y) var(--btn-pad-x); */
  padding: 7px 16px;
  border-radius: 5px;
  background: #25d366;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  text-decoration: none;
  font-size: var(--btn-font-size);
  font-weight: 700;
  transition: background 0.2s ease, transform 0.15s ease, filter 0.15s ease;
}

.header-whatsapp:hover {
  background: #20bd5a;
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.header-whatsapp i {
  font-size: 1.15rem;
  line-height: 1;
  color: #ffffff;
  font-family: "Font Awesome 6 Brands", sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

.header-whatsapp__label {
  letter-spacing: 0.04em;
}

@media (max-width: 992px) {
  .header-whatsapp__label {
    display: none;
  }
  .header-whatsapp {
    width: 40px;
    height: 40px;
    padding: 0;
    justify-content: center;
    border-radius: 5px;
  }
}

@media (max-width: 768px) {
  .navbar-actions {
    display: none;
  }

  .navbar-actions {
    gap: 8px;
  }

  .navbar .container {
    flex-wrap: nowrap;
    align-items: center;
    min-height: 72px;
    column-gap: 10px;
    row-gap: 0;
  }

  .logo-link {
    gap: 10px;
  }

  .logo-img {
    width: 44px;
    height: 44px;
    object-fit: cover;
  }

  .logo-text h1,
  .logo-text .logo-title {
    font-size: clamp(1rem, 2.8vw, 1.15rem);
    line-height: 1.2;
    white-space: normal;
  }

  .logo-text p {
    font-size: 0.64rem;
    letter-spacing: 0.12em;
  }

  .cta-button .btn {
    padding: 8px 12px !important;
    font-size: 0.8rem !important;
    white-space: nowrap;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    padding: 0;
  }

  .menu-toggle span {
    background: rgba(20, 20, 20, 0.92) !important;
  }

  .footer-grid {
    gap: 32px;
  }

  .footer-about {
    max-width: none;
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
  }

  .footer-credit {
    line-height: 1.8;
  }

  .footer-credit img {
    margin-top: 10px;
  }
}

/* ---------- Scroll to top (clean minimal) ---------- */
.lovable-scrolltop {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 44px;
  height: 44px;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(20, 20, 20, 0.92);
  color: rgba(251, 191, 36, 0.98);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  z-index: 99999;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
}

.lovable-scrolltop.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.lovable-scrolltop:hover {
  background: rgba(30, 30, 30, 0.98);
  color: #fde68a;
}

.lovable-scrolltop i {
  font-size: 15px;
}

@media (prefers-reduced-motion: reduce) {
  .lovable-scrolltop {
    transition: none;
  }
}

@media (max-width: 640px) {
  .lovable-scrolltop {
    right: 14px;
    bottom: 14px;
    width: 42px;
    height: 42px;
  }
}

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

.footer a:hover {
  color: rgba(251, 191, 36, 0.95);
}

.lovable-contact-item-value a {
  color: inherit;
  text-decoration: none;
}

.lovable-contact-item-value a:hover {
  color: rgba(251, 191, 36, 0.95);
  text-decoration: underline;
}


.lovable-why-box {
  background: #0f0f0f;
  color: var(--text-inverse);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px;
  margin-top: 18px;
}

.lovable-why-box h3 {
  margin: 0 0 8px 0;
  color: var(--text-inverse);
  font-size: 1rem;
}

.lovable-why-box p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  line-height: 1.7;
}

@media (min-width: 1024px) {
  .lovable-service-layout {
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 34px;
  }

  .lovable-service-aside {
    position: sticky;
    top: 100px;
  }
}

.lovable-service-pager {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding-top: 22px;
  margin-top: 26px;
  border-top: 1px solid var(--border-color);
}

.lovable-service-pager-link {
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
  text-decoration: none;
  color: inherit;
}

.lovable-service-pager-kicker {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 800;
  color: rgba(20, 20, 20, 0.5);
}

.lovable-service-pager-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.lovable-service-pager-link:hover .lovable-service-pager-title {
  color: var(--secondary-dark);
}

@media (max-width: 640px) {
  .lovable-service-pager {
    grid-template-columns: 1fr;
  }
}

.section-header--on-dark h2,
.section-header--on-dark .subtitle,
.section-header--on-dark {
  color: var(--text-inverse);
}

/* Accreditations heading on dark: center + white */
.section-dark .accreditations-section .lovable-section-head {
  text-align: center;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.section-dark .accreditations-section .lovable-section-head h2 {
  color: rgba(255, 255, 255, 0.95);
}

.section-kicker {
  display: inline-block;
  background: var(--secondary-color);
  color: var(--text-primary);
  padding: 6px 12px;
  margin-bottom: 18px;
  font-family: var(--font-secondary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.testimonial-card--dark {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.testimonial-card--dark .testimonial-text {
  color: rgba(255, 255, 255, 0.8);
}

.testimonial-card--dark .testimonial-text::before {
  color: var(--secondary-color);
  opacity: 0.35;
}

.testimonial-card--dark .author-details h4 {
  color: var(--text-inverse);
  margin: 0 0 4px 0;
}

.testimonial-card--dark .author-details p {
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}

.accreditation-card--dark {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.accreditation-card--dark h4 {
  color: var(--text-inverse);
}

.accreditation-card--dark p {
  color: rgba(255, 255, 255, 0.7);
}

.accreditations-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.accreditation-card--dark {
  padding: 22px;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.accreditation-card--dark:nth-child(4n) {
  border-right: 0;
}

.accreditation-card--dark:nth-last-child(-n+4) {
  border-bottom: 0;
}

.accreditation-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(251, 191, 36, 0.28);
  background: rgba(251, 191, 36, 0.08);
  margin-bottom: 14px;
}

.accreditation-icon i {
  color: var(--secondary-color);
  font-size: 18px;
  margin: 0;
}

@media (max-width: 1024px) {
  .accreditations-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .accreditation-card--dark:nth-child(4n) {
    border-right: 1px solid rgba(255, 255, 255, 0.12);
  }
  .accreditation-card--dark:nth-child(2n) {
    border-right: 0;
  }
  .accreditation-card--dark:nth-last-child(-n+4) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
  .accreditation-card--dark:nth-last-child(-n+2) {
    border-bottom: 0;
  }
}

/* ---------- Global responsive (mobile / tablet / wide & ultra-wide) ---------- */
html {
  overflow-x: clip;
}

body {
  overflow-x: clip;
}

img,
video,
iframe,
svg {
  max-width: 100%;
  height: auto;
}

/* Fluid horizontal padding on all viewports */
.container {
  width: 100%;
  /* max-width: min(1140px, calc(100% - 2rem)); */
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(14px, 3vw, 24px);
  padding-right: clamp(14px, 3vw, 24px);
}

/* Large desktop / LED: keep readable line length, centered */
@media (min-width: 1600px) {
  .container {
    max-width: min(1440px, 100% - 4rem);
  }
}

@media (min-width: 1920px) {
  .container {
    max-width: min(1600px, 100% - 5rem);
  }
}

/* Tablet: navbar row breathing room */
@media (max-width: 1024px) {
  .navbar .container {
    flex-wrap: wrap;
    row-gap: 10px;
    height: auto;
    min-height: 72px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

/* Floating WhatsApp Button */
.floating-whatsapp {
  position: fixed;
  bottom: 100px;       /* Bottom se distance */
  right: 20px;        /* Right side se distance */
  width: 60px;        /* Button ki width */
  height: 60px;       /* Button ki height */
  background-color: #25D366; /* WhatsApp Green */
  color: #fff;
  border-radius: 50%;  /* Circle shape */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;    /* Icon ka size */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 9999;      /* Sabse upar rehne ke liye */
  transition: all 0.3s ease;
  text-decoration: none;
}

/* Hover Effect */
.floating-whatsapp:hover {
  background-color: #128C7E; /* Darker Green on Hover */
  transform: scale(1.1);     /* Thoda bada ho jayega */
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.4);
}

/* Mobile Adjustment */
@media (max-width: 768px) {
  .floating-whatsapp {
      bottom: 115px;
      right: 20px;
      width: 50px;
      height: 50px;
      font-size: 26px;
  }
  .footer p {
    display: block;
}
}

@media (max-width: 768px) {
  .navbar .container {
    flex-wrap: nowrap;
    align-items: center;
    row-gap: 0;
  }
}

@media (max-width: 560px) {
  .navbar .container {
    align-items: flex-start;
  }
}

/* Premium Interactive FAQ Accordion Styles */
.lovable-faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lovable-faq-item {
  background: #ffffff;
  border: 1px solid rgba(229, 231, 235, 0.7);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
  transition: all 0.25s ease;
}

.lovable-faq-item[open] {
  border-color: rgba(245, 158, 11, 0.4);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.06);
}

.lovable-faq-question {
  display: block !important;
  padding: 0 !important;
  margin: 0 !important;
  list-style: none !important;
  cursor: pointer;
  user-select: none;
}

details.lovable-faq-item summary::-webkit-details-marker,
details summary::-webkit-details-marker,
summary::-webkit-details-marker {
  display: none !important;
}

details.lovable-faq-item summary::marker,
details summary::marker,
summary::marker {
  display: none !important;
  content: "" !important;
}

details.lovable-faq-item summary,
details summary,
summary {
  list-style: none !important;
  list-style-type: none !important;
}


.lovable-faq-question-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: all 0.2s ease;
}

.lovable-faq-question-inner:hover {
  color: var(--primary-color);
  background: rgba(245, 158, 11, 0.02);
}


.lovable-faq-icon {
  font-size: 0.9rem;
  color: #9ca3af;
  transition: transform 0.25s ease;
}

.lovable-faq-item[open] .lovable-faq-icon {
  transform: rotate(180deg);
  color: var(--primary-color);
}

.lovable-faq-answer {
  padding: 0 24px 20px 24px;
  border-top: 1px solid rgba(229, 231, 235, 0.5);
  background: #fafafa;
}

.lovable-faq-answer p {
  margin: 12px 0 0 0;
  font-family: var(--font-secondary);
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.lovable-faq-item[open] .lovable-faq-answer {
  animation: slideDown 0.25s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =====================================================
   AEO: Quick Answer Box — featured snippet optimized
   ===================================================== */
.aeo-quick-answer {
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
  border-left: 4px solid #f59e0b;
  border-radius: 0 10px 10px 0;
  padding: 20px 22px;
  margin: 0 0 32px 0;
}

.aeo-quick-answer__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #92400e;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}

.aeo-quick-answer__question {
  font-size: 1rem;
  font-weight: 600;
  color: #1e293b;
  margin: 0 0 8px 0;
  line-height: 1.4;
}

.aeo-quick-answer__text {
  font-size: 0.95rem;
  color: #374151;
  line-height: 1.65;
  margin: 0;
}

/* =====================================================
   E-E-A-T: Trust / Credentials Section
   ===================================================== */
.eeat-trust-section {
  background: #f8fafc;
  border-radius: 14px;
  padding: 44px 40px;
  margin: 40px 0;
}

.eeat-trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 28px;
}

.eeat-trust-card {
  background: #fff;
  border-radius: 10px;
  padding: 22px 20px;
  border: 1px solid #e2e8f0;
  text-align: center;
  transition: box-shadow 0.2s ease;
}

.eeat-trust-card:hover {
  box-shadow: 0 6px 24px rgba(30, 64, 175, 0.09);
}

.eeat-trust-card__icon {
  width: 52px;
  height: 52px;
  background: #fef3c7;
  color: #d97706;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin: 0 auto 14px;
}

.eeat-trust-card__value {
  font-size: 1.65rem;
  font-weight: 800;
  color: #141414;
  line-height: 1.1;
  margin-bottom: 4px;
}

.eeat-trust-card__label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #475569;
  margin-bottom: 4px;
}

.eeat-trust-card__sub {
  font-size: 0.75rem;
  color: #94a3b8;
}

.eeat-cert-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.eeat-cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1.5px solid #fde68a;
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 0.83rem;
  font-weight: 600;
  color: #141414;
}

.eeat-cert-badge i {
  color: #f59e0b;
  font-size: 15px;
}

@media (max-width: 640px) {
  .eeat-trust-section {
    padding: 28px 18px;
  }
  .eeat-trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .eeat-trust-card__value {
    font-size: 1.35rem;
  }
}

/* ===================================================
   REDESIGN — Navbar · Hero · Footer · E-E-A-T
   =================================================== */

/* --- Navbar: dark CTA button --- */
.cta-button .btn {
  background: #141414 !important;
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(0,0,0,0.22) !important;
}
.cta-button .btn:hover {
  background: #000000 !important;
  box-shadow: 0 6px 20px rgba(0,0,0,0.32) !important;
}
.navbar {
  border-bottom: 1px solid rgba(0,0,0,0.08) !important;
}

/* --- Hero: standard height (remove 100vh) --- */
.hero-section.lovable-hero {
  min-height: 0 !important;
}
.lovable-hero-inner {
  padding: 88px 0 56px !important;
}
@media (max-width: 768px) {
  .lovable-hero-inner {
    padding: 100px 0 44px !important;
  }
}

/* Trust badge row above h1 */
.lovable-hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}
.hero-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.76rem;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 100px;
  padding: 5px 13px;
  letter-spacing: 0.02em;
}
.hero-trust-badge i {
  color: #fbbf24;
  font-size: 0.72rem;
}

/* Stats are now inside copy col — reset grid-column override */
.lovable-hero-copy .lovable-hero-stats {
  grid-column: auto !important;
}

/* --- White consultation form card --- */
.lovable-hero-form-card {
  background: #ffffff !important;
  border: none !important;
  border-radius: 14px !important;
  padding: 28px 24px !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
  box-shadow: 0 20px 60px rgba(0,0,0,0.32), 0 0 0 1px rgba(255,255,255,0.05) !important;
}
.lovable-hero-form-kicker {
  display: inline-block !important;
  background: #f3f4f6 !important;
  color: #141414 !important;
  padding: 3px 10px !important;
  border-radius: 5px !important;
  margin-bottom: 10px !important;
}
.lovable-hero-form-card h3 {
  color: #111827 !important;
  font-size: 1.15rem !important;
  margin-bottom: 4px !important;
}
.lovable-hero-form-sub {
  font-size: 0.82rem;
  color: #6b7280;
  margin: 0 0 14px 0;
}
.lovable-hero-form-card label {
  color: #374151 !important;
}
.lovable-hero-form-card input,
.lovable-hero-form-card textarea {
  background: #f9fafb !important;
  color: #111827 !important;
  border-color: #e5e7eb !important;
}
.lovable-hero-form-card input:focus,
.lovable-hero-form-card textarea:focus {
  border-color: #fbbf24 !important;
  box-shadow: 0 0 0 3px rgba(251,191,36,0.2) !important;
}
.lovable-hero-form-card input::placeholder,
.lovable-hero-form-card textarea::placeholder {
  color: #9ca3af !important;
}
.lovable-hero-form-submit {
  background: #141414 !important;
  color: #ffffff !important;
  width: 100% !important;
  justify-content: center !important;
  margin-top: 14px !important;
}
.lovable-hero-form-submit:hover {
  background: #000000 !important;
}
.lovable-hero-form-note {
  font-size: 0.73rem;
  color: #9ca3af;
  text-align: center;
  margin: 10px 0 0 0;
}
.lovable-hero-form-note i {
  color: #10b981;
}

/* --- Footer: dark redesign --- */
.footer {
  background: #141414 !important;
  padding-top: 0 !important;
}

/* Gold accent stripe at top */
.footer-accent-bar {
  height: 3px;
  background: linear-gradient(90deg, #f59e0b 0%, #fbbf24 50%, #f59e0b 100%);
  width: 100%;
}

/* Clean 4-column grid */
.footer-grid--clean {
  grid-template-columns: 1.5fr 0.8fr 1fr 1fr !important;
  gap: 40px !important;
  padding: 56px 0 40px !important;
}

/* Heading underline: gold */
.footer-section h4::after {
  background: #f59e0b !important;
}

/* ISO badge in brand column */
.footer-iso-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 14px 0;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  border: 1px solid rgba(245,158,11,0.3);
  border-radius: 5px;
  padding: 6px 12px;
}
.footer-iso-badge i {
  color: #f59e0b;
}

/* View All Services link */
.footer-view-all {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 14px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #fbbf24;
  text-decoration: none;
  transition: gap 0.15s ease;
}
.footer-view-all:hover {
  gap: 11px;
  color: #fde68a;
}
.footer-view-all i {
  font-size: 0.72rem;
}

/* Footer bottom: 2-row flex layout */
.footer-bottom--flex {
  flex-direction: column !important;
  gap: 12px !important;
  text-align: center !important;
  padding: 20px 0 24px !important;
}

.footer-policy-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 20px;
}
.footer-policy-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-policy-links a:hover {
  color: #fbbf24;
}

/* Footer links: add chevron indicator */
.footer-links a::before {
  content: "›";
  margin-right: 7px;
  color: #f59e0b;
  font-weight: 700;
}

/* Responsive: 2 columns at tablet */
@media (max-width: 1024px) {
  .footer-grid--clean {
    grid-template-columns: 1fr 1fr !important;
    gap: 32px !important;
    padding: 48px 0 36px !important;
  }
}
@media (max-width: 640px) {
  .footer-grid--clean {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
    padding: 40px 0 28px !important;
  }
}

/* --- E-E-A-T section: dark navy redesign --- */
.eeat-section--navy {
  background: #0d1b2e;
  padding: 72px 0;
}
.eeat-section--navy .lovable-section-head h2,
.eeat-section--navy h2 {
  color: #ffffff;
}
.eeat-section--navy .lovable-section-head p.subtitle {
  color: rgba(255,255,255,0.68);
}
.eeat-section--navy .eeat-trust-card {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.1);
}
.eeat-section--navy .eeat-trust-card:hover {
  background: rgba(255,255,255,0.09);
  box-shadow: 0 6px 24px rgba(0,0,0,0.35);
}
.eeat-section--navy .eeat-trust-card__icon {
  background: rgba(245,158,11,0.15);
  color: #fbbf24;
}
.eeat-section--navy .eeat-trust-card__value {
  color: #fbbf24;
}
.eeat-section--navy .eeat-trust-card__label {
  color: rgba(255,255,255,0.9);
}
.eeat-section--navy .eeat-trust-card__sub {
  color: rgba(255,255,255,0.48);
}
.eeat-section--navy .eeat-cert-badges {
  justify-content: center;
}
.eeat-section--navy .eeat-cert-badge {
  background: rgba(255,255,255,0.06);
  border-color: rgba(245,158,11,0.45);
  color: rgba(255,255,255,0.85);
}
.eeat-section--navy .eeat-cert-badge i {
  color: #f59e0b;
}

