/* =====================================================
   AGARWAL LOGISTICS PACKERS & MOVERS â€” MASTER STYLESHEET
   Red (#eb2027) + Yellow/Orange (#a9dcdf) Theme
   Fonts: Nunito (body) + Raleway (headings)
===================================================== */

/* â”€â”€ CSS Variables â”€â”€ */
:root {
  --navy: #36D8E9;
  --navy-dark: #b81e16;
  --navy-light: #e84040;
  --gold: #a9dcdf;
  --gold-dark: #e09a1e;
  --gold-light: #fcc85c;
  --white: #ffffff;
  --off-white: #fff9f0;
  --gray-light: #f0e0cc;
  --gray: #6b7280;
  --gray-dark: #333333;
  --text: #2d3748;
  --black: #1a1a1a;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --radius: 8px;
  --radius-sm: 4px;
  --transition: 0.3s ease;
  --container: 1200px;
  --font-body: 'Nunito', sans-serif;
  --font-heading: 'Raleway', sans-serif;
}

/* â”€â”€ Reset â”€â”€ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; outline: none; font-family: var(--font-body); }
input, textarea, select { font-family: var(--font-body); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  text-align: center;
  margin-bottom: 8px;
}
.section-subtitle {
  text-align: center;
  color: var(--gray);
  font-size: 1.05rem;
  margin-bottom: 48px;
}
.center-btn {
  text-align: center;
  margin-top: 32px;
}
.btn-outline {
  display: inline-block;
  padding: 12px 32px;
  border: 2px solid var(--navy);
  color: var(--navy);
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  transition: all var(--transition);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}
.hp-field { display: none !important; }
.req { color: #e53e3e; font-weight: 700; }

/* â”€â”€ AOS-like fade-in â”€â”€ */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}
[data-aos="fade-right"] { transform: translateX(-30px); }
[data-aos="fade-right"].aos-animate { transform: translateX(0); }
[data-aos="fade-left"] { transform: translateX(30px); }
[data-aos="fade-left"].aos-animate { transform: translateX(0); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SECTION 1 â€” TOP BAR
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.top-bar {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 6px 0;
  font-size: 12px;
  letter-spacing: 0.3px;
}
.top-bar p { margin: 0; }

/* Spacer to compensate for fixed header */
.header-spacer {
  height: 110px; /* approximate header height */
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SECTION 2 â€” FIXED HEADER
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.main-header {
  background: var(--white);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: box-shadow var(--transition);
}
.main-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}
.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 8px;
  padding-bottom: 8px;
}
.logo-img {
  max-height: 60px;
  width: auto;
}
.logo-group {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-icon-svg {
  flex-shrink: 0;
  line-height: 0;
}
.logo-text {
  display: flex;
  flex-direction: column;
}
.company-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--navy);
  line-height: 1.15;
}
.logo-agarwal {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: 1px;
}
.logo-packers {
  font-size: 1rem;
  font-weight: 800;
  color: var(--gray-dark);
  letter-spacing: 0.5px;
}
.company-tagline {
  font-size: 0.7rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy);
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all var(--transition);
  white-space: nowrap;
}
.phone-btn:hover {
  background: var(--gold-dark);
  transform: scale(1.04);
}
.phone-icon { font-size: 1.1rem; }

/* Navigation */
.main-nav {
  background: var(--navy);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-links {
  display: flex;
  gap: 0;
}
.nav-links li a {
  display: block;
  padding: 10px 18px;
  color: var(--white);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  transition: all var(--transition);
}
.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links li a:hover::after,
.nav-links li a.active::after {
  width: 70%;
}
.nav-links li a.active {
  color: var(--gold);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  background: transparent;
}
.hamburger span {
  width: 26px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SECTION 3 â€” HERO SECTION (bestpackers style)
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.hero {
  background: var(--white);
  padding: 0;
  min-height: auto;
}
.hero-grid {
  padding: 0;
}
.quote-panel-wrapper {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 24px 0 32px;
}
.quote-title {
  font-family: var(--font-heading);
  color: #0e1a35;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 16px;
  padding-left: 8px;
}
.quote-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

/* Vertical Service Tabs */
.quote-tabs-vertical {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--navy);
}
.qt-vtab {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--white);
  background: var(--navy);
  border: none;
  border-left: 4px solid transparent;
  text-align: left;
  cursor: pointer;
  transition: all var(--transition);
}
.qt-vtab:hover {
  background: var(--navy-dark);
}
.qt-vtab.active {
  background: var(--gold);
  color: var(--gray-dark);
  border-left-color: var(--navy-dark);
}
.qt-vtab-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
}
.qt-vtab.active .qt-vtab-icon {
  background: rgba(0,0,0,0.08);
}
.qt-vtab-text {
  line-height: 1.2;
}

/* Form Area */
.quote-form-area {
  background: var(--gold);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.quote-form {
  width: 100%;
}
.form-group {
  margin-bottom: 14px;
}
.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--gray-dark);
  margin-bottom: 4px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gold-dark);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--gray-dark);
  transition: border-color var(--transition), box-shadow var(--transition);
  background: var(--gold);
}
.form-group input::placeholder {
  color: #7a6530;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(235,32,39,0.15);
  outline: none;
  background: var(--white);
}
.form-group textarea { resize: vertical; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.radio-group {
  display: flex;
  gap: 20px;
  margin-top: 4px;
}
.radio-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
}
.radio-label input[type="radio"] {
  width: auto;
  accent-color: var(--navy);
}
.error-msg {
  color: #c4181e;
  font-size: 0.75rem;
  font-weight: 600;
  display: none;
  margin-top: 3px;
}
.error-msg.show { display: block; }

.submit-btn {
  width: 100%;
  padding: 16px;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  margin-top: 8px;
  border: none;
  cursor: pointer;
}
.submit-btn:hover {
  background: var(--navy-dark);
  transform: scale(1.02);
  box-shadow: 0 4px 15px rgba(235,32,39,0.4);
}
.submit-btn:active { transform: scale(0.98); }

/* Logo sup style */
.logo-sup {
  font-size: 0.55em;
  vertical-align: super;
  color: var(--gold-dark);
  font-weight: 700;
  font-style: italic;
  margin-left: 2px;
}

/* Toast */
.toast {
  position: fixed;
  top: 100px;
  right: 30px;
  padding: 16px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  z-index: 9999;
  opacity: 0;
  transform: translateX(100px);
  transition: all 0.4s ease;
  pointer-events: none;
  box-shadow: var(--shadow-lg);
}
.toast.show {
  opacity: 1;
  transform: translateX(0);
}
.toast.success {
  background: #d4edda;
  color: #155724;
  border-left: 5px solid #28a745;
}
.toast.error {
  background: #f8d7da;
  color: #721c24;
  border-left: 5px solid #dc3545;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SECTION 4 â€” BRANCHES TICKER
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.branches-ticker {
  background: var(--gold);
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.ticker-label {
  background: var(--navy);
  color: var(--white);
  padding: 14px 24px;
  font-weight: 800;
  font-size: 0.95rem;
  white-space: nowrap;
  z-index: 2;
  flex-shrink: 0;
}
.ticker-wrap {
  overflow: hidden;
  flex: 1;
}
.ticker-content {
  display: flex;
  gap: 0;
  animation: tickerScroll 05s linear infinite;
  white-space: nowrap;
}
.ticker-content span {
  padding: 14px 16px;
  font-size: 14px;
  color: var(--white);
  font-weight: 600;
  flex-shrink: 0;
}
.ticker-content span::after {
  content: ' | ';
  color: rgba(255,255,255,0.5);
}
.branches-ticker:hover .ticker-content {
  animation-play-state: paused;
}
@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SECTION 5 â€” ABOUT SECTION
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.about-section {
  padding: 80px 0;
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.about-left h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 28px;
}
.highlight-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
}
.badge-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  background: var(--off-white);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.badge-item:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.badge-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}
.badge-item div {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--text);
}
.badge-item strong {
  color: var(--navy);
  display: block;
  margin-bottom: 2px;
}
.about-list {
  list-style: none;
  margin-bottom: 28px;
}
.about-list li {
  padding: 8px 0 8px 28px;
  position: relative;
  font-size: 0.95rem;
  color: var(--text);
}
.about-list li::before {
  content: 'âœ“';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 900;
  font-size: 1.1rem;
}

/* About Right */
.about-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.about-illustration {
  max-width: 400px;
}
.moving-house-svg {
  width: 100%;
  height: auto;
  animation: houseFloat 4s ease-in-out infinite;
}
@keyframes houseFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(1deg); }
}
.counter-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  width: 100%;
}
.counter-item {
  text-align: center;
  padding: 18px 8px;
  background: var(--navy);
  border-radius: var(--radius);
  color: var(--white);
  transition: transform var(--transition);
}
.counter-item:hover { transform: translateY(-4px); }
.counter-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
}
.counter-suffix {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--gold);
}
.counter-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SECTION 6 â€” HOW IT WORKS
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.how-it-works {
  background: var(--off-white);
  padding: 80px 0;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 16px;
}
.step-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  border-left: 4px solid var(--navy);
  box-shadow: var(--shadow);
  position: relative;
  transition: all var(--transition);
}
.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.step-number {
  position: absolute;
  top: -16px;
  right: 20px;
  width: 36px;
  height: 36px;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(245,166,35,0.3);
}
.step-icon {
  font-size: 2.5rem;
  margin-bottom: 14px;
}
.step-card h3 {
  font-family: var(--font-heading);
  color: var(--navy);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.step-card p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.6;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SECTION 7 â€” SERVICE CITIES
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.service-cities {
  padding: 80px 0;
  background: var(--white);
}
.cities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.cities-grid a {
  padding: 12px 16px;
  font-size: 0.95rem;
  color: var(--navy);
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.cities-grid a:hover {
  color: var(--gold);
  background: var(--off-white);
  padding-left: 24px;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SECTION 8 â€” UNIQUE FEATURES (Tabbed)
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.unique-section {
  padding: 80px 0;
  background: var(--off-white);
}
.feature-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 36px;
}
.ft-tab {
  padding: 12px 28px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
  background: var(--white);
  border-radius: var(--radius);
  transition: all var(--transition);
  border: 2px solid transparent;
}
.ft-tab:hover {
  border-color: var(--gold);
}
.ft-tab.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  position: relative;
}
.ft-tab.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: var(--gold);
}
.fp-panel { display: none; }
.fp-panel.active { display: block; animation: fadeIn 0.4s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.feature-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.fc-icon {
  font-size: 3rem;
  margin-bottom: 14px;
}
.feature-card h4 {
  font-family: var(--font-heading);
  color: var(--navy);
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 0.88rem;
  color: var(--gray);
}

.adv-list {
  max-width: 700px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 40px;
  box-shadow: var(--shadow);
  counter-reset: adv-counter;
}
.adv-list li {
  padding: 12px 0 12px 12px;
  border-bottom: 1px solid var(--gray-light);
  font-size: 0.95rem;
  line-height: 1.6;
  list-style-type: decimal;
}
.adv-list li:last-child { border-bottom: none; }
.adv-list li strong { color: var(--navy); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SECTION 9 â€” WHY BIPM
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.why-bipm {
  padding: 80px 0;
  background: var(--white);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 16px;
}
.stat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 16px;
  text-align: center;
  box-shadow: var(--shadow);
  border-top: 3px solid transparent;
  transition: all var(--transition);
}
.stat-card:hover {
  border-top-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.stat-icon {
  font-size: 2.4rem;
  margin-bottom: 10px;
  display: block;
}
.stat-card p {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SECTION 10 â€” TESTIMONIALS
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.testimonials-section {
  padding: 80px 0;
  background: var(--off-white);
}
.rating-badge {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gold-dark);
  margin-bottom: 36px;
}
.testimonial-slider {
  position: relative;
  overflow: hidden;
  margin: 0 50px;
}
.slider-track {
  display: flex;
  transition: transform 0.5s ease;
}
.testimonial-card {
  min-width: 100%;
  padding: 40px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  box-sizing: border-box;
}
.quote-icon {
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
}
.testi-text {
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.8;
  font-style: italic;
  max-width: 600px;
  margin: 0 auto 24px;
}
.testi-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.testi-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testi-author div { text-align: left; }
.testi-author strong {
  display: block;
  color: var(--navy);
  font-size: 1rem;
}
.testi-author span {
  font-size: 0.82rem;
  color: var(--gray);
}
.stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
}

/* Slider arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: all var(--transition);
}
.slider-arrow:hover {
  background: var(--gold);
  color: var(--navy);
}
.left-arrow { left: -50px; }
.right-arrow { right: -50px; }

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.slider-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray-light);
  cursor: pointer;
  transition: all var(--transition);
}
.slider-dots .dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SECTION 11 â€” SEARCH BY CITY
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.search-city {
  padding: 80px 0;
  background: var(--white);
}
.city-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}
.city-links a {
  padding: 8px 12px;
  font-size: 0.88rem;
  color: var(--text);
  font-weight: 600;
  transition: color var(--transition);
}
.city-links a:hover {
  color: var(--gold);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SECTION 12 â€” PARTNER LOGOS
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.partners-section {
  padding: 80px 0 40px;
  background: var(--off-white);
}
.logos-marquee {
  overflow: hidden;
  margin-top: 32px;
}
.logos-track {
  display: flex;
  gap: 24px;
  animation: logosScroll 30s linear infinite;
}
.logos-track:hover { animation-play-state: paused; }
.logo-placeholder {
  flex-shrink: 0;
  width: 160px;
  height: 80px;
  background: #fff;
  border:1px solid #eee;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray);
  overflow:hidden;
}
@keyframes logosScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SECTION 13 â€” FOOTER
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.main-footer {
  background: #0e1a35;
  color: var(--white);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-logo-img {
  max-height: 70px;
  width: auto;
  background: rgba(255,255,255,0.95);
  border-radius: 6px;
  padding: 6px;
}
.footer-logo .logo-icon {
  width: 42px;
  height: 42px;
  font-size: 1.3rem;
  background: var(--gold);
  color: var(--navy);
}
.footer-logo span {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
}
.footer-col p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--gold);
  position: relative;
  padding-bottom: 10px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background: var(--gold);
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  transition: all var(--transition);
}
.footer-col ul li a:hover {
  color: var(--gold);
  padding-left: 6px;
}
.contact-list li {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
}
.contact-list li a { color: rgba(255,255,255,0.75); }
.contact-list li a:hover { color: var(--gold); }

.social-icons {
  display: flex;
  gap: 12px;
}
.social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: all var(--transition);
}
.social-icons a:hover {
  background: var(--gold);
  color: #1a1a2e;
  transform: translateY(-3px);
}

.footer-bottom {
  margin-top: 40px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}
.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

/* â”€â”€ Floating Buttons â”€â”€ */
.floating-btn {
  position: fixed;
  bottom: 30px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transition: all var(--transition);
  animation: floatPulse 2s ease-in-out infinite;
}
.floating-btn:hover {
  transform: scale(1.1);
}
.whatsapp-btn {
  left: 30px;
  background: #25d366;
}
.call-btn {
  right: 30px;
  background: var(--gold);
}
@keyframes floatPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(0,0,0,0.2); }
  50% { box-shadow: 0 4px 30px rgba(0,0,0,0.35); }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   RESPONSIVE BREAKPOINTS
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

@media (max-width: 1200px) {
  .quote-layout { grid-template-columns: 240px 1fr; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 992px) {
  .quote-layout {
    grid-template-columns: 1fr;
  }
  .quote-tabs-vertical {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .qt-vtab {
    flex: 1 1 auto;
    border-left: none;
    border-bottom: 3px solid transparent;
    padding: 12px 14px;
    font-size: 0.82rem;
    justify-content: center;
  }
  .qt-vtab.active {
    border-bottom-color: var(--navy-dark);
    border-left-color: transparent;
  }
  .qt-vtab-icon { width: 28px; height: 28px; font-size: 1rem; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-cards { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .cities-grid { grid-template-columns: repeat(2, 1fr); }
  .city-links { grid-template-columns: repeat(3, 1fr); }
  .counter-stats { grid-template-columns: repeat(4, 1fr); }

  .hamburger { display: flex; }
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background: var(--navy-dark);
    position: absolute;
    top: 100%;
    left: 0;
    box-shadow: var(--shadow-lg);
  }
  .nav-links.open { display: flex; }
  .nav-links li a {
    padding: 14px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .nav-inner {
    justify-content: flex-end;
    position: relative;
  }

  .testimonial-slider { margin: 0 40px; }
  .left-arrow { left: -40px; }
  .right-arrow { right: -40px; }
}

@media (max-width: 768px) {
  .section-title { font-size: 1.6rem; }
  .top-bar { font-size: 11px; padding: 6px 0; }
  .header-top { flex-direction: column; gap: 10px; text-align: center; }
  .phone-btn { font-size: 0.85rem; padding: 8px 16px; }
  .company-name { font-size: 1rem; }

  .quote-panel-wrapper { padding: 16px 0 24px; }
  .quote-title { font-size: 1.2rem; }
  .qt-vtab { padding: 10px 10px; font-size: 0.75rem; }
  .qt-vtab-text { display: none; }
  .qt-vtab-icon { width: 32px; height: 32px; font-size: 1.2rem; }
  .quote-form-area { padding: 20px 16px; }
  .form-row { grid-template-columns: 1fr; }

  .highlight-badges { grid-template-columns: 1fr; }
  .counter-stats { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-tabs { flex-direction: column; align-items: stretch; }
  .ft-tab { text-align: center; }
  .city-links { grid-template-columns: repeat(2, 1fr); }
  .cities-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }

  .testimonial-slider { margin: 0 20px; }
  .slider-arrow { width: 36px; height: 36px; font-size: 1rem; }
  .left-arrow { left: -20px; }
  .right-arrow { right: -20px; }
  .testimonial-card { padding: 24px 16px; }
}

@media (max-width: 576px) {
  .container { padding: 0 16px; }
  .section-title { font-size: 1.35rem; }
  .about-section, .how-it-works, .service-cities,
  .unique-section, .why-bipm, .testimonials-section,
  .search-city, .partners-section { padding: 56px 0; }

  .quote-panel-wrapper { padding: 12px 0 20px; }
  .quote-title { font-size: 1.1rem; }

  .stats-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stat-card { padding: 20px 12px; }

  .floating-btn { width: 48px; height: 48px; bottom: 20px; }
  .whatsapp-btn { left: 16px; }
  .call-btn { right: 16px; }

  .adv-list { padding: 24px 20px; }
  .testimonial-slider { margin: 0; }
  .slider-arrow { display: none; }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SERVICE PAGE & FAQ PAGE STYLES
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* â”€â”€ Page Hero (Service & FAQ) â”€â”€ */
.svc-page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 120px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.svc-page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245,166,35,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.faq-page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
}
.svc-hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.svc-hero-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.15;
}
.svc-hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  max-width: 650px;
  margin: 0 auto 12px;
  line-height: 1.6;
}
.svc-hero-tags {
  font-size: 0.95rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* â”€â”€ Service Detail Section â”€â”€ */
.svc-detail-section {
  padding: 80px 0;
  background: var(--white);
}
.svc-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.svc-detail-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.svc-detail-img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.svc-detail-img:hover img {
  transform: scale(1.04);
}
.svc-badge-tag {
  display: inline-block;
  padding: 5px 14px;
  background: rgba(245,166,35,0.12);
  color: var(--gold-dark);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.svc-detail-content h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 18px;
  line-height: 1.2;
}
.svc-detail-content p {
  margin-bottom: 14px;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* â”€â”€ Highlights Grid â”€â”€ */
.svc-highlights-section {
  padding: 80px 0;
  background: var(--off-white);
}
.svc-highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.svc-highlight-card {
  padding: 32px 24px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--navy);
  transition: all var(--transition);
}
.svc-highlight-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-left-color: var(--gold);
}
.svc-hl-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
}
.svc-highlight-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.svc-highlight-card p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.65;
}

/* â”€â”€ Service Cards Grid â”€â”€ */
.svc-cards-section {
  padding: 80px 0;
  background: var(--white);
}
.svc-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.svc-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border: 1px solid var(--gray-light);
}
.svc-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.svc-card-image {
  height: 190px;
  overflow: hidden;
}
.svc-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.svc-card:hover .svc-card-image img {
  transform: scale(1.08);
}
.svc-card-body {
  padding: 24px 20px;
}
.svc-card-icon {
  font-size: 1.8rem;
  margin-bottom: 10px;
}
.svc-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
}
.svc-card-body p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 14px;
}
.svc-card-link {
  display: inline-block;
  color: var(--gold-dark);
  font-weight: 700;
  font-size: 0.88rem;
  transition: all var(--transition);
}
.svc-card-link:hover {
  color: var(--navy);
  padding-left: 6px;
}

/* â”€â”€ CTA Section â”€â”€ */
.svc-cta-section {
  padding: 70px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.svc-cta-section::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245,166,35,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.svc-cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 2;
}
.svc-cta-text h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}
.svc-cta-text p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
}
.svc-cta-actions {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
}
.svc-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  transition: all var(--transition);
  white-space: nowrap;
}
.svc-cta-phone {
  background: var(--white);
  color: var(--navy);
}
.svc-cta-phone:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
.svc-cta-quote {
  background: var(--gold);
  color: var(--navy);
}
.svc-cta-quote:hover {
  background: var(--gold-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(245,166,35,0.4);
}

/* â”€â”€ FAQ Styles â”€â”€ */
.faq-intro-section {
  padding: 50px 0 20px;
  background: var(--white);
}
.faq-intro-text {
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.7;
}
.faq-intro-text a {
  color: var(--gold-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.faq-intro-text a:hover { color: var(--navy); }

.faq-accordion-section {
  padding: 30px 0 80px;
  background: var(--white);
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  background: var(--white);
}
.faq-item:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
}
.faq-item.open {
  border-color: var(--navy);
  box-shadow: 0 4px 16px rgba(13,43,110,0.1);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: all var(--transition);
  font-family: var(--font-body);
}
.faq-question:hover { background: var(--off-white); }
.faq-num {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 900;
  color: var(--gold-dark);
  min-width: 28px;
}
.faq-q-text {
  flex: 1;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
}
.faq-toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  transition: all var(--transition);
  flex-shrink: 0;
}
.faq-item.open .faq-toggle {
  background: var(--navy);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item.open .faq-answer {
  max-height: 400px;
}
.faq-answer p {
  padding: 0 24px 22px 66px;
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.7;
}

/* â”€â”€ Service & FAQ Page Responsive â”€â”€ */
@media (max-width: 768px) {
  .svc-highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .svc-page-hero { padding: 100px 0 60px; }
  .svc-hero-title { font-size: 2.2rem; }
  .svc-detail-grid { grid-template-columns: 1fr; gap: 30px; }
  .svc-detail-img img { height: 280px; }
  .svc-highlights-grid { grid-template-columns: 1fr; }
  .svc-cards-grid { grid-template-columns: 1fr; }
  .svc-cta-content { flex-direction: column; text-align: center; }
  .svc-cta-actions { flex-wrap: wrap; justify-content: center; }
  .faq-question { padding: 16px 18px; }
  .faq-q-text { font-size: 0.92rem; }
  .faq-answer p { padding: 0 18px 18px 50px; }
}
@media (max-width: 480px) {
  .svc-hero-title { font-size: 1.8rem; }
  .svc-detail-content h2 { font-size: 1.5rem; }
  .svc-cta-text h2 { font-size: 1.5rem; }
  .svc-cta-btn { width: 100%; justify-content: center; padding: 12px 20px; }
  .svc-cta-actions { width: 100%; flex-direction: column; }
}