/* ═══════════════════════════════════════════════════════════════════════════
   AC REPAIR WEBSITE – MAIN STYLESHEET
   ═══════════════════════════════════════════════════════════════════════════ */

:root {
  --primary:          #0d6efd;
  --primary-dark:     #0a58ca;
  --secondary:        #198754;
  --accent:           #ffc107;
  --dark:             #0f172a;
  --dark2:            #1e293b;
  --text-body:        #334155;
  --text-muted:       #64748b;
  --bg-light:         #f8fafc;
  --border:           #e2e8f0;
  --radius:           12px;
  --radius-lg:        18px;
  --shadow:           0 4px 20px rgba(0,0,0,.08);
  --shadow-hover:     0 8px 32px rgba(0,0,0,.14);
  --hero-height:      90vh;
  --transition:       .25s ease;
}

/* ── Base ────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text-body);
  background: #fff;
  line-height: 1.65;
  overflow-x: hidden;
}
h1,h2,h3,h4,h5,h6 { font-weight: 700; color: var(--dark); line-height: 1.3; }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; height: auto; }
.fw-600 { font-weight: 600 !important; }
.fw-700 { font-weight: 700 !important; }
.fw-800 { font-weight: 800 !important; }
.text-white-75 { color: rgba(255,255,255,.8) !important; }
.section-pad { padding: 80px 0; }

/* ── Top Bar ─────────────────────────────────────────────────────────────── */
.top-bar {
  background: var(--dark2);
  color: rgba(255,255,255,.85);
  padding: 8px 0;
  font-size: 13px;
}
.top-bar a { color: rgba(255,255,255,.85); }
.top-bar a:hover { color: #fff; }

/* ── Navbar ──────────────────────────────────────────────────────────────── */
.main-nav {
  background: var(--dark) !important;
  padding: 14px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,.25);
  z-index: 1030;
}
.main-nav .navbar-brand .brand-text {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.3px;
}
.main-nav .brand-text span { color: var(--accent); }
.main-nav .nav-link {
  color: rgba(255,255,255,.88) !important;
  font-weight: 500;
  padding: 6px 14px !important;
  border-radius: 6px;
  transition: all var(--transition);
  font-size: 15px;
}
.main-nav .nav-link:hover,
.main-nav .nav-link.active { color: #fff !important; background: rgba(255,255,255,.1); }
.main-nav .dropdown-menu {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  min-width: 220px;
  padding: 8px;
  box-shadow: var(--shadow-hover);
}
.main-nav .dropdown-item {
  color: rgba(255,255,255,.85);
  border-radius: 6px;
  padding: 7px 12px;
  font-size: 14px;
  transition: all var(--transition);
}
.main-nav .dropdown-item:hover { background: rgba(255,255,255,.1); color: #fff; }

/* ── Hero Section ────────────────────────────────────────────────────────── */
.hero-section {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #0f172a 100%);
  min-height: var(--hero-height);
  position: relative;
  display: flex;
  align-items: center;
  padding: 60px 0;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.min-vh-hero { min-height: calc(var(--hero-height) - 120px); }
.hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255,193,7,.2);
  color: var(--accent);
  border: 1px solid rgba(255,193,7,.3);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .5px;
}
.hero-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
}
.hero-subtitle { font-size: 1.1rem; color: rgba(255,255,255,.8); }
.hero-features span {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  color: rgba(255,255,255,.9);
  font-weight: 500;
}
.btn-hero {
  padding: 14px 28px;
  font-size: 1rem;
  border-radius: 10px;
  letter-spacing: .3px;
}
.hero-stats { gap: 24px; align-items: center; flex-wrap: wrap; }
.stat-number { font-size: 1.6rem; font-weight: 800; color: var(--accent); line-height: 1; }
.stat-label { font-size: 12px; color: rgba(255,255,255,.65); margin-top: 2px; }

/* ── Lead Form Card ──────────────────────────────────────────────────────── */
.lead-form-card {
  max-width: 480px;
  width: 100%;
}
.lead-form-card .card-header {
  background: var(--primary) !important;
}
.lead-form-card .form-control,
.lead-form-card .form-select {
  border: 2px solid var(--border);
  border-radius: 10px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.lead-form-card .form-control:focus,
.lead-form-card .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(13,110,253,.15);
}

/* ── Disclaimer Banner ───────────────────────────────────────────────────── */
.disclaimer-banner {
  background: #fff3cd;
  color: #664d03;
  border-bottom: 1px solid #ffc107;
}

/* ── Section Headers ─────────────────────────────────────────────────────── */
.section-badge {
  display: inline-block;
  background: rgba(13,110,253,.1);
  color: var(--primary);
  padding: 4px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 12px;
}
.section-subtitle { color: var(--text-muted); max-width: 600px; margin: 0 auto; }

/* ── Brand Cards ─────────────────────────────────────────────────────────── */
.brand-card .brand-item {
  transition: all var(--transition);
  cursor: pointer;
  border-radius: var(--radius) !important;
}
.brand-card .brand-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover) !important;
  border-color: var(--primary) !important;
}
.brand-logo { height: 50px; object-fit: contain; filter: grayscale(30%); transition: filter var(--transition); }
.brand-card .brand-item:hover .brand-logo { filter: none; }
.brand-icon-placeholder { height: 50px; display: flex; align-items: center; justify-content: center; }

/* ── Service Cards ───────────────────────────────────────────────────────── */
.service-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.service-card-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  width: 64px; height: 64px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin: 24px;
}
.service-card-body { padding: 0 24px 24px; flex: 1; display: flex; flex-direction: column; }
.service-card-title { font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; }
.service-card-desc { color: var(--text-muted); font-size: 14px; flex: 1; }
.service-price { color: var(--primary); font-size: 14px; font-weight: 700; }

/* ── Why Choose Cards ────────────────────────────────────────────────────── */
.cta-strip { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); }
.why-card { padding: 20px; border-radius: var(--radius); background: rgba(255,255,255,.08); transition: all var(--transition); }
.why-card:hover { background: rgba(255,255,255,.15); transform: translateY(-3px); }
.why-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--accent);
  margin: 0 auto;
}

/* ── How It Works ────────────────────────────────────────────────────────── */
.how-step { position: relative; }
.how-number {
  width: 52px; height: 52px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
  margin: 0 auto 16px;
  box-shadow: 0 4px 14px rgba(13,110,253,.35);
}

/* ── Testimonial Cards ───────────────────────────────────────────────────── */
.testimonial-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border: 2px solid transparent;
}
.testimonial-card:hover { border-color: var(--primary); transform: translateY(-4px); }
.testimonial-stars { font-size: 15px; }
.testimonial-text { color: var(--text-body); font-style: italic; line-height: 1.7; margin-bottom: 16px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 700; flex-shrink: 0;
}

/* ── Service Areas ───────────────────────────────────────────────────────── */
.areas-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.area-tag {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 14px;
  font-weight: 500;
  transition: all var(--transition);
  color: var(--text-body);
}
.area-tag:hover { border-color: var(--primary); background: rgba(13,110,253,.06); }

/* ── Page Hero ───────────────────────────────────────────────────────────── */
.page-hero { padding: 60px 0; }
.bg-gradient-primary {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 60%, #0d6efd 100%);
}
.bg-gradient-dark { background: linear-gradient(135deg, #0f172a, #1e293b); }
.page-hero-title { font-size: clamp(1.6rem,3.5vw,2.5rem); font-weight: 800; color: #fff; }
.breadcrumb-nav a { color: var(--primary); }
.breadcrumb-nav .breadcrumb-item.active { color: var(--text-muted); }
.service-price-badge {
  display: inline-block;
  background: rgba(255,193,7,.2);
  color: var(--accent);
  padding: 6px 16px; border-radius: 50px;
  font-size: 14px; font-weight: 700;
}
.brand-hero-logo { filter: brightness(10); }

/* ── Content Styles ──────────────────────────────────────────────────────── */
.brand-content, .service-content { line-height: 1.8; }
.brand-content h2, .service-content h2 { font-size: 1.6rem; margin-bottom: 12px; }
.brand-content h3, .service-content h3 { font-size: 1.25rem; margin-top: 24px; margin-bottom: 10px; }
.brand-content ul li, .service-content ul li { margin-bottom: 6px; }

/* ── Sidebar Cards ───────────────────────────────────────────────────────── */
.sidebar-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}
.other-service-link {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--text-body);
  border: 1.5px solid var(--border);
  transition: all var(--transition);
  font-size: 14px;
  font-weight: 500;
}
.other-service-link:hover { border-color: var(--primary); background: rgba(13,110,253,.04); }
.review-mini:last-child { border-bottom: none !important; }
.brands-mini-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.brand-mini-tag {
  display: inline-flex; align-items: center;
  padding: 6px 14px;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  font-size: 13px; font-weight: 500;
  color: var(--text-body);
  transition: all var(--transition);
}
.brand-mini-tag:hover { border-color: var(--primary); background: rgba(13,110,253,.06); color: var(--primary); }
.service-mini-icon {
  width: 40px; height: 40px;
  background: rgba(13,110,253,.1);
  color: var(--primary);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}

/* ── Contact Page ────────────────────────────────────────────────────────── */
.contact-info-card {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px;
  background: var(--bg-light);
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
}
.contact-icon {
  width: 44px; height: 44px;
  background: var(--primary); color: #fff;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.contact-icon.green { background: var(--secondary); }

/* ── Footer ──────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,.8);
}
.footer-heading {
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 14px;
  position: relative;
  padding-bottom: 10px;
}
.footer-heading::after {
  content: '';
  position: absolute; left: 0; bottom: 0;
  width: 32px; height: 2px;
  background: var(--primary);
  border-radius: 2px;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a {
  color: rgba(255,255,255,.7);
  font-size: 14px;
  transition: color var(--transition);
  display: inline-flex; align-items: center; gap: 6px;
}
.footer-links a:hover { color: #fff; }
.footer-links a::before { content: '›'; color: var(--primary); }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 10px; }
.footer-contact a { color: rgba(255,255,255,.8); }
.footer-contact a:hover { color: #fff; }
.text-footer-muted { color: rgba(255,255,255,.5); }
.footer-hr { border-color: rgba(255,255,255,.1); }
.disclaimer-box {
  background: rgba(255,193,7,.1);
  border: 1px solid rgba(255,193,7,.3);
  color: rgba(255,255,255,.85);
  font-size: 13px;
}

/* ── CTA Strip ───────────────────────────────────────────────────────────── */
.cta-strip { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); }

/* ── Mobile Sticky Buttons ───────────────────────────────────────────────── */
.mobile-sticky {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 1040;
  box-shadow: 0 -3px 15px rgba(0,0,0,.2);
}
.mobile-sticky-btn {
  flex: 1;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px;
  font-size: 15px; font-weight: 700;
  color: #fff;
  text-decoration: none;
  transition: all var(--transition);
}
.mobile-sticky-btn.call-btn { background: var(--primary); }
.mobile-sticky-btn.wa-btn   { background: #25d366; }
.mobile-sticky-btn:hover { opacity: .9; }
body { padding-bottom: 62px; }
@media(min-width:768px) { body { padding-bottom: 0; } }

/* ── WhatsApp Float ──────────────────────────────────────────────────────── */
.wa-float {
  position: fixed; bottom: 28px; right: 24px;
  width: 56px; height: 56px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.5);
  z-index: 1050;
  transition: all var(--transition);
  animation: pulse 2s infinite;
}
.wa-float:hover { transform: scale(1.1); color: #fff; }
@keyframes pulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,.5); }
  50%      { box-shadow: 0 4px 35px rgba(37,211,102,.8); }
}

/* ── Form success/error messages ─────────────────────────────────────────── */
#leadFormMsg.success { background: #d1fae5; color: #065f46; padding: 14px; border-radius: 10px; margin-bottom: 16px; border: 1.5px solid #6ee7b7; }
#leadFormMsg.error   { background: #fee2e2; color: #991b1b; padding: 14px; border-radius: 10px; margin-bottom: 16px; border: 1.5px solid #fca5a5; }

/* ── Accordion ───────────────────────────────────────────────────────────── */
.accordion-button:not(.collapsed) { background: rgba(13,110,253,.07); color: var(--primary); box-shadow: none; }
.accordion-button:focus { box-shadow: none; }

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media(max-width:991px) {
  .section-pad { padding: 55px 0; }
  .hero-section { min-height: auto; padding: 50px 0; }
  .lead-form-card { max-width: 100%; }
}
@media(max-width:767px) {
  .section-pad { padding: 45px 0; }
  .hero-title { font-size: 1.75rem; }
  .hero-stats { gap: 12px; }
  .stat-number { font-size: 1.2rem; }
  .service-card-icon { width: 52px; height: 52px; font-size: 1.2rem; margin: 18px; }
}

/* ═══ Additional Styles v2 ════════════════════════════════════════════════ */

/* Lead form result messages */
.lead-msg {
  padding: 14px 16px;
  border-radius: 10px;
  margin-bottom: 16px;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.5;
}
.lead-msg.success {
  background: #d1fae5;
  color: #065f46;
  border: 1.5px solid #6ee7b7;
}
.lead-msg.error {
  background: #fee2e2;
  color: #991b1b;
  border: 1.5px solid #fca5a5;
}

/* Hero with bg image overlay */
.hero-section[style*="background-image"] { background-size: cover !important; background-position: center !important; }

/* Scroll reveal initial state overrides */
.service-card, .brand-card, .testimonial-card { opacity: 1; }

/* Trust badges strip */
.trust-strip {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.trust-badge {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: var(--text-body);
}
.trust-badge i { font-size: 1.2rem; color: var(--primary); }

/* Pricing table */
.price-card {
  border-radius: var(--radius-lg);
  border: 2px solid var(--border);
  padding: 28px;
  text-align: center;
  transition: all var(--transition);
}
.price-card.featured {
  border-color: var(--primary);
  box-shadow: 0 8px 32px rgba(13,110,253,.15);
  transform: scale(1.03);
}
.price-amount { font-size: 2.5rem; font-weight: 800; color: var(--primary); }
.price-period { font-size: 13px; color: var(--text-muted); }

/* Blog / info cards */
.info-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}
.info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }

/* Sticky form on brand/service pages (desktop) */
@media (min-width: 992px) {
  .sticky-form { position: sticky; top: 90px; }
}

/* Google Ads disclaimer box on brand pages */
.brand-disclaimer {
  background: linear-gradient(135deg, #fff8e1, #fffde7);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 14px 18px;
  font-size: 13px;
  color: #5a4a00;
  margin: 20px 0;
}
.brand-disclaimer strong { color: #3a2f00; }

/* Enhanced mobile sticky with pulse */
.mobile-sticky-btn.call-btn { animation: callPulse 2.5s infinite; }
@keyframes callPulse {
  0%,100% { background: var(--primary); }
  50%      { background: var(--primary-dark); }
}

/* Loading skeleton */
.skeleton {
  background: linear-gradient(90deg,#f0f0f0 25%,#e8e8e8 50%,#f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-wave 1.5s infinite;
  border-radius: 6px;
}
@keyframes skeleton-wave {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Image zoom on hover */
.img-zoom { overflow: hidden; border-radius: var(--radius); }
.img-zoom img { transition: transform .4s ease; }
.img-zoom:hover img { transform: scale(1.05); }

/* Form focus ring color matching theme */
.form-control:focus, .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(13,110,253,.15);
}

/* ── Brand Name/Logo Placeholders ────────────────────────────────────────── */
.brand-name-placeholder {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-name-text {
  font-size: 13px;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: .5px;
  text-align: center;
  line-height: 1.2;
}
.brand-initials-logo {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 1px;
}
.brand-hero-logo { filter: brightness(0) invert(1); }
.brand-hero-logo-wrap { display: flex; align-items: center; gap: 14px; }

/* ── Brand logo in brand card (uploaded logos) ───────────────────────────── */
.brand-logo {
  height: 50px;
  object-fit: contain;
  display: block;
  filter: grayscale(20%);
  transition: filter var(--transition);
}
.brand-card .brand-item:hover .brand-logo { filter: none; }

/* ── Google Ads Compliance disclaimer box ────────────────────────────────── */
.brand-disclaimer {
  background: linear-gradient(135deg, #fff8e1, #fffde7);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 14px 18px;
  font-size: 13px;
  color: #5a4a00;
  margin: 24px 0;
}

/* ════════════════════════════════════════════════════════════════════════════
   BRAND PAGE – PROFESSIONAL DESIGN v3
   ════════════════════════════════════════════════════════════════════════════ */

/* ── Brand Hero Section ──────────────────────────────────────────────────── */
.brand-hero-section {
  padding: 60px 0 50px;
  position: relative;
  overflow: hidden;
}
.brand-hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255,255,255,.04);
  border-radius: 50%;
  pointer-events: none;
}
.brand-hero-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 350px;
  height: 350px;
  background: rgba(255,255,255,.03);
  border-radius: 50%;
  pointer-events: none;
}

/* Brand Logo Card */
.brand-hero-logo-box {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.brand-logo-card {
  background: rgba(255,255,255,.95);
  border-radius: 16px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,.25);
  backdrop-filter: blur(10px);
}
.brand-logo-text-card {
  padding: 16px 20px;
}
.brand-page-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
  max-width: 140px;
}
.brand-big-initial {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 1px;
}
.brand-logo-label {
  font-size: 15px;
  font-weight: 800;
  color: #1e293b;
  letter-spacing: .3px;
}
.brand-hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255,193,7,.2);
  border: 1px solid rgba(255,193,7,.4);
  color: #ffc107;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
}

/* Brand Hero Text */
.brand-hero-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 12px;
}
.brand-hero-sub {
  color: rgba(255,255,255,.8);
  font-size: 1.05rem;
  margin-bottom: 20px;
}

/* Trust Chips */
.brand-trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.brand-trust-chips span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.9);
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 12.5px;
  font-weight: 600;
  backdrop-filter: blur(4px);
}
.brand-trust-chips span i { color: #ffc107; font-size: 11px; }

/* Brand Hero Stats */
.brand-hero-stats {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 16px 20px;
  background: rgba(255,255,255,.08);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
}
.brand-hero-stats div { text-align: center; }
.brand-hero-stats strong {
  display: block;
  font-size: 1.3rem;
  font-weight: 800;
  color: #ffc107;
  line-height: 1;
}
.brand-hero-stats span {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,.7);
  margin-top: 3px;
}
.brand-hero-stats .divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,.2);
}

/* ── Content Sections ────────────────────────────────────────────────────── */
.section-tag {
  display: inline-block;
  background: rgba(13,110,253,.1);
  color: var(--primary);
  padding: 3px 12px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.content-h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 4px;
}
.content-section { padding-bottom: 8px; }

/* ── Service Chip Cards ──────────────────────────────────────────────────── */
.service-chip-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  text-decoration: none;
  color: var(--text-body);
  transition: all .2s ease;
  height: 100%;
}
.service-chip-card:hover {
  border-color: var(--primary);
  background: rgba(13,110,253,.04);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(13,110,253,.12);
  color: var(--dark);
}
.service-chip-icon {
  width: 42px;
  height: 42px;
  background: rgba(13,110,253,.1);
  color: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: all .2s;
}
.service-chip-card:hover .service-chip-icon {
  background: var(--primary);
  color: #fff;
}

/* ── Why Choose Reason Cards ─────────────────────────────────────────────── */
.reason-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  transition: all .2s;
}
.reason-card:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(13,110,253,.1);
}
.reason-card i { margin-top: 2px; font-size: 1.2rem; flex-shrink: 0; }

/* ── Other Brands Grid ───────────────────────────────────────────────────── */
.other-brands-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.other-brand-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-body);
  text-decoration: none;
  transition: all .2s;
}
.other-brand-pill:hover {
  border-color: var(--primary);
  background: rgba(13,110,253,.06);
  color: var(--primary);
}

/* ── Sticky Sidebar ──────────────────────────────────────────────────────── */
.sticky-sidebar { position: sticky; top: 90px; }
.sidebar-box {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  overflow: hidden;
  border: 1px solid var(--border);
}
.sidebar-box-head {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  padding: 14px 18px;
  font-weight: 700;
  font-size: 15px;
}
.sidebar-box-body { padding: 18px; }
.sidebar-box-body.p-0 { padding: 0; }

/* ── Review Items in Sidebar ─────────────────────────────────────────────── */
.review-item {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
}
.review-item:last-child { border-bottom: none; }
.review-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.review-avatar {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}
.review-text {
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.5;
  margin: 0;
}

/* ── Brand page content styles ───────────────────────────────────────────── */
.brand-page-content h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--dark);
}
.brand-page-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 10px;
  color: var(--dark);
}
.brand-page-content ul { padding-left: 20px; }
.brand-page-content ul li {
  margin-bottom: 6px;
  color: var(--text-body);
}
.brand-page-content p { color: var(--text-body); line-height: 1.75; }

/* Brand disclaimer – only show once, styled nicely */
.brand-disclaimer {
  background: linear-gradient(135deg, #fffbeb, #fef9c3);
  border: 1.5px solid #fcd34d;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 13px;
  color: #78350f;
  margin: 20px 0;
}
.brand-disclaimer strong { color: #451a03; }

/* ── Accordion improvements ──────────────────────────────────────────────── */
.accordion-button {
  font-size: 14.5px;
  font-weight: 600;
  background: #fff;
}
.accordion-button:not(.collapsed) {
  background: rgba(13,110,253,.05);
  color: var(--primary);
  box-shadow: none;
}
.accordion-button:focus { box-shadow: none; }
.accordion-body { font-size: 14px; }

/* ── Mobile responsive brand page ───────────────────────────────────────── */
@media (max-width: 991px) {
  .sticky-sidebar { position: static; }
  .brand-hero-title { font-size: 1.6rem; }
  .brand-hero-stats { justify-content: center; }
}
@media (max-width: 575px) {
  .brand-hero-section { padding: 40px 0 30px; }
  .brand-logo-card { padding: 10px 14px; }
  .brand-page-logo { height: 38px; }
  .brand-hero-stats .divider { display: none; }
  .brand-hero-stats { gap: 12px; }
}

/* ════════════════════════════════════════════════════════════════════════════
   BLOG STYLES
   ════════════════════════════════════════════════════════════════════════════ */

.blog-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.blog-card-img { height: 200px; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-img-placeholder {
  height: 200px; background: var(--bg-light);
  display: flex; align-items: center; justify-content: center;
}
.blog-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.blog-card-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.blog-category {
  background: rgba(13,110,253,.1); color: var(--primary);
  padding: 3px 10px; border-radius: 50px; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
}
.blog-card-title { font-size: 1rem; font-weight: 700; margin-bottom: 8px; line-height: 1.4; }
.blog-card-title a { color: var(--dark); text-decoration: none; }
.blog-card-title a:hover { color: var(--primary); }
.blog-card-excerpt { color: var(--text-muted); font-size: 13.5px; flex: 1; margin-bottom: 14px; }
.blog-read-more {
  color: var(--primary); font-weight: 700; font-size: 13px;
  text-decoration: none; display: inline-flex; align-items: center; gap: 5px;
}
.blog-read-more:hover { color: var(--primary-dark); }

/* Blog Article */
.blog-article-title { font-size: clamp(1.5rem,3vw,2rem); font-weight: 800; line-height: 1.3; }
.blog-article-lead { font-size: 1.1rem; color: var(--text-muted); line-height: 1.7; }
.blog-article-img { max-height: 450px; overflow: hidden; border-radius: var(--radius-lg); }
.blog-article-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-article-content { line-height: 1.85; font-size: 15.5px; }
.blog-article-content h2 { font-size: 1.5rem; font-weight: 800; margin: 28px 0 12px; }
.blog-article-content h3 { font-size: 1.2rem; font-weight: 700; margin: 22px 0 10px; }
.blog-article-content p { margin-bottom: 16px; color: var(--text-body); }
.blog-article-content ul { padding-left: 22px; margin-bottom: 16px; }
.blog-article-content ul li { margin-bottom: 7px; }
.blog-article-content strong { color: var(--dark); }

/* Blog CTA Box */
.blog-cta-box {
  background: linear-gradient(135deg, rgba(13,110,253,.06), rgba(13,110,253,.1));
  border: 1.5px solid rgba(13,110,253,.2);
  border-radius: var(--radius-lg);
  padding: 24px;
}

/* Recent Posts Sidebar */
.recent-post-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 12px 14px; border-bottom: 1px solid var(--border);
  text-decoration: none; color: var(--text-body);
  transition: background var(--transition);
}
.recent-post-item:hover { background: var(--bg-light); }
.recent-post-item:last-child { border-bottom: none; }
.recent-post-img { width: 54px; height: 44px; border-radius: 6px; object-fit: cover; flex-shrink: 0; }
.recent-post-img-placeholder {
  width: 54px; height: 44px; border-radius: 6px;
  background: rgba(13,110,253,.08); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.recent-post-title { font-size: 13px; font-weight: 600; line-height: 1.4; }

/* ════════════════════════════════════════════════════════════════════════════
   ABOUT PAGE STYLES
   ════════════════════════════════════════════════════════════════════════════ */

.about-stats-strip {
  background: var(--dark);
  padding: 28px 0;
}
.about-stat {
  text-align: center; padding: 20px 16px;
  border-right: 1px solid rgba(255,255,255,.1);
}
.about-stat:last-child { border-right: none; }
.about-stat-num { font-size: 2rem; font-weight: 800; color: #ffc107; line-height: 1; }
.about-stat-label { font-size: 13px; color: rgba(255,255,255,.65); margin-top: 6px; }

.about-values-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.about-value-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 20px; text-align: center;
  transition: all var(--transition);
}
.about-value-card:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(13,110,253,.1);
  transform: translateY(-3px);
}

.about-service-pill {
  display: flex; flex-direction: column; align-items: center;
  padding: 20px 12px; background: #fff;
  border: 1.5px solid var(--border); border-radius: var(--radius);
  text-decoration: none; color: var(--text-body); text-align: center;
  font-size: 13px; font-weight: 600;
  transition: all var(--transition);
}
.about-service-pill:hover {
  border-color: var(--primary); background: rgba(13,110,253,.04);
  transform: translateY(-3px); box-shadow: 0 4px 14px rgba(13,110,253,.1);
}

/* Responsive About */
@media(max-width: 575px) {
  .about-values-grid { grid-template-columns: 1fr; }
  .about-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
}

/* ════════════════════════════════════════════════════════════════════════════
   BLOG STYLES
   ════════════════════════════════════════════════════════════════════════════ */
.blog-card { background:#fff; border-radius:var(--radius-lg); box-shadow:var(--shadow); overflow:hidden; transition:all var(--transition); }
.blog-card:hover { transform:translateY(-5px); box-shadow:var(--shadow-hover); }
.blog-card-img-wrap { display:block; position:relative; overflow:hidden; height:200px; }
.blog-card-img-wrap img { width:100%; height:100%; object-fit:cover; transition:transform .4s; }
.blog-card:hover .blog-card-img-wrap img { transform:scale(1.05); }
.blog-card-img-placeholder { height:100%; background:#f0f9ff; display:flex; align-items:center; justify-content:center; }
.blog-card-cat { position:absolute; top:12px; left:12px; background:var(--primary); color:#fff; padding:3px 12px; border-radius:50px; font-size:11px; font-weight:700; letter-spacing:.5px; }
.blog-card-body { padding:20px; }
.blog-card-meta { display:flex; gap:12px; font-size:12px; color:var(--text-muted); margin-bottom:10px; flex-wrap:wrap; }
.blog-card-title { font-size:1rem; font-weight:700; margin-bottom:10px; line-height:1.45; }
.blog-card-title a { color:var(--dark); text-decoration:none; }
.blog-card-title a:hover { color:var(--primary); }
.blog-card-excerpt { color:var(--text-muted); font-size:14px; line-height:1.6; margin-bottom:14px; }
.blog-read-more { font-size:13px; font-weight:700; color:var(--primary); text-decoration:none; }
.blog-read-more:hover { gap:8px; }

/* Blog Article */
.blog-article-title { font-size:clamp(1.5rem,3vw,2.2rem); font-weight:800; line-height:1.3; }
.blog-featured-img img { border-radius:var(--radius-lg); box-shadow:var(--shadow); }
.blog-excerpt { background:rgba(13,110,253,.05); border-left:4px solid var(--primary); padding:14px 18px; border-radius:0 var(--radius) var(--radius) 0; font-size:15px; color:var(--text-body); font-style:italic; }
.blog-content { font-size:15px; line-height:1.8; }
.blog-content h2 { font-size:1.5rem; font-weight:800; margin:28px 0 12px; }
.blog-content h3 { font-size:1.2rem; font-weight:700; margin:22px 0 10px; }
.blog-content ul { padding-left:20px; margin-bottom:16px; }
.blog-content ul li { margin-bottom:8px; }
.blog-content p { margin-bottom:16px; }
.blog-content strong { color:var(--dark); }
.blog-cat-badge { background:rgba(13,110,253,.1); color:var(--primary); padding:3px 12px; border-radius:50px; font-size:12px; font-weight:700; }
.blog-tags { display:flex; align-items:center; flex-wrap:wrap; gap:6px; }
.blog-tag { background:#f1f5f9; color:var(--text-body); padding:3px 10px; border-radius:50px; font-size:12px; }
.blog-cta-box { background:linear-gradient(135deg,#eff6ff,#dbeafe); border:1.5px solid #93c5fd; border-radius:var(--radius-lg); padding:24px; }
.section-badge-white { display:inline-flex; align-items:center; background:rgba(255,255,255,.15); border:1px solid rgba(255,255,255,.3); color:#fff; padding:5px 14px; border-radius:50px; font-size:12px; font-weight:700; letter-spacing:.8px; text-transform:uppercase; }
.related-post-card { display:flex; flex-direction:column; gap:8px; text-decoration:none; background:#fff; border:1.5px solid var(--border); border-radius:var(--radius); overflow:hidden; transition:all var(--transition); }
.related-post-card:hover { border-color:var(--primary); transform:translateY(-2px); }
.related-post-card img { width:100%; height:80px; object-fit:cover; }
.related-post-placeholder { height:80px; background:#f0f9ff; display:flex; align-items:center; justify-content:center; }
.related-post-title { padding:8px 12px 12px; font-size:13px; font-weight:700; color:var(--dark); line-height:1.4; }
.recent-post-item { display:flex; gap:10px; align-items:center; padding:10px 14px; text-decoration:none; color:var(--text-body); border-bottom:1px solid var(--border); transition:background var(--transition); }
.recent-post-item:last-child { border-bottom:none; }
.recent-post-item:hover { background:#f8fafc; }
.recent-post-thumb { width:50px; height:38px; border-radius:6px; overflow:hidden; flex-shrink:0; }
.recent-post-thumb img { width:100%; height:100%; object-fit:cover; }
.recent-post-no-img { width:50px; height:38px; background:#f0f9ff; border-radius:6px; display:flex; align-items:center; justify-content:center; }
.recent-post-title { font-size:12px; font-weight:600; color:var(--dark); line-height:1.4; }
.recent-post-date { font-size:11px; color:var(--text-muted); }

/* ════════════════════════════════════════════════════════════════════════════
   ABOUT PAGE STYLES
   ════════════════════════════════════════════════════════════════════════════ */
.about-hero { background:linear-gradient(135deg,#0f172a 0%,#1e3a5f 60%,#0d6efd 100%); position:relative; padding:0; }
.about-hero-overlay { position:absolute;inset:0;background:url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");pointer-events:none; }
.about-hero-title { font-size:clamp(1.5rem,3vw,2.2rem); font-weight:800; color:#fff; line-height:1.3; margin-bottom:14px; }
.about-hero-sub { color:rgba(255,255,255,.8); font-size:1.05rem; margin-bottom:24px; }
.about-stats-row { display:flex; align-items:center; gap:20px; flex-wrap:wrap; padding:16px 0; border-top:1px solid rgba(255,255,255,.15); }
.about-stat-num { font-size:1.6rem; font-weight:800; color:#ffc107; line-height:1; }
.about-stat-label { font-size:11px; color:rgba(255,255,255,.7); margin-top:2px; }
.about-stat-div { width:1px; height:36px; background:rgba(255,255,255,.2); }
.about-hero-card { background:#fff; border-radius:var(--radius-lg); padding:24px; box-shadow:0 20px 60px rgba(0,0,0,.2); }
.about-badge-row { display:flex; gap:16px; }
.about-badge { display:flex; align-items:center; gap:12px; flex:1; padding:12px; background:#f8fafc; border-radius:var(--radius); }
.milestone-card { background:#fff; border-radius:var(--radius); padding:20px; box-shadow:var(--shadow); border-left:4px solid var(--primary); }
.milestone-year { font-size:1.1rem; font-weight:800; color:var(--primary); margin-bottom:4px; }
.milestone-title { margin-bottom:4px; }
.mv-card { background:#fff; border-radius:var(--radius-lg); padding:28px; box-shadow:var(--shadow); }
.mv-icon { width:56px; height:56px; background:rgba(13,110,253,.1); color:var(--primary); border-radius:14px; display:flex; align-items:center; justify-content:center; font-size:1.4rem; margin-bottom:16px; }
.about-reason-card { background:#fff; border-radius:var(--radius); box-shadow:var(--shadow); border:1.5px solid var(--border); transition:all var(--transition); }
.about-reason-card:hover { border-color:var(--primary); transform:translateY(-3px); }
.about-reason-icon { width:56px; height:56px; background:#f0f9ff; border-radius:12px; display:flex; align-items:center; justify-content:center; margin:0 auto; }
.about-service-chip { display:flex; flex-direction:column; align-items:center; justify-content:center; padding:16px; background:#fff; border:1.5px solid var(--border); border-radius:var(--radius); text-decoration:none; color:var(--text-body); transition:all var(--transition); text-align:center; }
.about-service-chip:hover { border-color:var(--primary); background:rgba(13,110,253,.04); color:var(--primary); }
.about-story-text p { line-height:1.8; color:var(--text-body); margin-bottom:14px; }

/* ─── Location page ──────────────────────────────────────────────────────── */
.location-hero-pin { display:inline-flex; align-items:center; background:rgba(255,193,7,.2); border:1px solid rgba(255,193,7,.4); color:#ffc107; padding:6px 14px; border-radius:50px; font-size:13px; font-weight:700; }
