/*
Theme Name: Superior Transways
Theme URI: https://superiortransways.com
Author: Superior Transways
Author URI: https://superiortransways.com
Description: Custom professional logistics & transport theme for Superior Transways, Mumbai. Includes Home, About, Services, Branches, Contact pages and Blog support.
Version: 1.4.5
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: superior-transways
Tags: logistics, transport, business, corporate, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* =============================================
   RESET & ROOT VARIABLES
============================================= */
:root {
  --navy: #0a1628;
  --navy-mid: #112240;
  --navy-light: #1a3356;
  --orange: #e8650a;
  --orange-light: #f47c2a;
  --white: #ffffff;
  --off-white: #f4f6f9;
  --gray: #6b7280;
  --gray-light: #e5e7eb;
  --text: #1f2937;
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Barlow', sans-serif; color: var(--text); background: var(--white); font-size: 16px; line-height: 1.6; }
img { max-width: 100%; height: auto; }
a { text-decoration: none; }

/* =============================================
   CONTAINER
============================================= */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* =============================================
   TOP BAR
============================================= */
.topbar {
  background: var(--navy);
  padding: 8px 0;
  font-size: 12.5px;
  color: rgba(255,255,255,0.75);
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 6px; }
.topbar a { color: rgba(255,255,255,0.72); text-decoration: none; transition: color 0.2s; display: inline-flex; align-items: center; gap: 5px; }
.topbar a:hover { color: var(--orange); }
.topbar-left { display: flex; gap: 22px; flex-wrap: wrap; align-items: center; }
.topbar-right { display: flex; gap: 16px; align-items: center; }
.topbar-social { display: flex; gap: 10px; align-items: center; padding-right: 12px; border-right: 1px solid rgba(255,255,255,0.15); }
.topbar-social a { width: 28px; height: 28px; background: rgba(255,255,255,0.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.65); transition: all 0.2s; }
.topbar-social a:hover { background: var(--orange); color: #fff; transform: translateY(-1px); }
.topbar-phone { background: var(--orange); color: #fff !important; padding: 5px 14px; border-radius: 2px; font-weight: 700; font-size: 12.5px; display: inline-flex !important; align-items: center; gap: 6px; }

/* =============================================
   NAVIGATION
============================================= */
#site-header {
  background: #fff;
  border-bottom: 3px solid var(--orange);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(0,0,0,0.10);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 92px; }

/* Logo */
.site-logo { display: flex; align-items: center; text-decoration: none; }
.site-logo-img { height: 84px; width: auto; display: block; object-fit: contain; }

/* Desktop Menu */
#primary-navigation { display: flex; align-items: center; }
#primary-navigation ul { display: flex; list-style: none; gap: 0; margin: 0; padding: 0; }
#primary-navigation ul li a {
  display: block;
  padding: 28px 17px;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  transition: color 0.2s;
}
#primary-navigation ul li a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 17px; right: 17px;
  height: 3px;
  background: var(--navy);
  transform: scaleX(0);
  transition: transform 0.2s;
}
#primary-navigation ul li a:hover,
#primary-navigation ul li.current-menu-item > a,
#primary-navigation ul li.current_page_item > a,
#primary-navigation ul li.current-page-ancestor > a {
  color: var(--navy);
  opacity: 0.7;
}
#primary-navigation ul li a:hover::after,
#primary-navigation ul li.current-menu-item > a::after,
#primary-navigation ul li.current_page_item > a::after {
  transform: scaleX(1);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
}
.hamburger span {
  display: block;
  height: 3px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile Nav Drawer */
#mobile-nav {
  display: none;
  position: fixed;
  top: 87px; left: 0; right: 0;
  background: var(--white);
  border-top: 3px solid var(--orange);
  box-shadow: 0 8px 24px rgba(0,0,0,0.14);
  z-index: 999;
  padding: 12px 0 20px;
}
#mobile-nav.open { display: block; }
#mobile-nav a {
  display: flex;
  align-items: center;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-left: 3px solid transparent;
  transition: all 0.15s;
}
#mobile-nav a:hover,
#mobile-nav a.current { color: var(--orange); border-left-color: var(--orange); background: var(--off-white); }
.mobile-nav-phone {
  margin: 12px 24px 0;
  display: flex !important;
  align-items: center;
  gap: 8px;
  background: var(--orange) !important;
  color: #fff !important;
  padding: 13px 18px !important;
  border-radius: 3px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  justify-content: center;
  border-left: none !important;
}

/* =============================================
   BREADCRUMB
============================================= */
.breadcrumb-bar { background: var(--off-white); border-bottom: 1px solid var(--gray-light); padding: 12px 0; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--gray); flex-wrap: wrap; }
.breadcrumb a { color: var(--navy); text-decoration: none; font-weight: 500; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb .sep { color: var(--orange); }

/* =============================================
   PAGE HERO (inner pages)
============================================= */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, var(--navy-light) 100%);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1601584115197-04ecc0da31d7?w=1400&q=60') center/cover no-repeat;
  opacity: 0.08;
}
.page-hero .container { position: relative; }
.page-hero h1 { font-family: 'Barlow Condensed', sans-serif; font-size: 42px; font-weight: 800; color: var(--white); margin-bottom: 10px; }
.page-hero p { font-size: 17px; color: rgba(255,255,255,0.7); max-width: 560px; }
.page-hero .accent-line { width: 56px; height: 4px; background: var(--orange); margin: 14px 0; border-radius: 2px; }

/* =============================================
   SECTION UTILITIES
============================================= */
section { padding: 80px 0; }
.section-label { font-size: 12px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--orange); margin-bottom: 10px; }
.section-title { font-family: 'Barlow Condensed', sans-serif; font-size: 36px; font-weight: 800; color: var(--navy); line-height: 1.15; margin-bottom: 16px; }
.section-title span { color: var(--orange); }
.section-sub { font-size: 16px; color: var(--gray); max-width: 580px; line-height: 1.65; }
.section-divider { width: 48px; height: 4px; background: var(--orange); border-radius: 2px; margin: 14px 0 24px; }
.bg-light { background: var(--off-white); }
.bg-navy { background: var(--navy); }
.bg-navy .section-title { color: var(--white); }
.bg-navy .section-sub { color: rgba(255,255,255,0.65); }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* =============================================
   BUTTONS
============================================= */
.btn { display: inline-block; padding: 13px 28px; font-size: 14px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; text-decoration: none; border-radius: 3px; transition: all 0.2s; cursor: pointer; border: none; font-family: 'Barlow', sans-serif; }
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: var(--orange-light); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(232,101,10,0.35); color: #fff; }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.6); }
.btn-outline:hover { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-light); color: #fff; }
.btn-white { background: #fff; color: var(--orange); }
.btn-white:hover { background: var(--off-white); }

/* =============================================
   HOME – HERO
============================================= */
.hero {
  position: relative;
  height: 620px;
  background: url('https://images.unsplash.com/photo-1601584115197-04ecc0da31d7?w=1600&q=80') center/cover no-repeat;
  display: flex;
  align-items: center;
}
.hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,22,40,0.92) 0%, rgba(10,22,40,0.7) 60%, rgba(10,22,40,0.25) 100%); }
.hero-content { position: relative; max-width: 640px; }
.hero-badge { display: inline-block; background: var(--orange); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 5px 14px; border-radius: 2px; margin-bottom: 18px; }
.hero-content h1 { font-family: 'Barlow Condensed', sans-serif; font-size: 56px; font-weight: 800; color: #fff; line-height: 1.05; margin-bottom: 18px; }
.hero-content h1 span { color: var(--orange); }
.hero-content p { font-size: 18px; color: rgba(255,255,255,0.8); margin-bottom: 32px; line-height: 1.6; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 40px; margin-top: 44px; padding-top: 36px; border-top: 1px solid rgba(255,255,255,0.15); flex-wrap: wrap; }
.hero-stat .num { font-family: 'Barlow Condensed', sans-serif; font-size: 32px; font-weight: 800; color: var(--orange); }
.hero-stat .lbl { font-size: 12px; color: rgba(255,255,255,0.6); letter-spacing: 0.5px; margin-top: 2px; }

/* =============================================
   HOME – INTRO
============================================= */
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.intro-img { position: relative; }
.intro-img img { width: 100%; height: 400px; object-fit: cover; border-radius: 4px; }
.intro-badge { position: absolute; bottom: -20px; right: -20px; background: var(--orange); color: #fff; padding: 20px 24px; text-align: center; border-radius: 4px; }
.intro-badge .big { font-family: 'Barlow Condensed', sans-serif; font-size: 36px; font-weight: 800; display: block; }
.intro-badge .small { font-size: 12px; letter-spacing: 1px; text-transform: uppercase; }
.intro-text p { font-size: 16px; color: var(--gray); line-height: 1.75; margin-bottom: 16px; }
.intro-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; }
.intro-feat { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; color: var(--navy); }
.intro-feat::before { content: '✓'; background: var(--orange); color: #fff; width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; flex-shrink: 0; }

/* =============================================
   HOME – SERVICES GRID
============================================= */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.service-card { background: var(--white); border: 1px solid rgba(0,0,0,0.07); border-radius: 18px; overflow: hidden; box-shadow: 0 2px 6px rgba(0,0,0,0.06), 0 10px 28px rgba(0,0,0,0.09); transition: transform 0.25s, box-shadow 0.25s; }
.service-card:hover { transform: translateY(-5px); box-shadow: 0 4px 10px rgba(0,0,0,0.08), 0 20px 44px rgba(0,0,0,0.13); }
.service-card img { width: 100%; height: 180px; object-fit: cover; }
.service-card-body { padding: 22px 24px; }
.service-card-body h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.service-card-body p { font-size: 14px; color: var(--gray); line-height: 1.6; }
.service-card-link { display: inline-block; margin-top: 14px; font-size: 13px; font-weight: 700; color: var(--orange); text-decoration: none; text-transform: uppercase; letter-spacing: 0.5px; }
.service-card-link:hover { text-decoration: underline; }
.services-cta { text-align: center; margin-top: 44px; }

/* =============================================
   HOME – WHY CHOOSE US
============================================= */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 48px; }
.why-card {
    padding: 32px 28px;
    background: var(--white);
    border-radius: 18px;
    border: 1px solid rgba(0,0,0,0.07);
    border-left: 4px solid var(--orange);
    border-top-left-radius: 18px;
    border-bottom-left-radius: 18px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06), 0 10px 28px rgba(0,0,0,0.09), inset 0 1px 0 rgba(255,255,255,0.9);
    transition: box-shadow 0.25s, transform 0.25s;
    position: relative;
}
.why-card:hover {
    box-shadow: 0 4px 10px rgba(0,0,0,0.08), 0 18px 40px rgba(0,0,0,0.13), inset 0 1px 0 rgba(255,255,255,0.9);
    transform: translateY(-4px);
}
.why-icon { font-size: 36px; margin-bottom: 16px; }
.why-card h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.why-card p { font-size: 14px; color: var(--gray); line-height: 1.65; }

/* =============================================
   HOME – PROCESS
============================================= */
.process-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 48px; position: relative; }
.process-row::before { content: ''; position: absolute; top: 32px; left: 16.6%; right: 16.6%; height: 2px; background: var(--gray-light); z-index: 0; }
.process-step { text-align: center; padding: 0 24px; position: relative; z-index: 1; }
.step-num { width: 64px; height: 64px; background: var(--orange); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Barlow Condensed', sans-serif; font-size: 24px; font-weight: 800; margin: 0 auto 20px; border: 4px solid var(--white); box-shadow: 0 4px 16px rgba(232,101,10,0.3); }
.process-step h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.process-step p { font-size: 14px; color: var(--gray); line-height: 1.6; }

/* =============================================
   HOME – TESTIMONIALS
============================================= */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }
.testimonials-grid-4 { grid-template-columns: repeat(4, 1fr); }
.testimonial { background: var(--white); padding: 28px 24px; border-radius: 18px; border: 1px solid rgba(0,0,0,0.07); box-shadow: 0 2px 6px rgba(0,0,0,0.06), 0 10px 28px rgba(0,0,0,0.09), inset 0 1px 0 rgba(255,255,255,0.9); border-top: 4px solid var(--orange); display: flex; flex-direction: column; transition: transform 0.25s, box-shadow 0.25s; }
.testimonial:hover { transform: translateY(-4px); box-shadow: 0 4px 10px rgba(0,0,0,0.08), 0 18px 40px rgba(0,0,0,0.13), inset 0 1px 0 rgba(255,255,255,0.9); }
.testimonial-stars { color: var(--orange); font-size: 14px; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial p { font-size: 14px; color: var(--gray); line-height: 1.7; font-style: italic; flex: 1; }
.testimonial-author { margin-top: 20px; display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 44px; height: 44px; background: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Barlow Condensed', sans-serif; font-size: 18px; font-weight: 700; color: var(--white); flex-shrink: 0; }
.testimonial-author .name { font-weight: 700; font-size: 14px; color: var(--navy); }
.testimonial-author .role { font-size: 12px; color: var(--gray); }

/* =============================================
   CTA BAND
============================================= */
.cta-band { background: var(--orange); padding: 56px 0; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-inner h2 { font-family: 'Barlow Condensed', sans-serif; font-size: 34px; font-weight: 800; color: #fff; margin: 0; }
.cta-inner p { color: rgba(255,255,255,0.8); font-size: 16px; margin-top: 6px; margin-bottom: 0; }
.cta-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

/* =============================================
   ABOUT PAGE
============================================= */
.about-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-intro-grid img { width: 100%; height: 420px; object-fit: cover; border-radius: 4px; }
.about-intro-grid p { font-size: 16px; color: var(--gray); line-height: 1.75; margin-bottom: 16px; }
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 16px; }
.mv-card { background: var(--off-white); padding: 32px; border-top: 4px solid var(--orange); }
.mv-card h3 { font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.mv-card p { font-size: 15px; color: var(--gray); line-height: 1.7; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px; }
.value-card { text-align: center; padding: 32px 20px; background: var(--white); border-radius: 4px; border: 1px solid var(--gray-light); }
.value-icon { font-size: 36px; margin-bottom: 14px; }
.value-card h3 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.value-card p { font-size: 13px; color: var(--gray); line-height: 1.6; }
.team-card { background: var(--off-white); padding: 40px; border-radius: 4px; }
.team-card p { font-size: 16px; color: var(--gray); line-height: 1.75; margin-bottom: 14px; }
.exp-bar { display: flex; gap: 48px; flex-wrap: wrap; margin-top: 28px; }
.exp-item .num { font-family: 'Barlow Condensed', sans-serif; font-size: 40px; font-weight: 800; color: var(--orange); }
.exp-item .lbl { font-size: 13px; color: var(--gray); letter-spacing: 0.5px; margin-top: 4px; }

/* =============================================
   SERVICES PAGE
============================================= */
.service-section { padding: 64px 0; border-bottom: 1px solid var(--gray-light); }
.service-section:last-child { border-bottom: none; }
.service-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.service-detail-grid.reverse { direction: rtl; }
.service-detail-grid.reverse > * { direction: ltr; }
.service-detail-grid img { width: 100%; height: 340px; object-fit: cover; border-radius: 4px; }
.service-detail-content h2 { font-family: 'Barlow Condensed', sans-serif; font-size: 30px; font-weight: 800; color: var(--navy); margin-bottom: 12px; }
.service-detail-content p { font-size: 15px; color: var(--gray); line-height: 1.75; margin-bottom: 18px; }
.benefits-list { list-style: none; margin: 0 0 24px; padding: 0; }
.benefits-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text); margin-bottom: 8px; line-height: 1.5; }
.benefits-list li::before { content: '▶'; color: var(--orange); font-size: 10px; margin-top: 3px; flex-shrink: 0; }
.service-tag { display: inline-block; background: var(--off-white); border: 1px solid var(--gray-light); font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--navy); padding: 4px 12px; border-radius: 2px; margin-bottom: 12px; }

/* =============================================
   BRANCHES PAGE
============================================= */
.hub-card { background: var(--orange); color: #fff; padding: 40px; border-radius: 4px; margin-bottom: 48px; }
.hub-card h2 { font-family: 'Barlow Condensed', sans-serif; font-size: 28px; font-weight: 800; margin-bottom: 6px; }
.hub-card p { opacity: 0.85; font-size: 15px; line-height: 1.65; margin-bottom: 0; }
.hub-detail { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 20px; }
.hub-detail div { background: rgba(0,0,0,0.15); padding: 16px 18px; border-radius: 3px; }
.hub-detail div strong { display: block; font-size: 12px; letter-spacing: 1px; text-transform: uppercase; opacity: 0.7; margin-bottom: 4px; }
.hub-detail div span { font-size: 15px; font-weight: 600; }
.hub-detail div a { color: #fff; text-decoration: none; }
.states-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 36px; }
.metro-areas-grid { grid-template-columns: repeat(5, 1fr); }
.state-item { background: var(--white); border: 1px solid var(--gray-light); padding: 14px 16px; border-radius: 3px; font-size: 14px; font-weight: 600; color: var(--navy); display: flex; align-items: center; gap: 8px; }
.state-item::before { content: '📍'; font-size: 14px; }
.map-embed { margin-top: 48px; border-radius: 4px; overflow: hidden; }
.map-embed iframe { width: 100%; height: 420px; border: none; display: block; }

/* =============================================
   CONTACT PAGE
============================================= */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; }
.contact-info h3 { font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 20px; }
.contact-detail { display: flex; gap: 16px; margin-bottom: 24px; }
.contact-icon { width: 48px; height: 48px; background: var(--off-white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.contact-detail-text strong { display: block; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--gray); margin-bottom: 3px; }
.contact-detail-text span,
.contact-detail-text a { font-size: 16px; color: var(--navy); font-weight: 600; text-decoration: none; }
.contact-detail-text a:hover { color: var(--orange); }
.whatsapp-btn { display: flex; align-items: center; gap: 10px; background: #25d366; color: #fff; padding: 13px 24px; border-radius: 3px; font-weight: 700; font-size: 15px; text-decoration: none; margin-top: 28px; width: fit-content; transition: background 0.2s; }
.whatsapp-btn:hover { background: #20c45d; color: #fff; }
.contact-form-wrap { background: var(--off-white); padding: 40px; border-radius: 4px; }
.contact-form-wrap h3 { font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 24px; }
.wpcf7-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--navy); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px; }
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea,
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form select,
.wpcf7-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-light);
  border-radius: 3px;
  font-size: 15px;
  font-family: 'Barlow', sans-serif;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
.wpcf7-form input:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus { border-color: var(--orange); }
.form-group textarea,
.wpcf7-form textarea { height: 130px; resize: vertical; }
.wpcf7-form input[type="submit"],
.form-submit-btn {
  width: 100%;
  padding: 16px;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 3px;
  font-size: 15px;
  font-weight: 700;
  font-family: 'Barlow', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background 0.2s;
}
.wpcf7-form input[type="submit"]:hover,
.form-submit-btn:hover { background: var(--orange-light); }

/* =============================================
   BLOG – ARCHIVE (blog listing page)
============================================= */
.blog-archive-wrap { display: grid; grid-template-columns: 2fr 1fr; gap: 48px; padding: 64px 0; }
.posts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.post-card { background: var(--white); border: 1px solid var(--gray-light); border-radius: 4px; overflow: hidden; transition: box-shadow 0.2s; }
.post-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.post-card-thumb { width: 100%; height: 190px; object-fit: cover; display: block; }
.post-card-thumb-placeholder { width: 100%; height: 190px; background: var(--navy-mid); display: flex; align-items: center; justify-content: center; font-size: 40px; }
.post-card-body { padding: 20px; }
.post-meta { font-size: 12px; color: var(--gray); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.5px; }
.post-meta a { color: var(--orange); font-weight: 600; text-decoration: none; }
.post-card-body h2 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 8px; line-height: 1.35; }
.post-card-body h2 a { color: var(--navy); text-decoration: none; }
.post-card-body h2 a:hover { color: var(--orange); }
.post-card-body p { font-size: 14px; color: var(--gray); line-height: 1.6; }
.post-card-footer { padding: 12px 20px; border-top: 1px solid var(--gray-light); }
.read-more { font-size: 13px; font-weight: 700; color: var(--orange); text-decoration: none; text-transform: uppercase; letter-spacing: 0.5px; }
.read-more:hover { text-decoration: underline; }

/* Blog Sidebar */
.blog-sidebar { }
.sidebar-widget { margin-bottom: 36px; }
.sidebar-widget h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 18px; font-weight: 800; color: var(--navy); margin-bottom: 14px; padding-bottom: 10px; border-bottom: 2px solid var(--orange); }
.sidebar-widget ul { list-style: none; padding: 0; }
.sidebar-widget ul li { padding: 8px 0; border-bottom: 1px solid var(--gray-light); font-size: 14px; }
.sidebar-widget ul li a { color: var(--text); text-decoration: none; }
.sidebar-widget ul li a:hover { color: var(--orange); }
.sidebar-cta { background: var(--navy); color: #fff; padding: 28px; border-radius: 4px; text-align: center; }
.sidebar-cta h4 { color: #fff; border-bottom: 2px solid var(--orange); font-size: 17px; margin-bottom: 12px; }
.sidebar-cta p { font-size: 14px; color: rgba(255,255,255,0.7); margin-bottom: 16px; }

/* Pagination */
.pagination { margin-top: 40px; display: flex; gap: 8px; flex-wrap: wrap; }
.pagination a,
.pagination span { padding: 8px 16px; border: 1px solid var(--gray-light); border-radius: 3px; font-size: 14px; font-weight: 600; color: var(--navy); text-decoration: none; transition: all 0.2s; }
.pagination a:hover,
.pagination .current { background: var(--orange); color: #fff; border-color: var(--orange); }

/* =============================================
   BLOG – SINGLE POST
============================================= */
/* =============================================
   SINGLE POST — Service-page style
============================================= */
.sp-hero { padding: 52px 0 44px; }
.sp-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 16px;
    font-size: 13px;
    color: rgba(255,255,255,0.7);
}
.sp-hero-meta span { display: inline-flex; align-items: center; gap: 6px; }
.sp-hero-meta svg { opacity: 0.7; }
.sp-hero-cat { background: var(--orange); color: #fff; padding: 3px 10px; border-radius: 2px; font-weight: 700; font-size: 12px; letter-spacing: 0.5px; text-transform: uppercase; }

.single-post-wrap { display: grid; grid-template-columns: 2fr 1fr; gap: 52px; padding: 60px 0 80px; }

/* Intro Grid — image left, text right */
.sp-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 36px;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--gray-light);
}
.sp-intro-img img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
.sp-intro-badge {
    display: inline-block;
    background: var(--orange);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 2px;
    margin-bottom: 14px;
}
.sp-intro-text h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 12px;
}
.sp-intro-text p { font-size: 15px; color: var(--gray); line-height: 1.75; }

/* Article Body */
.sp-entry-content { font-size: 15.5px; color: var(--text); line-height: 1.85; }
.sp-entry-content h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: var(--orange);
    margin: 36px 0 14px;
    padding-left: 14px;
    border-left: 4px solid var(--orange);
}
.sp-entry-content h3 {
    font-size: 19px;
    font-weight: 700;
    color: var(--navy);
    margin: 26px 0 10px;
}
.sp-entry-content p { margin-bottom: 18px; }
.sp-entry-content ul, .sp-entry-content ol { margin: 0 0 18px 24px; }
.sp-entry-content li { margin-bottom: 7px; }
.sp-entry-content img { border-radius: 6px; margin: 20px 0; max-width: 100%; }
.sp-entry-content blockquote {
    border-left: 4px solid var(--orange);
    padding: 18px 24px;
    margin: 28px 0;
    background: var(--off-white);
    font-style: italic;
    color: var(--gray);
    border-radius: 0 6px 6px 0;
    font-size: 16px;
    line-height: 1.7;
}
.sp-entry-content a { color: var(--orange); }
.sp-entry-content a:hover { text-decoration: underline; }

/* Feature Icons Row */
.sp-features-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin: 40px 0;
    padding: 28px 32px;
    background: var(--off-white);
    border-radius: 8px;
    border: 1px solid var(--gray-light);
}
.sp-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}
.sp-feature-icon {
    width: 56px;
    height: 56px;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}
.sp-feature-item span {
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.3;
}

/* Tags */
.entry-tags { margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--gray-light); font-size: 14px; color: var(--gray); }
.entry-tags a { display: inline-block; background: var(--off-white); border: 1px solid var(--gray-light); color: var(--navy); padding: 4px 12px; border-radius: 2px; margin: 4px 4px 0 0; font-size: 13px; font-weight: 600; text-decoration: none; }
.entry-tags a:hover { background: var(--orange); color: #fff; border-color: var(--orange); }

/* Author Box */
.sp-author-box {
    background: var(--off-white);
    border: 1px solid var(--gray-light);
    border-left: 4px solid var(--orange);
    padding: 28px;
    border-radius: 0 8px 8px 0;
    margin-top: 40px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.sp-author-avatar { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 3px solid #fff; box-shadow: 0 2px 8px rgba(0,0,0,0.12); }
.sp-author-label { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--orange); display: block; margin-bottom: 4px; }
.sp-author-info h4 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.sp-author-info p { font-size: 14px; color: var(--gray); line-height: 1.65; margin: 0; }

/* Stats Counter Bar */
.sp-stats-bar {
    display: flex;
    align-items: center;
    justify-content: space-around;
    background: var(--navy);
    border-radius: 8px;
    padding: 36px 32px;
    margin: 48px 0;
    flex-wrap: wrap;
    gap: 20px;
}
.sp-stat { text-align: center; }
.sp-stat-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: var(--orange);
    display: block;
    line-height: 1;
}
.sp-stat-lbl { font-size: 13px; color: rgba(255,255,255,0.65); margin-top: 6px; letter-spacing: 0.3px; display: block; }
.sp-stat-sep { width: 1px; height: 56px; background: rgba(255,255,255,0.12); }

/* Related Posts */
.sp-related { margin-top: 0; }
.sp-related-header { margin-bottom: 28px; }
.sp-related-header h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 28px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.sp-related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

/* old compat */
.post-feature-img { width: 100%; height: 420px; object-fit: cover; border-radius: 4px; margin-bottom: 32px; display: block; }
.entry-header h1 { font-family: 'Barlow Condensed', sans-serif; font-size: 38px; font-weight: 800; color: var(--navy); line-height: 1.15; margin-bottom: 16px; }
.entry-meta { display: flex; gap: 20px; flex-wrap: wrap; font-size: 13px; color: var(--gray); margin-bottom: 32px; padding-bottom: 24px; border-bottom: 1px solid var(--gray-light); }
.entry-meta a { color: var(--orange); font-weight: 600; text-decoration: none; }
.entry-content { font-size: 16px; color: var(--text); line-height: 1.8; }
.entry-content h2 { font-family: 'Barlow Condensed', sans-serif; font-size: 26px; font-weight: 800; color: var(--orange); margin: 32px 0 14px; padding-left: 14px; border-left: 4px solid var(--orange); }
.entry-content h3 { font-size: 20px; font-weight: 700; color: var(--navy); margin: 24px 0 10px; }
.entry-content p { margin-bottom: 18px; }
.entry-content ul, .entry-content ol { margin: 0 0 18px 24px; }
.entry-content li { margin-bottom: 6px; }
.entry-content img { border-radius: 4px; margin: 16px 0; }
.entry-content blockquote { border-left: 4px solid var(--orange); padding: 16px 24px; margin: 24px 0; background: var(--off-white); font-style: italic; color: var(--gray); border-radius: 0 4px 4px 0; }

/* Related Posts (old) */
.related-posts { margin-top: 48px; }
.related-posts h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 24px; font-weight: 800; color: var(--navy); margin-bottom: 24px; }
.related-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* Comments */
/* ── Comments (old compat) ── */
.comments-section { margin-top: 48px; }

/* ── Single Post Comments — Attractive ── */
.sp-comments-section { margin-top: 56px; padding-top: 48px; border-top: 2px solid var(--gray-light); }

/* Section header */
.sp-comments-section #comments > h2,
.sp-comments-section .comments-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 32px;
    padding-left: 16px;
    border-left: 4px solid var(--orange);
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Comment list */
.sp-comments-section .comment-list { list-style: none; padding: 0; margin: 0 0 40px; }
.sp-comments-section .comment-list .comment { margin-bottom: 0; }

.sp-comments-section .comment-body {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.07);
    border-radius: 18px;
    padding: 24px 28px;
    margin-bottom: 20px;
    position: relative;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06), 0 10px 28px rgba(0,0,0,0.09), inset 0 1px 0 rgba(255,255,255,0.9);
    transition: box-shadow 0.25s, transform 0.25s;
}
.sp-comments-section .comment-body:hover {
    box-shadow: 0 4px 10px rgba(0,0,0,0.08), 0 18px 40px rgba(0,0,0,0.13), inset 0 1px 0 rgba(255,255,255,0.9);
    transform: translateY(-3px);
}
.sp-comments-section .comment-body::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 5px; height: 100%;
    background: var(--orange);
    border-radius: 18px 0 0 18px;
    opacity: 1;
}

/* Comment meta row */
.sp-comments-section .comment-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}
.sp-comments-section .comment-author .avatar {
    width: 48px !important;
    height: 48px !important;
    border-radius: 50% !important;
    border: 2px solid var(--gray-light);
    flex-shrink: 0;
}
.sp-comments-section .comment-author .fn {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    font-style: normal;
}
.sp-comments-section .comment-author .fn a { color: var(--navy); text-decoration: none; }
.sp-comments-section .comment-metadata {
    font-size: 12px;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
}
.sp-comments-section .comment-metadata a { color: var(--gray); text-decoration: none; }
.sp-comments-section .comment-metadata time { font-size: 12px; }

/* Comment content */
.sp-comments-section .comment-content p {
    font-size: 15px;
    color: var(--text);
    line-height: 1.75;
    margin: 0 0 10px;
}
.sp-comments-section .comment-content p:last-child { margin-bottom: 0; }

/* Reply link */
.sp-comments-section .reply {
    margin-top: 12px;
}
.sp-comments-section .comment-reply-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 700;
    color: var(--orange);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1.5px solid var(--orange);
    padding: 5px 12px;
    border-radius: 3px;
    transition: all 0.2s;
}
.sp-comments-section .comment-reply-link:hover {
    background: var(--orange);
    color: #fff;
}

/* Awaiting moderation notice */
.sp-comments-section .comment-awaiting-moderation {
    display: inline-block;
    background: #fff8e1;
    color: #856404;
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 3px;
    font-weight: 600;
    margin-bottom: 8px;
}

/* Nested / child comments */
.sp-comments-section .children {
    list-style: none;
    padding-left: 40px;
    margin-top: 0;
}
.sp-comments-section .children .comment-body {
    background: var(--off-white);
    border-style: dashed;
}

/* ── Comment Form ── */
.sp-comments-section #respond {
    background: var(--off-white);
    border: 1px solid var(--gray-light);
    border-radius: 12px;
    padding: 36px 36px;
    margin-top: 8px;
}
.sp-comments-section #reply-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 6px;
    display: block;
}
.sp-comments-section #reply-title small { display: block; font-size: 13px; font-family: 'Barlow', sans-serif; font-weight: 400; color: var(--gray); margin-top: 2px; }
.sp-comments-section #reply-title small a { color: var(--orange); text-decoration: none; }
.sp-comments-section .comment-notes { font-size: 13px; color: var(--gray); margin-bottom: 24px; }
.sp-comments-section .comment-form p { margin-bottom: 16px; }
.sp-comments-section .comment-form label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}
.sp-comments-section .comment-form input[type="text"],
.sp-comments-section .comment-form input[type="email"],
.sp-comments-section .comment-form input[type="url"],
.sp-comments-section .comment-form textarea {
    width: 100%;
    border: 1.5px solid var(--gray-light);
    border-radius: 6px;
    padding: 11px 14px;
    font-size: 14px;
    font-family: 'Barlow', sans-serif;
    color: var(--navy);
    background: var(--white);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}
.sp-comments-section .comment-form input:focus,
.sp-comments-section .comment-form textarea:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(232,101,10,0.1);
}
.sp-comments-section .comment-form textarea { min-height: 130px; resize: vertical; }
.sp-comments-section .comment-form .form-submit input[type="submit"] {
    background: var(--orange);
    color: #fff;
    border: none;
    padding: 13px 32px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Barlow', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}
.sp-comments-section .comment-form .form-submit input[type="submit"]:hover {
    background: #d55900;
    transform: translateY(-2px);
}

/* =============================================
   THANK YOU PAGE
============================================= */
.thankyou-wrap {
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
    background: var(--off-white);
}
.thankyou-card {
    background: var(--white);
    border-radius: 16px;
    padding: 60px 48px;
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 8px 48px rgba(0,0,0,0.09);
    border-top: 5px solid var(--orange);
}

/* Animated checkmark */
.ty-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 28px;
}
.ty-icon svg { width: 80px; height: 80px; }
.ty-circle {
    stroke: var(--orange);
    stroke-width: 2;
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    animation: ty-circle-draw 0.6s cubic-bezier(0.65,0,0.45,1) 0.2s forwards;
}
.ty-check {
    stroke: var(--orange);
    stroke-width: 3;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: ty-check-draw 0.4s cubic-bezier(0.65,0,0.45,1) 0.8s forwards;
}
@keyframes ty-circle-draw { to { stroke-dashoffset: 0; } }
@keyframes ty-check-draw  { to { stroke-dashoffset: 0; } }

.ty-label {
    display: inline-block;
    background: rgba(232,101,10,0.1);
    color: var(--orange);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
}
.thankyou-card h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 52px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 14px;
    line-height: 1;
}
.thankyou-card > p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 28px;
}
.ty-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--navy);
    color: #fff;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 24px;
    transition: background 0.2s;
}
.ty-phone:hover { background: var(--orange); }
.ty-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.ty-trust-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding-top: 32px;
    border-top: 1px solid var(--gray-light);
    flex-wrap: wrap;
    gap: 16px;
}
.ty-trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
}
.ty-trust-item svg { color: var(--orange); flex-shrink: 0; }
.ty-trust-sep { width: 1px; height: 20px; background: var(--gray-light); }
@media (max-width: 600px) {
    .thankyou-card { padding: 36px 24px; }
    .thankyou-card h1 { font-size: 38px; }
    .ty-trust-sep { display: none; }
    .ty-trust-bar { flex-direction: column; gap: 10px; }
}

/* =============================================
   FOOTER
============================================= */
#site-footer { background: var(--navy); color: rgba(255,255,255,0.75); }
.footer-main { padding: 64px 0 40px; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 48px; }
.footer-brand .logo-text .brand { color: var(--white); }
.footer-brand p { font-size: 14px; line-height: 1.7; margin-top: 16px; color: rgba(255,255,255,0.6); margin-bottom: 0; }
.footer-section h4 { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--white); margin-bottom: 18px; position: relative; padding-bottom: 10px; }
.footer-section h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 28px; height: 2px; background: var(--orange); }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links li a { font-size: 14px; color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.2s; }
.footer-links li a:hover { color: var(--orange); }
.footer-contact { list-style: none; padding: 0; }
.footer-contact li { font-size: 14px; color: rgba(255,255,255,0.6); margin-bottom: 10px; display: flex; gap: 8px; line-height: 1.5; }
.footer-contact li a { color: rgba(255,255,255,0.6); text-decoration: none; }
.footer-contact li a:hover { color: var(--orange); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; font-size: 13px; color: rgba(255,255,255,0.4); }
.footer-bottom a { color: rgba(255,255,255,0.4); text-decoration: none; }

/* =============================================
   SERVICE DETAIL PAGES
============================================= */

/* Service Hero */
.service-page-hero { padding: 60px 0 52px; }
.service-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    color: rgba(255,255,255,0.9);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 24px;
    margin-bottom: 18px;
}
.service-hero-sub { font-size: 17px; color: rgba(255,255,255,0.78); max-width: 600px; line-height: 1.6; margin-top: 12px; }
.service-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 28px;
}
.service-hero-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* ── STATS BAR ── */
.service-stats-bar {
    background: linear-gradient(135deg, #0a1628 0%, #112240 60%, #1a3356 100%);
    border-bottom: 3px solid var(--orange);
    position: relative;
    overflow: hidden;
}
.service-stats-bar::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(232,101,10,0.12) 0%, transparent 70%);
    pointer-events: none;
}
.service-stats-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
.sstat {
    text-align: center;
    padding: 32px 16px;
    position: relative;
    border-right: 1px solid rgba(255,255,255,0.08);
    transition: background 0.2s;
}
.sstat:last-child { border-right: none; }
.sstat:hover { background: rgba(232,101,10,0.06); }
.sstat-icon {
    width: 54px;
    height: 54px;
    background: rgba(232,101,10,0.15);
    border: 1.5px solid rgba(232,101,10,0.35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    color: var(--orange);
    transition: all 0.3s;
}
.sstat:hover .sstat-icon {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
    transform: scale(1.08);
}
.sstat-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 38px;
    font-weight: 800;
    color: var(--orange);
    display: block;
    line-height: 1;
    letter-spacing: -0.5px;
}
.sstat-lbl {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.5px;
    margin-top: 7px;
    display: block;
    text-transform: uppercase;
}
.sstat-sep { display: none; }

/* ── SERVICE OVERVIEW ── */
.service-overview-section { padding: 80px 0; }
.service-overview-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.service-overview-img { position: relative; }
.service-overview-img img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.service-img-badge {
    position: absolute;
    bottom: -16px;
    left: 28px;
    background: var(--orange);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 4px;
    box-shadow: 0 4px 16px rgba(232,101,10,0.4);
}
.service-overview-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }

/* ── WHY CHOOSE US ── */
.service-why-section { padding: 80px 0; }
.service-why-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}
.service-why-header .section-sub { max-width: 380px; margin: 0; }
.service-why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-why-card {
    background: var(--white);
    border-radius: 12px;
    padding: 32px 28px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    border: 1px solid var(--gray-light);
    border-bottom: 4px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.service-why-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--orange);
    transform: scaleX(0);
    transition: transform 0.3s;
    transform-origin: left;
}
.service-why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.12);
    border-color: transparent;
    border-bottom-color: var(--orange);
}
.service-why-card:hover::before { transform: scaleX(1); }
.service-why-icon-wrap {
    width: 68px;
    height: 68px;
    background: linear-gradient(135deg, rgba(232,101,10,0.12), rgba(232,101,10,0.06));
    border: 2px solid rgba(232,101,10,0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s;
}
.service-why-icon { font-size: 32px; line-height: 1; display: block; }
.service-why-card:hover .service-why-icon-wrap {
    background: var(--orange);
    border-color: var(--orange);
    transform: scale(1.05) rotate(-3deg);
}
.service-why-card h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.service-why-card p { font-size: 14px; color: var(--gray); line-height: 1.7; }

/* ── PROCESS STEPS ── */
.service-process-section { padding: 80px 0; }
.service-process-header { text-align: center; margin-bottom: 56px; }
.service-process-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    position: relative;
}
.service-process-row::before {
    content: '';
    position: absolute;
    top: 52px;
    left: calc(16.66% + 32px);
    right: calc(16.66% + 32px);
    height: 2px;
    background: linear-gradient(90deg, var(--orange) 0%, var(--orange-light) 100%);
    z-index: 0;
}
.service-process-step {
    text-align: center;
    padding: 0 32px;
    position: relative;
    z-index: 1;
}
.sps-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--orange);
    text-transform: uppercase;
    margin-bottom: 10px;
}
.sps-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #fff;
    border: 4px solid var(--white);
    box-shadow: 0 4px 20px rgba(232,101,10,0.35);
}
.service-process-step h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.service-process-step p { font-size: 14px; color: var(--gray); line-height: 1.65; }

/* ── AREAS WE SERVE ── */
.service-areas-section { padding: 80px 0; }
.service-areas-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}
.service-areas-header p { font-size: 15px; color: var(--gray); max-width: 520px; margin-top: 8px; }
.service-areas-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.service-area-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--white);
    border: 1.5px solid var(--gray-light);
    border-radius: 30px;
    padding: 9px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    cursor: default;
    transition: all 0.2s;
}
.service-area-pill svg { color: var(--orange); flex-shrink: 0; }
.service-area-pill:hover {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(10,22,40,0.2);
}
.service-area-pill:hover svg { color: var(--orange); }
.service-area-pill--featured {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
    color: #fff;
    border-color: transparent;
    font-weight: 700;
    letter-spacing: 0.3px;
}
.service-area-pill--featured svg { color: #fff; }
.service-area-pill--featured:hover {
    background: linear-gradient(135deg, #d55900 0%, var(--orange) 100%);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 16px rgba(232,101,10,0.4);
}

/* ── FAQ ── */
.service-faq-section { padding: 80px 0; }
.service-faq-inner {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 64px;
    align-items: flex-start;
}
.service-faq-left { position: sticky; top: 110px; }
.service-faq-left p { font-size: 15px; color: var(--gray); line-height: 1.7; margin-bottom: 28px; }
.faq-cta-box {
    background: var(--off-white);
    border: 1px solid var(--gray-light);
    border-radius: 12px;
    padding: 20px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}
.faq-cta-icon { font-size: 28px; flex-shrink: 0; }
.faq-cta-box div { flex: 1; min-width: 120px; }
.faq-cta-box strong { display: block; font-size: 14px; color: var(--navy); font-weight: 700; }
.faq-cta-box span { display: block; font-size: 12px; color: var(--gray); margin-top: 2px; }

/* FAQ Accordion */
.faq-list { }
.faq-item {
    background: var(--white);
    border: 1.5px solid var(--gray-light);
    border-radius: 10px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: box-shadow 0.25s, border-color 0.25s;
}
.faq-item:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.08); border-color: #d0d5dd; }
.faq-item.faq-open { border-color: var(--orange); box-shadow: 0 4px 20px rgba(232,101,10,0.12); }
.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    text-align: left;
    font-family: 'Barlow', sans-serif;
    transition: background 0.15s;
}
.faq-question:hover { background: rgba(232,101,10,0.03); }
.faq-num {
    min-width: 36px;
    height: 36px;
    background: var(--off-white);
    color: var(--navy);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    font-weight: 800;
    flex-shrink: 0;
    letter-spacing: 0.5px;
    transition: all 0.2s;
    border: 1.5px solid var(--gray-light);
}
.faq-open .faq-num { background: var(--orange); color: #fff; border-color: var(--orange); }
.faq-q-text {
    flex: 1;
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.4;
}
.faq-toggle-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--off-white);
    border: 1.5px solid var(--gray-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--navy);
    transition: all 0.2s;
    position: relative;
}
.faq-plus, .faq-minus { position: absolute; transition: opacity 0.2s, transform 0.2s; }
.faq-minus { opacity: 0; }
.faq-open .faq-toggle-icon { background: var(--orange); border-color: var(--orange); color: #fff; }
.faq-open .faq-plus { opacity: 0; transform: rotate(45deg); }
.faq-open .faq-minus { opacity: 1; }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}
.faq-answer p {
    padding: 0 20px 20px 70px;
    font-size: 15px;
    color: var(--gray);
    line-height: 1.75;
    margin: 0;
}

/* Services Quick Nav */
.services-quick-nav {
    background: var(--navy);
    position: sticky;
    top: 87px;
    z-index: 99;
    border-bottom: 2px solid var(--orange);
}
.services-quick-nav-inner {
    display: flex;
    gap: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.services-quick-nav-inner::-webkit-scrollbar { display: none; }
.services-quick-nav-inner a {
    display: block;
    white-space: nowrap;
    padding: 14px 18px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    border-bottom: 3px solid transparent;
    transition: all 0.2s;
    flex-shrink: 0;
}
.services-quick-nav-inner a:hover { color: var(--white); border-bottom-color: var(--orange); }

/* =============================================
   HOME – CLIENTS / PARTNERS SECTION
============================================= */
.clients-section { padding: 72px 0; }
.clients-logo-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: center;
    margin: 48px 0 40px;
}
.client-logo-wrap {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: 6px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: box-shadow 0.2s, transform 0.2s;
    flex: 0 0 auto;
}
.client-logo-wrap:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.1); transform: translateY(-2px); }
.client-logo-wrap img { max-width: 130px; max-height: 65px; width: auto; height: auto; object-fit: contain; }

.clients-stats-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    background: var(--navy);
    border-radius: 8px;
    padding: 32px 40px;
    margin-top: 40px;
}
.client-stat-item { text-align: center; padding: 0 40px; }
.cstat-num { font-family: 'Barlow Condensed', sans-serif; font-size: 40px; font-weight: 800; color: var(--orange); display: block; line-height: 1; }
.cstat-lbl { font-size: 13px; color: rgba(255,255,255,0.65); letter-spacing: 0.5px; margin-top: 6px; display: block; }
.client-stat-sep { width: 1px; height: 48px; background: rgba(255,255,255,0.15); }

/* =============================================
   BRANCHES PAGE – BRANCH CARDS
============================================= */
.branches-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 44px;
}
.branch-card {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: 6px;
    padding: 24px 20px;
    border-top: 3px solid var(--orange);
    transition: box-shadow 0.2s, transform 0.2s;
    position: relative;
}
.branch-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.1); transform: translateY(-3px); }
.branch-card-featured { background: var(--navy); border-top-color: var(--orange); }
.branch-card-featured .branch-city { color: var(--white); }
.branch-card-featured .branch-phone svg { stroke: rgba(255,255,255,0.6); }
.branch-card-featured .branch-phone a { color: var(--orange); }
.branch-icon { font-size: 22px; margin-bottom: 10px; line-height: 1; }
.branch-city {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.branch-hq-tag {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    background: var(--orange);
    color: #fff;
    padding: 2px 7px;
    border-radius: 2px;
    font-family: 'Barlow', sans-serif;
    text-transform: uppercase;
}
.branch-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--gray);
}
.branch-phone svg { flex-shrink: 0; stroke: var(--gray); }
.branch-phone a { color: var(--navy); font-weight: 600; text-decoration: none; transition: color 0.2s; }
.branch-phone a:hover { color: var(--orange); }

/* =============================================
   BLOG – REDESIGNED ARCHIVE
============================================= */
/* Blog Hero */
.blog-page-hero { padding: 56px 0 44px; }
.blog-hero-inner {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}
.blog-hero-search { flex-shrink: 0; }
.blog-hero-search .search-form { display: flex; gap: 0; }
.blog-hero-search .search-field {
    padding: 12px 18px;
    border: 2px solid rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.12);
    color: #fff;
    font-size: 14px;
    border-radius: 3px 0 0 3px;
    outline: none;
    width: 240px;
    font-family: 'Barlow', sans-serif;
}
.blog-hero-search .search-field::placeholder { color: rgba(255,255,255,0.6); }
.blog-hero-search .search-submit {
    padding: 12px 20px;
    background: var(--orange);
    color: #fff;
    border: none;
    border-radius: 0 3px 3px 0;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Barlow', sans-serif;
    letter-spacing: 0.5px;
    transition: background 0.2s;
}
.blog-hero-search .search-submit:hover { background: var(--orange-light); }
.page-hero-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 10px;
    display: block;
}

/* Category Filter Tabs */
.blog-cats-bar {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    padding: 28px 0 0;
    border-bottom: 1px solid var(--gray-light);
    margin-bottom: 8px;
}
.blog-cat-tab {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 3px 3px 0 0;
    border: 1px solid transparent;
    border-bottom: none;
    color: var(--gray);
    text-decoration: none;
    transition: all 0.2s;
    position: relative;
    bottom: -1px;
}
.blog-cat-tab:hover { color: var(--navy); border-color: var(--gray-light); background: var(--white); }
.blog-cat-tab.active { color: var(--orange); border-color: var(--gray-light); border-bottom-color: var(--white); background: var(--white); }
.cat-count { font-size: 11px; background: var(--gray-light); color: var(--gray); padding: 1px 6px; border-radius: 10px; font-weight: 700; }
.blog-cat-tab.active .cat-count { background: rgba(232,101,10,0.12); color: var(--orange); }

/* Featured Post Card */
.post-featured-card {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 0;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 32px rgba(0,0,0,0.1);
    margin: 32px 0 44px;
    border: 1px solid var(--gray-light);
}
.post-feat-img-link { position: relative; display: block; overflow: hidden; }
.post-feat-img-link img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.post-feat-img-link:hover img { transform: scale(1.03); }
.post-feat-no-img {
    width: 100%;
    min-height: 320px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 72px;
}
.post-feat-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--orange);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 2px;
    z-index: 2;
}
.post-feat-body {
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.post-cat-pill {
    display: inline-block;
    background: rgba(232,101,10,0.1);
    color: var(--orange);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 2px;
    text-decoration: none;
    margin-bottom: 14px;
    border: 1px solid rgba(232,101,10,0.2);
}
.post-feat-body h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 14px;
}
.post-feat-body h2 a { color: var(--navy); text-decoration: none; }
.post-feat-body h2 a:hover { color: var(--orange); }
.post-feat-body > p { font-size: 15px; color: var(--gray); line-height: 1.7; margin-bottom: 24px; flex: 1; }
.post-feat-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    padding-top: 20px;
    border-top: 1px solid var(--gray-light);
    margin-top: auto;
}
.post-feat-meta { display: flex; gap: 16px; flex-wrap: wrap; }
.post-feat-author, .post-feat-date {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: var(--gray);
}
.post-feat-author svg, .post-feat-date svg { opacity: 0.6; }
.post-feat-readmore {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: var(--orange);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: gap 0.2s;
}
.post-feat-readmore:hover { gap: 10px; color: var(--orange); }

/* Blog Section Label */
.blog-section-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--gray-light);
}

/* Post Cards Grid */
.blog-main { min-width: 0; }
.posts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.post-card { background: var(--white); border: 1px solid var(--gray-light); border-radius: 6px; overflow: hidden; transition: box-shadow 0.2s, transform 0.2s; display: flex; flex-direction: column; }
.post-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.1); transform: translateY(-3px); }
.post-card-img-link { position: relative; display: block; overflow: hidden; }
.post-card-thumb { width: 100%; height: 200px; object-fit: cover; display: block; transition: transform 0.3s ease; }
.post-card-img-link:hover .post-card-thumb { transform: scale(1.04); }
.post-card-thumb-placeholder { width: 100%; height: 200px; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); display: flex; align-items: center; justify-content: center; font-size: 40px; }
.post-card-cat {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--orange);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 2px;
}
.post-card-body { padding: 20px 20px 14px; flex: 1; }
.post-meta { font-size: 12px; color: var(--gray); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.3px; }
.post-card-body h2 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 8px; line-height: 1.35; }
.post-card-body h2 a { color: var(--navy); text-decoration: none; }
.post-card-body h2 a:hover { color: var(--orange); }
.post-card-body p { font-size: 14px; color: var(--gray); line-height: 1.6; }
.post-card-footer {
    padding: 12px 20px;
    border-top: 1px solid var(--gray-light);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.post-card-author { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--gray); }
.post-card-avatar {
    width: 28px;
    height: 28px;
    background: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}
.read-more { font-size: 13px; font-weight: 700; color: var(--orange); text-decoration: none; text-transform: uppercase; letter-spacing: 0.5px; }
.read-more:hover { text-decoration: underline; }

/* Blog Pagination */
.blog-pagination {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--gray-light);
}
.blog-pagination a,
.blog-pagination .current {
    padding: 9px 16px;
    border: 1px solid var(--gray-light);
    border-radius: 3px;
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    text-decoration: none;
    transition: all 0.2s;
    display: inline-block;
}
.blog-pagination a:hover { background: var(--orange); color: #fff; border-color: var(--orange); }
.blog-pagination .current { background: var(--orange); color: #fff; border-color: var(--orange); }

/* Blog Empty State */
.blog-empty-state { text-align: center; padding: 80px 24px; }
.blog-empty-icon { font-size: 56px; margin-bottom: 20px; }
.blog-empty-state h2 { font-family: 'Barlow Condensed', sans-serif; font-size: 28px; color: var(--navy); margin-bottom: 10px; }
.blog-empty-state p { color: var(--gray); font-size: 16px; }

/* Blog Sidebar */
.blog-archive-wrap { display: grid; grid-template-columns: 2fr 1fr; gap: 48px; padding: 48px 0 72px; }
.blog-sidebar { }
.sidebar-widget {
    margin-bottom: 36px;
    background: var(--white);
    border-radius: 6px;
    padding: 24px;
    border: 1px solid var(--gray-light);
}
.sidebar-widget h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 17px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--orange);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
/* Sidebar category list */
.sidebar-cat-list { list-style: none; padding: 0; margin: 0; }
.sidebar-cat-list li { padding: 0; border: none; }
.sidebar-cat-list li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 0;
    border-bottom: 1px solid var(--gray-light);
    font-size: 14px;
    color: var(--text);
    text-decoration: none;
    transition: color 0.2s;
}
.sidebar-cat-list li:last-child a { border-bottom: none; }
.sidebar-cat-list li a:hover { color: var(--orange); }
.sidebar-cat-count { background: var(--off-white); color: var(--gray); font-size: 11px; font-weight: 700; padding: 2px 8px; border-radius: 10px; }

/* Sidebar recent posts */
.sidebar-recent-list { list-style: none; padding: 0; margin: 0; }
.sidebar-recent-item { display: flex; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--gray-light); align-items: flex-start; }
.sidebar-recent-item:last-child { border-bottom: none; }
.sidebar-recent-thumb { flex-shrink: 0; width: 60px; height: 48px; border-radius: 4px; overflow: hidden; display: block; }
.sidebar-recent-thumb img { width: 100%; height: 100%; object-fit: cover; }
.sidebar-recent-noimg { flex-shrink: 0; width: 60px; height: 48px; border-radius: 4px; background: var(--navy); display: flex; align-items: center; justify-content: center; font-size: 20px; }
.sidebar-recent-text a { font-size: 13px; font-weight: 600; color: var(--navy); text-decoration: none; line-height: 1.4; display: block; margin-bottom: 4px; }
.sidebar-recent-text a:hover { color: var(--orange); }
.sidebar-recent-text span { font-size: 11px; color: var(--gray); }

/* Sidebar CTA */
.sidebar-cta { background: var(--navy); color: #fff; padding: 0; border-radius: 0; border: none; text-align: center; }
.sidebar-cta.sidebar-widget { background: var(--navy); border-color: var(--navy); padding: 28px 24px; }
.sidebar-cta-icon { font-size: 36px; margin-bottom: 12px; }
.sidebar-cta h4 { color: #fff !important; border-bottom-color: var(--orange); }
.sidebar-cta p { font-size: 14px; color: rgba(255,255,255,0.7); margin-bottom: 18px; }
.sidebar-cta-phone { font-size: 14px; color: rgba(255,255,255,0.7); text-decoration: none; display: block; margin-top: 10px; }
.sidebar-cta-phone:hover { color: var(--orange); }

/* Sidebar Tags */
.sidebar-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.sidebar-tag {
    display: inline-block;
    background: var(--off-white);
    border: 1px solid var(--gray-light);
    color: var(--navy);
    padding: 5px 12px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.15s;
}
.sidebar-tag:hover, a.sidebar-tag:hover { background: var(--orange); color: #fff; border-color: var(--orange); }

/* ── Sidebar Contact Box ── */
.sidebar-contact-box { border-top: 4px solid var(--orange) !important; }
.sidebar-contact-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.sidebar-contact-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: var(--gray); line-height: 1.5; }
.sidebar-contact-list li svg { color: var(--orange); flex-shrink: 0; margin-top: 2px; }
.sidebar-contact-list li a { color: var(--navy); font-weight: 700; text-decoration: none; }
.sidebar-contact-list li a:hover { color: var(--orange); }

/* ── Sidebar Booking Banner ── */
.sidebar-booking-banner { background: linear-gradient(145deg, var(--navy) 0%, #0d2a4a 100%) !important; border: none !important; overflow: hidden; position: relative; }
.sidebar-booking-banner::before { content: ''; position: absolute; top: -40px; right: -40px; width: 160px; height: 160px; background: rgba(232,101,10,0.12); border-radius: 50%; }
.sbb-inner { position: relative; text-align: center; }
.sbb-truck { font-size: 48px; line-height: 1; margin-bottom: 14px; display: block; filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3)); }
.sbb-inner h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 10px; line-height: 1.2; }
.sbb-inner p { font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.6; margin-bottom: 20px; }
.sbb-btn { display: block; background: var(--orange); color: #fff; font-size: 14px; font-weight: 700; text-decoration: none; padding: 13px 20px; border-radius: 4px; margin-bottom: 12px; transition: background 0.2s, transform 0.2s; letter-spacing: 0.3px; }
.sbb-btn:hover { background: #d55900; transform: translateY(-2px); }
.sbb-phone { display: flex; align-items: center; justify-content: center; gap: 7px; color: rgba(255,255,255,0.75); font-size: 14px; font-weight: 600; text-decoration: none; }
.sbb-phone:hover { color: var(--orange); }

/* ── Sidebar Services List ── */
.sidebar-services-list ul { list-style: none; padding: 0; margin: 0; }
.sidebar-services-list ul li { border-bottom: 1px solid var(--gray-light); }
.sidebar-services-list ul li:last-child { border-bottom: none; }
.sidebar-services-list ul li a { display: flex; align-items: center; gap: 8px; padding: 10px 0; font-size: 14px; color: var(--navy); text-decoration: none; font-weight: 500; transition: color 0.2s, padding-left 0.2s; }
.sidebar-services-list ul li a::before { content: '→'; color: var(--orange); font-weight: 700; flex-shrink: 0; }
.sidebar-services-list ul li a:hover { color: var(--orange); padding-left: 4px; }

/* ── Floating WhatsApp Button ── */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    background: #25D366;
    color: #fff;
    border-radius: 50px;
    padding: 13px 20px 13px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(37,211,102,0.45);
    transition: all 0.25s ease;
    font-family: 'Barlow', sans-serif;
}
.whatsapp-float:hover {
    background: #1ebe5d;
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(37,211,102,0.55);
}
.whatsapp-float-label {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
}
@media (max-width: 600px) {
    .whatsapp-float { padding: 13px; border-radius: 50%; }
    .whatsapp-float-label { display: none; }
}

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 1024px) {
  .footer-main { grid-template-columns: 1fr 1fr; gap: 36px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .branches-grid { grid-template-columns: repeat(3, 1fr); }
  .service-why-grid { grid-template-columns: repeat(2, 1fr); }
  .service-areas-grid { grid-template-columns: repeat(3, 1fr); }
  .sstat { padding: 12px 20px; }
  .service-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .service-faq-inner { gap: 40px; }
}
@media (max-width: 900px) {
  .services-grid, .why-grid, .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid-4 { grid-template-columns: 1fr 1fr; }
  .process-row { grid-template-columns: 1fr; gap: 40px; }
  .process-row::before { display: none; }
  .intro-grid, .about-intro-grid, .service-detail-grid, .contact-grid { grid-template-columns: 1fr; direction: ltr; }
  .service-detail-grid.reverse { direction: ltr; }
  .intro-badge { bottom: 10px; right: 10px; }
  .mv-grid, .hub-detail, .states-grid { grid-template-columns: 1fr 1fr; }
  .metro-areas-grid { grid-template-columns: repeat(3, 1fr); }
  .blog-archive-wrap, .single-post-wrap { grid-template-columns: 1fr; }
  .sp-intro-grid { grid-template-columns: 1fr; }
  .sp-features-row { grid-template-columns: repeat(2, 1fr); }
  .sp-related-grid { grid-template-columns: 1fr 1fr; }
  .sp-stat-sep { display: none; }
  .sp-stats-bar { padding: 28px 20px; }
  .posts-grid { grid-template-columns: 1fr 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .post-featured-card { grid-template-columns: 1fr; }
  .post-feat-img-link img { min-height: 240px; }
  .branches-grid { grid-template-columns: repeat(3, 1fr); }
  .blog-hero-inner { flex-direction: column; align-items: flex-start; }
  .clients-stats-row { padding: 24px; }
  .client-stat-item { padding: 0 20px; }
  /* Service pages */
  .service-overview-grid { grid-template-columns: 1fr; gap: 36px; }
  .service-overview-img img { height: 280px; }
  .service-why-grid { grid-template-columns: 1fr 1fr; }
  .service-areas-grid { grid-template-columns: repeat(3, 1fr); }
  .service-stats-inner { grid-template-columns: repeat(2, 1fr); justify-content: center; }
  .sstat-sep { display: none; }
  .service-process-row { grid-template-columns: 1fr; gap: 40px; max-width: 420px; margin: 0 auto; }
  .service-process-row::before { display: none; }
  .service-faq-inner { grid-template-columns: 1fr; gap: 36px; }
  .service-faq-left { position: static; }
}
@media (max-width: 600px) {
  /* ── Header & Nav ── */
  .nav-inner { height: 68px; }
  .site-logo-img { height: 58px; }
  #mobile-nav { top: 68px; }
  /* ── Hero ── */
  .hero { height: 620px; align-items: flex-start; padding-top: 44px; }
  .hero-content h1 { font-size: 38px; }
  .hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 28px; margin-top: 28px; padding-top: 24px; }
  .hero-stat .num { font-size: 26px; }
  .hero-stat .lbl { font-size: 11px; }
  /* ── General ── */
  .services-grid, .why-grid, .testimonials-grid, .testimonials-grid-4, .values-grid, .states-grid { grid-template-columns: 1fr; }
  .metro-areas-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr; gap: 28px; }
  .topbar-left { display: none; }
  .form-row, .wpcf7-form .form-row { grid-template-columns: 1fr; }
  #primary-navigation { display: none; }
  .hamburger { display: flex; }
  .page-hero h1 { font-size: 30px; }
  .mv-grid, .hub-detail { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; }
  .entry-header h1 { font-size: 28px; }
  .post-feature-img { height: 240px; }
  .sp-intro-img img { height: 220px; }
  .sp-features-row { grid-template-columns: repeat(2, 1fr); padding: 20px; }
  .sp-related-grid { grid-template-columns: 1fr; }
  .sp-stat-num { font-size: 32px; }
  .sp-hero-meta { gap: 12px; font-size: 12px; }
  .branches-grid { grid-template-columns: 1fr 1fr; }
  .posts-grid { grid-template-columns: 1fr; }
  .client-stat-sep { width: 60px; height: 1px; }
  .clients-stats-row { flex-direction: column; gap: 20px; padding: 28px 20px; }
  .client-stat-item { padding: 0; }
  .blog-hero-search .search-field { width: 180px; }
  /* Service pages */
  .service-why-grid { grid-template-columns: 1fr; }
  .service-areas-grid { grid-template-columns: 1fr 1fr; }
  .service-hero-actions { flex-direction: column; }
  .service-hero-actions .btn { text-align: center; }
  .sstat { padding: 10px 14px; }
  .sstat-num { font-size: 26px; }
  .services-quick-nav-inner a { padding: 12px 14px; font-size: 12px; }
  .service-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .sstat-icon { width: 44px; height: 44px; }
  .sstat-num { font-size: 30px; }
  .service-faq-inner { gap: 24px; }
  .service-process-row { max-width: 320px; }
  .service-area-pill { padding: 7px 12px; font-size: 12px; }
  .faq-cta-box { flex-direction: column; text-align: center; }
}
