/* 
 * Kaamwali Maid Service - Main Style Sheet
 * Built from custom tokens with rich modern details (glassmorphism, clean grids, animations)
 */

:root {
  --brand-primary:   #E8401C;   /* Main orange-red */
  --brand-light:     #FEE8E1;   /* Light tint for badges */
  --brand-dark:      #C4341A;   /* Hover state */
  --bg-page:         #FAFAF8;   /* Off-white page background */
  --bg-section-alt:  #FFF5F2;   /* Alternate section bg */
  --bg-white:        #FFFFFF;
  --text-primary:    #1A1A1A;
  --text-secondary:  #6B6860;
  --border-light:    #E8E5DC;
  --radius-sm:       6px;
  --radius-md:       8px;
  --radius-lg:       12px;
  --radius-full:     9999px;
  --font-sans:       'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --shadow-sm:       0 2px 8px rgba(232, 64, 28, 0.04);
  --shadow-md:       0 8px 20px rgba(232, 64, 28, 0.06);
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
}

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

body {
  background-color: var(--bg-page);
  color: var(--text-primary);
  font-family: var(--font-sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.25;
  color: var(--text-primary);
}

/* Utility Containers */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-primary {
  background-color: var(--brand-primary);
  color: #FFFFFF;
}
.btn-primary:hover {
  background-color: var(--brand-dark);
}

.btn-outline {
  background-color: var(--bg-white);
  border-color: var(--border-light);
  color: var(--text-primary);
}
.btn-outline:hover {
  border-color: var(--brand-primary);
  color: var(--brand-primary);
}

.btn-white {
  background-color: #FFFFFF;
  color: var(--brand-primary);
}
.btn-white:hover {
  background-color: var(--brand-light);
}

.btn-outline-w {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.6);
  color: #FFFFFF;
}
.btn-outline-w:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #FFFFFF;
}

/* Badges & Pills */
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: var(--brand-light);
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: var(--radius-full);
}

/* Navigation */
.nav-header {
  background-color: #FFFFFF;
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  /* Remove any background/border that could create a rectangle box */
  background: transparent;
  border: none;
  outline: none;
  padding: 0;
}

/* Responsive Logo Image — no rectangle background */
.nav-logo-img {
  height: 76px;           /* Taller = more visible */
  width: auto;
  max-width: 260px;
  object-fit: contain;
  display: block;
  /* KEY FIX: mix-blend-mode multiply makes white background invisible on white nav */
  mix-blend-mode: multiply;
  /* Remove drop-shadow (it was creating box effect) */
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-logo:hover .nav-logo-img {
  transform: scale(1.04);
  opacity: 0.88;
}

/* Tablet */
@media (max-width: 992px) {
  .nav-logo-img {
    height: 62px;
    max-width: 210px;
  }
  .nav-container {
    height: 78px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .nav-logo-img {
    height: 50px;
    max-width: 180px;
  }
  .nav-container {
    height: 68px;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .nav-logo-img {
    height: 44px;
    max-width: 155px;
  }
  .nav-container {
    height: 62px;
  }
}


.nav-links {
  display: flex;
  gap: 2rem;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--brand-primary);
}

/* Nav Dropdown */
.nav-dropdown {
  position: relative;
  padding-bottom: 8px;
}
.nav-dropdown-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-dropdown-toggle i {
  font-size: 12px;
  transition: transform 0.2s;
}
.nav-dropdown.open .nav-dropdown-toggle i {
  transform: rotate(180deg);
}
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
  min-width: 240px;
  padding: 0.5rem 0;
  z-index: 1000;
}
.nav-dropdown.open .nav-dropdown-menu {
  display: block;
}
.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 1.25rem;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  width: 100%;
  box-sizing: border-box;
}
.nav-dropdown-menu a i {
  font-size: 16px;
  width: 20px;
  text-align: center;
  color: var(--brand-primary);
  flex-shrink: 0;
}
.nav-dropdown-menu a:hover {
  background-color: var(--brand-light);
  color: var(--brand-primary);
}
.nav-dropdown-all {
  border-top: 1px solid var(--border-light);
  margin-top: 0.25rem;
  padding-top: 12px !important;
  color: var(--brand-primary) !important;
  font-weight: 600 !important;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--text-primary);
}

/* =====================
   Hero Section – Redesigned
   ===================== */
/* ====== Hero Banner Slider ====== */
.hero-slider {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
}

/* Slides track */
.hero-slider-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Dark overlay for readability */
.hero-slider-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.40) 60%, rgba(0,0,0,0.05) 100%);
  z-index: 2;
  display: flex;
  align-items: center;
}

.hero-slider-content {
  width: 100%;
  max-width: 900px;
}

.hero-slider-content h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.15;
  color: #FFF;
  margin-bottom: 0;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

/* Navigation Dots */
.hero-slider-dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.6);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.hero-dot.active,
.hero-dot:hover {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  transform: scale(1.15);
}

/* Navigation Arrows */
.hero-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.4);
  background: rgba(0, 0, 0, 0.25);
  color: #FFFFFF;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}

.hero-slider-arrow:hover {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
}

.hero-slider-prev {
  left: 1.5rem;
}

.hero-slider-next {
  right: 1.5rem;
}

/* ---- Eyebrow pulse animation ---- */
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.4); opacity: 0.6; }
}

.hero-h1-highlight {
  background: linear-gradient(135deg, var(--brand-primary) 0%, #FF6B35 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Bigger CTA buttons */
.btn-lg {
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
}
.btn-primary.btn-lg {
  box-shadow: 0 8px 24px rgba(232, 64, 28, 0.3);
}
.btn-primary.btn-lg:hover {
  box-shadow: 0 12px 32px rgba(232, 64, 28, 0.4);
  transform: translateY(-2px);
}

/* Trust badges row */
.hero-trust-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.htrust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: #374151;
}
.htrust-ic {
  font-size: 18px;
}
.htrust-green { color: #16A34A; }
.htrust-blue  { color: #2563EB; }
.htrust-amber { color: #D97706; }
.htrust-divider {
  width: 1px;
  height: 18px;
  background: var(--border-light);
}

/* Stats bar */
.hero-stats {
  display: flex;
  gap: 2.5rem;
  border-top: 1px solid var(--border-light);
  padding-top: 1.75rem;
}
.hstat-num {
  font-size: 30px;
  font-weight: 800;
  color: var(--brand-primary);
  line-height: 1;
}
.hstat-lbl {
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 4px;
  font-weight: 500;
}

/* Eyebrow pulse animation */
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.4); opacity: 0.6; }
}

/* Trust Bar */
.trust-bar {
  background-color: #FFFFFF;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 1.5rem 0;
}
.trust-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
}
.trust-item i {
  color: var(--brand-primary);
  font-size: 18px;
}

/* Sections */
.section {
  padding: 5rem 0;
}
.section-alt {
  background-color: var(--bg-section-alt);
}

.sec-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3.5rem;
}
.sec-eyebrow {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--brand-primary);
  margin-bottom: 0.5rem;
}
.sec-title {
  font-size: 32px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}
.sec-sub {
  font-size: 15px;
  color: var(--text-secondary);
}

/* Services Page & Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.svc-card {
  background-color: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.svc-card:hover {
  border-color: var(--brand-primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.svc-card-img {
  width: 100%;
  height: 180px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 1.5rem;
  background-color: var(--brand-light);
  display: flex;
  align-items: center;
  justify-content: center;
}
.svc-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.svc-card-img .svc-icon {
  margin-bottom: 0;
}

.svc-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 26px;
}

.ic-red { background-color: var(--brand-light); color: var(--brand-primary); }
.ic-blue { background-color: #E6F1FB; color: #185FA5; }
.ic-green { background-color: #EAF3DE; color: #3B6D11; }
.ic-amber { background-color: #FAEEDA; color: #854F0B; }
.ic-purple { background-color: #EEEDFE; color: #534AB7; }
.ic-teal { background-color: #E1F5EE; color: #0F6E56; }

.svc-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.svc-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.svc-card .btn-card {
  width: 100%;
}

/* How It Works Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}
.step {
  text-align: center;
  position: relative;
  padding: 1rem;
}

.step-n {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--brand-primary);
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 4px 10px rgba(232, 64, 28, 0.2);
}

.step h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.step p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.step-arr {
  position: absolute;
  right: -1rem;
  top: 1.5rem;
  color: var(--border-light);
  font-size: 24px;
}

/* Why Choose Us Grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.why-card {
  background-color: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  transition: all var(--transition-normal);
}
.why-card:hover {
  border-color: var(--brand-primary);
  box-shadow: var(--shadow-sm);
}
.why-card-img {
  width: 100%;
  height: 180px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 1.25rem;
  background-color: var(--bg-section-alt);
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.why-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.why-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.why-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Testimonials Section */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.testi-card {
  background-color: #FFFFFF;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.testi-card .stars {
  margin-bottom: 1rem;
  color: #FBBF24;
}
.testi-card blockquote {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-style: italic;
  flex-grow: 1;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.tav {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--brand-light);
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tav-name {
  font-size: 14px;
  font-weight: 600;
}
.tav-loc {
  font-size: 11px;
  color: var(--text-secondary);
}

/* CTA Band */
.cta-band {
  background-color: var(--brand-primary);
  color: #FFFFFF;
  padding: 4.5rem 0;
  text-align: center;
}
.cta-band h2 {
  font-size: 32px;
  color: #FFFFFF;
  margin-bottom: 0.75rem;
}
.cta-band p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}
.cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Blog Previews & Main Blog Style */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}
.blog-card {
  background-color: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand-primary);
  box-shadow: var(--shadow-md);
}
.blog-img {
  height: 180px;
  background-color: var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.blog-img i {
  font-size: 48px;
}
.blog-img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
  padding: 1.25rem 1rem 1rem;
  transform: translateY(100%);
  transition: transform 0.35s ease;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.blog-card:hover .blog-img-overlay {
  transform: translateY(0);
}
.blog-card:hover .blog-img img {
  transform: scale(1.05);
}
.blog-img-cat {
  font-size: 11px;
  font-weight: 600;
  color: var(--brand-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(255,255,255,0.9);
  padding: 3px 8px;
  border-radius: 4px;
  width: fit-content;
}
.blog-img-title {
  font-size: 14px;
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1.4;
  margin: 0;
}
.bi-red { background-color: var(--brand-light); color: var(--brand-primary); }
.bi-green { background-color: #E1F5EE; color: #0F6E56; }
.bi-blue { background-color: #E6F1FB; color: #185FA5; }

.blog-body {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.blog-cat {
  font-size: 11px;
  font-weight: 600;
  color: var(--brand-primary);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 0.5rem;
}
.blog-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0.75rem;
}
.blog-meta {
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: auto;
}

/* Contact Grid & Forms */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h3 {
  font-size: 24px;
  margin-bottom: 1.5rem;
}
.c-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 1.5rem;
}
.c-item i {
  font-size: 22px;
  color: var(--brand-primary);
  flex-shrink: 0;
  margin-top: 3px;
}
.c-item span {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.c-form {
  background-color: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}

.f-row {
  margin-bottom: 1.25rem;
}
.f-row label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  display: block;
  margin-bottom: 6px;
}
.f-row input,
.f-row select,
.f-row textarea {
  width: 100%;
  background-color: var(--bg-page);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 14px;
  color: var(--text-primary);
  font-family: var(--font-sans);
  transition: all var(--transition-fast);
}
.f-row input:focus,
.f-row select:focus,
.f-row textarea:focus {
  outline: none;
  border-color: var(--brand-primary);
  background-color: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(232, 64, 28, 0.1);
}
.f-row textarea {
  height: 120px;
  resize: vertical;
}

.f-submit {
  width: 100%;
  background-color: var(--brand-primary);
  color: #FFFFFF;
  border: none;
  padding: 12px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background var(--transition-fast);
}
.f-submit:hover {
  background-color: var(--brand-dark);
}

/* Service Detail & Related Layout */
.layout-sidebar-right {
  display: grid;
  grid-template-columns: 2.2fr 1fr;
  gap: 3rem;
  padding: 4rem 0;
}
.detail-content h1 {
  font-size: 36px;
  margin-bottom: 1rem;
}
.detail-content h2, .detail-content h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}
.detail-content .lead-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 2rem;
  height: 380px;
}
.detail-content .lead-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.detail-content .rich-text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
}
.detail-content .rich-text p {
  margin-bottom: 1.5rem;
}

/* Sidebar Widgets */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.widget {
  background-color: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}
.widget-title {
  font-size: 16px;
  font-weight: 600;
  border-bottom: 1.5px solid var(--brand-primary);
  padding-bottom: 0.5rem;
  margin-bottom: 1.25rem;
}
.widget-links {
  list-style: none;
}
.widget-links li {
  margin-bottom: 0.75rem;
}
.widget-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-secondary);
}
.widget-links a:hover,
.widget-links a.active {
  color: var(--brand-primary);
}

/* ====== Blog Hero ====== */
.about-hero {
  background: linear-gradient(135deg, #FFF5F2 0%, #FFFAF8 50%, #FFF0EB 100%);
  padding: 5rem 0 3.5rem;
  text-align: center;
}
.blog-hero {
  background: linear-gradient(135deg, #FFF5F2 0%, #FFFAF8 50%, #FFF0EB 100%);
  padding: 5rem 0 3.5rem;
  text-align: center;
}
.blog-hero-title {
  font-size: 36px;
  font-weight: 800;
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}
.blog-hero-sub {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}
.blog-hero-meta {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 0.25rem;
}
.blog-back-link {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  color: var(--brand-primary);
  margin-bottom: 1rem;
  text-decoration: none;
}
.blog-back-link:hover {
  text-decoration: underline;
}

/* Blog Filter Info */
.blog-filter-info {
  margin-bottom: 1.5rem;
  font-size: 14px;
  color: var(--text-secondary);
}
.blog-filter-info .badge-pill {
  margin-right: 5px;
}
.blog-clear-link {
  color: var(--brand-primary);
  margin-left: 10px;
  font-weight: 500;
}

/* Blog Empty State */
.blog-empty-state {
  background-color: #FFFFFF;
  border: 1px solid var(--border-light);
  padding: 3rem;
  text-align: center;
  border-radius: var(--radius-lg);
}
.blog-empty-state i {
  font-size: 48px;
  color: #B0AEA6;
  display: block;
  margin-bottom: 1rem;
}
.blog-empty-state h3 {
  font-size: 18px;
  margin-bottom: 5px;
}
.blog-empty-state p {
  color: var(--text-secondary);
  font-size: 14px;
}

/* Blog List Placeholder */
.blog-list-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--brand-light);
  color: var(--brand-primary);
}
.blog-list-placeholder i {
  font-size: 48px;
}

/* Blog Read Link */
.blog-read-link {
  color: var(--brand-primary);
  font-weight: 600;
  font-size: 13px;
}
.blog-read-link:hover {
  text-decoration: underline;
}

/* Sidebar Recent */
.sidebar-recent {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sidebar-recent a {
  display: block;
  line-height: 1.4;
}
.sidebar-recent-title {
  font-weight: 500;
  font-size: 13px;
  color: var(--text-primary);
  display: block;
  margin-bottom: 2px;
}
.sidebar-recent-date {
  font-size: 11px;
  color: var(--text-secondary);
}

/* Sidebar CTA */
.sidebar-cta {
  background-color: var(--brand-primary);
  color: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
}
.sidebar-cta i {
  font-size: 42px;
  margin-bottom: 1rem;
  display: block;
}
.sidebar-cta h3 {
  color: #FFFFFF;
  font-size: 18px;
  margin-bottom: 8px;
}
.sidebar-cta p {
  font-size: 13px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

/* Blog Detail Placeholder */
.blog-detail-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #E6F1FB, #EEEDFE);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
}
.blog-detail-placeholder i {
  font-size: 90px;
  color: #185FA5;
}

/* Blog Related Posts */
.blog-related {
  margin-top: 4rem;
  border-top: 1px solid var(--border-light);
  padding-top: 2rem;
}
.blog-related h3 {
  font-size: 20px;
  margin-bottom: 1.25rem;
}
.blog-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}
.blog-related-card {
  background-color: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  display: block;
  transition: all var(--transition-fast);
  text-decoration: none;
}
.blog-related-card:hover {
  border-color: var(--brand-primary);
  box-shadow: var(--shadow-sm);
}
.blog-related-card h4 {
  font-size: 14px;
  margin-bottom: 8px;
  line-height: 1.4;
  color: var(--text-primary);
}
.blog-related-card span {
  font-size: 11px;
  color: var(--text-secondary);
}

/* Blog Listing & Sidebar Details */
.blog-listing-wrapper {
  display: grid;
  grid-template-columns: 2.2fr 1fr;
  gap: 3rem;
  padding: 4rem 0;
}

.blog-search-bar {
  margin-bottom: 2rem;
}
.blog-search-bar form {
  display: flex;
  gap: 8px;
}
.blog-search-bar input {
  flex-grow: 1;
  background-color: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 14px;
}
.blog-search-bar input:focus {
  outline: none;
  border-color: var(--brand-primary);
}

.blog-list-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.blog-list-card {
  background-color: #FFFFFF;
  border: none;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
}
.blog-list-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(232,64,28,0.12);
}
.blog-list-img {
  height: 190px;
  overflow: hidden;
  position: relative;
}
.blog-list-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(0,0,0,0.15), transparent);
  pointer-events: none;
}
.blog-list-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-list-card:hover .blog-list-img img {
  transform: scale(1.08);
}
.blog-list-content {
  padding: 1.25rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-list-content .blog-cat {
  display: inline-block;
  background: var(--brand-light);
  color: var(--brand-primary);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 0.6rem;
  width: fit-content;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.blog-list-content h2 {
  font-size: 17px;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}
.blog-list-content h2 a {
  color: var(--text-primary);
  transition: color var(--transition-fast);
}
.blog-list-content h2 a:hover {
  color: var(--brand-primary);
}
.blog-list-content p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-meta {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border-light);
  font-size: 12px;
  color: var(--text-secondary);
}

/* Social Share Block */
.share-buttons {
  display: flex;
  gap: 10px;
  margin: 2rem 0;
  align-items: center;
}
.share-lbl {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
}
.share-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 16px;
}
.share-wa { background-color: #25D366; }
.share-fb { background-color: #1877F2; }
.share-tw { background-color: #1DA1F2; }

/* Pagination Styling */
.pagination {
  margin-top: 2rem;
}
.pagination-list {
  display: flex;
  list-style: none;
  gap: 8px;
  justify-content: center;
  align-items: center;
}
.pagination-list a,
.pagination-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  font-size: 14px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  background-color: #FFFFFF;
}
.pagination-list a:hover {
  border-color: var(--brand-primary);
  color: var(--brand-primary);
}
.pagination-list .active {
  background-color: var(--brand-primary);
  border-color: var(--brand-primary);
  color: #FFFFFF;
  font-weight: 600;
}
.pagination-list .disabled {
  color: #B0AEA6;
  background-color: #F3F3F0;
  cursor: not-allowed;
}

/* =============================================
   ABOUT PAGE — Premium Redesign
   ============================================= */

/* About Hero */
.abt-hero {
  position: relative;
}
.abt-hero-banner {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
}
.abt-hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.abt-hero-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.5) 100%);
}

.abt-hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}
.abt-hero-blob-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #F8B4A0 0%, transparent 70%);
  top: -120px;
  right: -80px;
  animation: blobFloat 8s ease-in-out infinite;
}
.abt-hero-blob-2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, #FDD5C8 0%, transparent 70%);
  bottom: -80px;
  left: 5%;
  animation: blobFloat 10s ease-in-out infinite reverse;
}

.abt-hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 4rem 1.5rem 5rem;
}

.abt-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232, 64, 28, 0.08);
  border: 1px solid rgba(232, 64, 28, 0.18);
  color: var(--brand-primary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 7px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
}

.abt-hero-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  color: #111827;
}
.abt-hero-highlight {
  background: linear-gradient(135deg, var(--brand-primary) 0%, #FF6B35 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.abt-hero-sub {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.abt-hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  justify-content: center;
}

.abt-hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  border-top: 1px solid var(--border-light);
  padding-top: 1.75rem;
}
.abt-stat-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--brand-primary);
  line-height: 1;
}
.abt-stat-lbl {
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 4px;
  font-weight: 500;
}
.abt-stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border-light);
}

/* Hero Visual */
.abt-hero-visual {
  position: relative;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.abt-hero-fullvisual {
  position: relative;
  width: 100%;
  z-index: 2;
  margin-bottom: 3rem;
}
.abt-hero-img-frame {
  position: relative;
  width: 100%;
}
.abt-hero-img-frame img {
  width: 100%;
  height: auto;
  display: block;
}
.abt-hero-img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(232,64,28,0.15) 0%, transparent 100%);
  pointer-events: none;
}

/* Hero Floating Cards */
.abt-hero-float {
  position: absolute;
  background: #FFFFFF;
  border-radius: 16px;
  border: 1px solid rgba(232, 64, 28, 0.1);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  padding: 14px 18px;
  z-index: 10;
  animation: floatCard 4s ease-in-out infinite;
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  gap: 10px;
}
.abt-hero-float-badge {
  top: 1.5rem;
  right: 1.5rem;
}
.abt-hero-float-badge i {
  font-size: 28px;
  color: #16A34A;
  flex-shrink: 0;
}
.abt-hero-float-badge strong {
  font-size: 13px;
  font-weight: 700;
  color: #111827;
  display: block;
}
.abt-hero-float-badge span {
  font-size: 11px;
  color: var(--text-secondary);
}

.abt-hero-float-rating {
  bottom: 2.5rem;
  left: -1rem;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
.abt-hfr-stars {
  font-size: 14px;
  color: #FBBF24;
}
.abt-hero-float-rating span {
  font-size: 11px;
  color: var(--text-secondary);
  font-weight: 500;
}

/* Mission & Vision Grid */
.abt-mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.abt-mission-card {
  background-color: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.abt-mission-card:hover {
  border-color: var(--brand-primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.abt-mission-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 26px;
}
.abt-mission-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #111827;
}
.abt-mission-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

/* Mission Card - Red */
.abt-mission-card--mission .abt-mission-icon {
  background-color: var(--brand-light);
  color: var(--brand-primary);
}

/* Vision Card - Blue */
.abt-mission-card--vision .abt-mission-icon {
  background-color: #E6F1FB;
  color: #185FA5;
}

/* Promise Card - Green */
.abt-mission-card--promise .abt-mission-icon {
  background-color: #EAF3DE;
  color: #3B6D11;
}

/* Company Story */
.abt-story-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}
.abt-story-title {
  font-size: 32px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
}
.abt-story-content p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.abt-story-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 1.5rem;
}
.abt-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-section-alt);
  border: 1px solid var(--border-light);
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: var(--radius-full);
}
.abt-tag i {
  color: var(--brand-primary);
  font-size: 14px;
}

/* Story Card */
.abt-story-card {
  background: linear-gradient(135deg, #FFF, #FFF9F8);
  border: 2px solid rgba(232, 64, 28, 0.12);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow-md);
}
.abt-sc-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-light);
}
.abt-sc-header i {
  font-size: 24px;
  color: var(--brand-primary);
}
.abt-sc-header h4 {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  margin: 0;
}
.abt-sc-item {
  display: flex;
  gap: 14px;
  margin-bottom: 1.25rem;
}
.abt-sc-item:last-child {
  margin-bottom: 0;
}
.abt-sc-item > i {
  font-size: 22px;
  color: var(--brand-primary);
  margin-top: 2px;
  flex-shrink: 0;
}
.abt-sc-item strong {
  font-size: 15px;
  font-weight: 600;
  color: #111827;
  display: block;
  margin-bottom: 3px;
}
.abt-sc-item p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Trust Numbers Grid */
.abt-numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.abt-number-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all var(--transition-normal);
}
.abt-number-card:hover {
  border-color: var(--brand-primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.abt-num-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand-light), #FFF0EB);
  color: var(--brand-primary);
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}
.abt-num-value {
  font-size: 32px;
  font-weight: 800;
  color: var(--brand-primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.abt-num-label {
  font-size: 13px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.75rem;
}
.abt-number-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Verification Timeline */
.abt-verify-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
.abt-verify-timeline::before {
  content: '';
  position: absolute;
  left: 40px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--brand-primary), var(--border-light));
}

.abt-verify-step {
  display: flex;
  gap: 2.5rem;
  position: relative;
  padding: 2rem 0;
}
.abt-verify-step + .abt-verify-step {
  border-top: 1px solid transparent;
}

.abt-vs-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-primary), #FF6B35);
  color: #FFF;
  font-size: 24px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(232, 64, 28, 0.3);
  position: relative;
  z-index: 2;
}

.abt-vs-content {
  flex: 1;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition-normal);
}
.abt-vs-content:hover {
  border-color: var(--brand-primary);
  box-shadow: var(--shadow-md);
}

.abt-vs-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--brand-light), #FFF0EB);
  color: var(--brand-primary);
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.abt-vs-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.75rem;
}
.abt-vs-content p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.abt-vs-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #DCFCE7;
  color: #15803D;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: var(--radius-full);
}
.abt-vs-badge i {
  font-size: 14px;
}

/* Footer Section */
.footer {
  background-color: #1A1A18;
  color: #B0AEA6;
  padding: 4.5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer .f-brand-name {
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 1rem;
}
.f-brand-logo {
  display: inline-block;
  margin-bottom: 1rem;
}
.f-brand-logo-img {
  height: 60px;
  width: auto;
  mix-blend-mode: screen;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  transition: opacity 0.3s ease;
}
.f-brand-logo-img:hover {
  opacity: 1;
}
.footer .f-brand p {
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.f-contact-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.f-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: #B0AEA6;
  line-height: 1.5;
}
.f-contact-item i {
  font-size: 16px;
  color: var(--brand-primary);
  margin-top: 2px;
  flex-shrink: 0;
}
.f-contact-item a {
  color: #B0AEA6;
  transition: color 0.2s;
}
.f-contact-item a:hover {
  color: var(--brand-primary);
}
.footer h4 {
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.footer .f-col a {
  display: block;
  font-size: 13px;
  color: #B0AEA6;
  margin-bottom: 0.75rem;
}
.footer .f-col a:hover {
  color: var(--brand-primary);
}
.footer-bottom {
  border-top: 1px solid #333330;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}
.f-bottom-contact {
  display: flex;
  gap: 1.5rem;
}
.f-bottom-contact a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #B0AEA6;
  transition: color 0.2s;
}
.f-bottom-contact a:hover {
  color: var(--brand-primary);
}
.f-bottom-contact i {
  font-size: 14px;
}

/* Floating WhatsApp Widget */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: #25D366;
  color: #FFFFFF;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  z-index: 999;
  transition: transform var(--transition-fast);
}
.whatsapp-float:hover {
  transform: scale(1.1);
}

/* Floating Call Widget */
.call-float {
  position: fixed;
  bottom: 6.5rem;
  right: 2rem;
  background-color: var(--brand-primary);
  color: #FFFFFF;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 4px 12px rgba(232, 64, 28, 0.35);
  z-index: 999;
  transition: all var(--transition-fast);
}
.call-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(232, 64, 28, 0.5);
}
.call-float i {
  animation: callingEffect 1.5s ease-in-out infinite;
}
@keyframes callingEffect {
  0% { transform: rotate(0deg); }
  5% { transform: rotate(15deg); }
  10% { transform: rotate(-15deg); }
  15% { transform: rotate(15deg); }
  20% { transform: rotate(-15deg); }
  25% { transform: rotate(10deg); }
  30% { transform: rotate(0deg); }
  100% { transform: rotate(0deg); }
}
.call-float::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--brand-primary);
  animation: callRing 1.5s ease-out infinite;
  z-index: -1;
}
@keyframes callRing {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.8); opacity: 0; }
}

/* Thank you page styling */
.thank-you-wrapper {
  padding: 6rem 0;
  text-align: center;
}
.thank-you-wrapper i {
  font-size: 64px;
  color: #22C55E;
  margin-bottom: 1.5rem;
}
.thank-you-wrapper h1 {
  font-size: 36px;
  margin-bottom: 1rem;
}
.thank-you-wrapper p {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

/* Custom 404 Styling */
.err-wrapper {
  padding: 6rem 0;
  text-align: center;
}
.err-wrapper h1 {
  font-size: 82px;
  color: var(--brand-primary);
  margin-bottom: 1rem;
}
.err-wrapper p {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

/* =============================================
   SERVICE DETAIL PAGE — Full Redesign
   ============================================= */

/* Hero Banner */
.svc-hero-banner {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}
.svc-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  filter: blur(3px) saturate(0.8);
  transform: scale(1.05);
}
.svc-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232,64,28,0.75) 0%, rgba(26,26,46,0.85) 100%);
}
.svc-hero-inner {
  position: relative;
  z-index: 2;
  padding: 3rem 1.5rem;
}
.svc-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 2rem;
}
.svc-breadcrumb a {
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.svc-breadcrumb a:hover { color: #FFF; }
.svc-breadcrumb i { font-size: 10px; }
.svc-breadcrumb span { color: rgba(255,255,255,0.9); }

.svc-hero-content { max-width: 680px; }
.svc-icon-wrap {
  width: 68px;
  height: 68px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 1.25rem;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  color: #FFF;
}
.svc-hero-banner h1 {
  font-size: 42px;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}
.svc-hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 540px;
}
.svc-hero-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.svc-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}
.svc-badge-green  { background: rgba(22,163,74,0.25); color: #86EFAC; border: 1px solid rgba(22,163,74,0.35); }
.svc-badge-blue   { background: rgba(37,99,235,0.25); color: #93C5FD; border: 1px solid rgba(37,99,235,0.35); }
.svc-badge-amber  { background: rgba(217,119,6,0.25);  color: #FCD34D; border: 1px solid rgba(217,119,6,0.35); }

/* Main Layout */
.svc-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 2.5rem;
  padding-top: 3rem;
  padding-bottom: 4rem;
  align-items: start;
}

/* Main Content */
.svc-main { min-width: 0; }

/* Service Image Card */
.svc-img-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 2.5rem;
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}
.svc-img-card img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s ease;
}
.svc-img-card:hover img { transform: scale(1.03); }
.svc-img-ribbon {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(22, 163, 74, 0.92);
  backdrop-filter: blur(8px);
  color: #FFF;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Rich Content Typography */
.svc-rich-content {
  line-height: 1.8;
  color: var(--text-primary);
  margin-bottom: 2.5rem;
}
.svc-rich-content h3 {
  font-size: 22px;
  font-weight: 700;
  color: #111827;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--brand-light);
}
.svc-rich-content h3:first-child { margin-top: 0; }
.svc-rich-content p {
  font-size: 15.5px;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}
.svc-rich-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.25rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.svc-rich-content ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: #374151;
  background: #F9FAFB;
  border: 1px solid #E5E7EB;
  border-radius: 10px;
  padding: 10px 14px;
  line-height: 1.5;
}
.svc-rich-content ul li i {
  color: #16A34A;
  font-size: 16px;
  margin-top: 1px;
  flex-shrink: 0;
}

/* Info Boxes */
.info-boxes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 1rem;
}
.info-box {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: linear-gradient(135deg, #FFF5F2, #FFF0EB);
  border: 1px solid rgba(232,64,28,0.15);
  border-radius: 12px;
  padding: 14px 16px;
}
.info-box strong {
  font-size: 11px;
  font-weight: 700;
  color: var(--brand-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.info-box span {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
}

/* Section Heading */
.svc-section-heading {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.svc-section-heading i { color: var(--brand-primary); }

/* Trust Features Grid */
.svc-trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 2.5rem;
}
.strust-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #FFF;
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 16px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}
.strust-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.strust-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.strust-green  { background: #DCFCE7; color: #16A34A; }
.strust-blue   { background: #DBEAFE; color: #2563EB; }
.strust-amber  { background: #FEF3C7; color: #D97706; }
.strust-purple { background: #EDE9FE; color: #7C3AED; }
.strust-title  { font-size: 14px; font-weight: 700; color: #111827; }
.strust-sub    { font-size: 12px; color: var(--text-secondary); margin-top: 2px; }

/* Testimonials */
.svc-testimonials { margin-bottom: 2.5rem; }
.svc-testi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.svc-testi-card {
  background: #FFF;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 20px;
  box-shadow: var(--shadow-sm);
}
.svc-testi-stars { color: #FBBF24; font-size: 16px; margin-bottom: 10px; }
.svc-testi-card blockquote {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 16px;
  font-style: italic;
}
.svc-testi-author {
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid var(--border-light);
  padding-top: 12px;
}
.svc-tav {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-primary), #FF6B35);
  color: #FFF;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.svc-tav-name { font-size: 13px; font-weight: 700; color: #111827; }
.svc-tav-loc  { font-size: 11px; color: var(--text-secondary); }

/* CTA Band */
.svc-cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  background: linear-gradient(135deg, var(--brand-primary) 0%, #C4341A 100%);
  border-radius: 20px;
  padding: 2rem 2.5rem;
  box-shadow: 0 12px 40px rgba(232,64,28,0.25);
}
.svc-cta-left h3 {
  font-size: 20px;
  font-weight: 700;
  color: #FFF;
  margin-bottom: 4px;
}
.svc-cta-left p {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
}
.svc-cta-right {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.svc-cta-right .btn-outline {
  border-color: rgba(255,255,255,0.5);
  color: #FFF;
  background: transparent;
}
.svc-cta-right .btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: #FFF;
}

/* ====== SIDEBAR ====== */
.svc-sidebar { position: sticky; top: 105px; }
.svc-widget {
  background: #FFF;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.svc-widget-form {
  border: 2px solid rgba(232,64,28,0.15);
  background: linear-gradient(135deg, #FFF, #FFF9F8);
}
.svc-widget-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-light);
}
.svc-widget-header > i {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--brand-primary), #FF6B35);
  color: #FFF;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.swh-title { font-size: 16px; font-weight: 700; color: #111827; }
.swh-sub   { font-size: 12px; color: var(--text-secondary); margin-top: 2px; }

.svc-form-error {
  background: #FEE2E2;
  color: #B91C1C;
  font-size: 13px;
  font-weight: 500;
  padding: 10px 14px;
  border-radius: 8px;
  margin-bottom: 14px;
}
.svc-enq-form .f-row { margin-bottom: 12px; }
.svc-enq-form .f-row label {
  font-size: 12px;
  font-weight: 600;
  color: #374151;
  display: block;
  margin-bottom: 5px;
}
.svc-enq-form input,
.svc-enq-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  font-size: 14px;
  font-family: var(--font-sans);
  color: var(--text-primary);
  background: #FAFAFA;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.svc-enq-form input:focus,
.svc-enq-form textarea:focus {
  outline: none;
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(232,64,28,0.1);
  background: #FFF;
}
.svc-submit-btn {
  width: 100%;
  padding: 13px;
  background: linear-gradient(135deg, var(--brand-primary), #C4341A);
  color: #FFF;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 6px 20px rgba(232,64,28,0.3);
}
.svc-submit-btn:hover { opacity: 0.92; transform: translateY(-1px); }
.svc-form-footer {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--text-secondary);
  margin-top: 10px;
  justify-content: center;
}

.svc-widget-title {
  font-size: 15px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-light);
}

/* Quick Contact Buttons */
.svc-contact-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 12px;
  text-decoration: none;
  margin-bottom: 10px;
  transition: transform 0.2s, box-shadow 0.2s;
  font-size: 14px;
}
.svc-contact-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.svc-contact-btn > i { font-size: 24px; flex-shrink: 0; }
.svc-contact-btn div span { display: block; font-weight: 700; }
.svc-contact-btn div small { font-size: 12px; opacity: 0.8; }
.svc-btn-call {
  background: linear-gradient(135deg, #1d4ed8, #1e40af);
  color: #FFF;
}
.svc-btn-wa {
  background: linear-gradient(135deg, #16a34a, #15803d);
  color: #FFF;
}

/* Other Services List */
.svc-other-list { display: flex; flex-direction: column; gap: 8px; }
.svc-other-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--border-light);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  background: #FAFAFA;
}
.svc-other-item:hover {
  background: var(--brand-light);
  border-color: rgba(232,64,28,0.2);
  transform: translateX(4px);
}
.svc-other-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--brand-light);
  color: var(--brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.svc-other-title { font-size: 13px; font-weight: 700; color: #111827; }
.svc-other-sub   { font-size: 11px; color: var(--text-secondary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 180px; }
.svc-other-arr   { margin-left: auto; font-size: 14px; color: var(--brand-primary); flex-shrink: 0; opacity: 0; transition: opacity 0.2s; }
.svc-other-item:hover .svc-other-arr { opacity: 1; }



/* Mobile Responsive Adjustments */
@media (max-width: 992px) {
  .hero-slider {
    height: 480px;
  }
  .hero-slider-content h1 {
    font-size: 32px;
  }
  .hero-slider-stats {
    gap: 1.5rem;
    font-size: 12px;
  }
  .hero-slider-arrow {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  .hero-slider-prev { left: 1rem; }
  .hero-slider-next { right: 1rem; }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .layout-sidebar-right,
  .blog-listing-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .blog-list-items {
    grid-template-columns: 1fr;
  }
  .blog-list-card {
    flex-direction: row;
  }
  .blog-list-img {
    width: 200px;
    min-width: 200px;
    height: auto;
  }
  .about-story,
  .abt-story-wrapper,
  .abt-hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  .abt-hero-title {
    font-size: 34px;
  }
  .abt-hero-banner {
    height: 380px;
  }
  .abt-hero-visual {
    order: -1;
    height: 360px;
    width: 100%;
    margin: 0 auto;
    max-width: 420px;
  }
  .abt-hero-fullvisual {
    width: 100%;
    padding: 0;
  }
  .abt-hero-img-frame {
    height: 450px;
    border-radius: 16px;
  }
  .abt-hero-float-badge {
    right: -0.5rem;
    top: 1rem;
  }
.abt-hero-float-rating {
  bottom: 1.5rem;
  left: 1.5rem;
  right: auto;
  transform: none;
}
  .abt-mission-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .abt-numbers-grid {
    grid-template-columns: 1fr 1fr;
  }
  .abt-verify-step {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    text-align: center;
  }
  .abt-verify-timeline::before {
    display: none;
  }
  .abt-vs-number {
    width: 64px;
    height: 64px;
    font-size: 20px;
  }
  .abt-hero-sub {
    margin: 0 auto 2rem;
  }
  .abt-hero-ctas {
    justify-content: center;
  }
  .abt-hero-stats {
    justify-content: center;
  }
}

/* Mobile Overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 99;
  backdrop-filter: blur(2px);
}
.nav-overlay.active {
  display: block;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    height: 100dvh;
    background-color: #FFFFFF;
    z-index: 101;
    padding: 80px 1.5rem 2rem;
    gap: 0;
    overflow-y: auto;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
    animation: slideInRight 0.3s ease;
  }
  @keyframes slideInRight {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
  }
  .nav-links.mobile-open > a,
  .nav-links.mobile-open > .nav-dropdown {
    padding: 14px 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 15px;
    font-weight: 500;
  }
  .nav-links.mobile-open > a:last-child {
    border-bottom: none;
  }
  .nav-links.mobile-open .nav-dropdown {
    padding-bottom: 0;
    border-bottom: none;
  }
  .nav-links.mobile-open .nav-dropdown-toggle {
    padding: 14px 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 15px;
    font-weight: 500;
  }
  .nav-links.mobile-open .nav-dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    min-width: auto;
    padding: 0 0 0 1rem;
    display: none;
  }
  .nav-links.mobile-open .nav-dropdown.open .nav-dropdown-menu {
    display: block;
  }
  .nav-links.mobile-open .nav-dropdown-menu a {
    padding: 10px 1rem;
    font-size: 13px;
  }
  .mobile-toggle {
    display: block;
  }
  .mobile-toggle.active i {
    transform: rotate(90deg);
    transition: transform 0.3s ease;
  }
  .nav-actions .btn-primary {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .f-bottom-contact {
    flex-direction: column;
    gap: 0.5rem;
  }
  .step-arr {
    display: none;
  }
  .hero-slider {
    height: 380px;
  }
  .hero-slider-content h1 {
    font-size: 24px;
  }
  .hero-slider-dots {
    bottom: 0.75rem;
  }
  .hero-dot {
    width: 8px;
    height: 8px;
  }
  .hero-slider-arrow {
    display: none;
  }
  .sec-title {
    font-size: 26px;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .abt-numbers-grid {
    grid-template-columns: 1fr;
  }
  .abt-hero-stats {
    flex-direction: column;
    gap: 1rem;
  }
  .abt-stat-divider {
    display: none;
  }
}

/* ====== Responsive: Service Detail ====== */
@media (max-width: 1024px) {
  .svc-layout {
    grid-template-columns: 1fr;
  }
  .svc-sidebar {
    position: static;
  }
  .svc-testi-grid,
  .svc-trust-grid {
    grid-template-columns: 1fr 1fr;
  }
  .svc-rich-content ul {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .svc-hero-banner h1 { font-size: 28px; }
  .svc-hero-sub { font-size: 14px; }
  .svc-hero-badges { gap: 8px; }
  .svc-badge { font-size: 11px; padding: 5px 11px; }
  .svc-img-card img { height: 240px; }
  .svc-trust-grid { grid-template-columns: 1fr 1fr; }
  .svc-testi-grid { grid-template-columns: 1fr; }
  .info-boxes { grid-template-columns: 1fr 1fr; }
  .svc-cta-band { flex-direction: column; text-align: center; }
  .svc-cta-right { justify-content: center; }
}

@media (max-width: 480px) {
  .svc-trust-grid { grid-template-columns: 1fr; }
  .info-boxes { grid-template-columns: 1fr; }
}

