/*
Theme Name: Primal Facilities Management
Theme URI: https://primalfacilitiesmanagement.co.ke

Description: Custom WordPress theme for Primal Facilities Management — a professional facility management company based in Nairobi, Kenya. Converted from Next.js.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: primal-fm
Tags: business, services, facility-management, nairobi, kenya

============================
  TABLE OF CONTENTS
============================
  1.  Reset & Base
  2.  Typography
  3.  Layout Utilities
  4.  Navbar
  5.  Hero Slider
  6.  Introduction Section
  7.  About Experience
  8.  Why Choose Us
  9.  Services Section
  10. Testimonials
  11. Footer
  12. FAB (Floating Buttons)
  13. Blog
  14. Services Page
  15. Contact Page
  16. About Page
  17. Locations Page
  18. Responsive
============================
*/

/* ============================================================
   1. RESET & BASE
============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  max-width: 100vw;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  color: #171717;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-top: 85px; /* navbar height */
}

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

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

ul { list-style: none; }

/* ============================================================
   2. TYPOGRAPHY
============================================================ */
h1, h2, h3, h4, h5 { line-height: 1.2; }
p { line-height: 1.65; }

.section-kicker {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #0d99ff;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #0e1b2c;
  margin-bottom: 18px;
  line-height: 1.25;
}

.text-center { text-align: center; }

/* ============================================================
   3. LAYOUT UTILITIES
============================================================ */
.container {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 25px;
}

.primary-btn {
  display: inline-block;
  background: #0d99ff;
  color: #fff;
  padding: 14px 30px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: 0.3s ease;
  box-shadow: 0 4px 15px rgba(13, 153, 255, 0.25);
  cursor: pointer;
  border: none;
}

.primary-btn:hover {
  background: #0077cc;
  box-shadow: 0 6px 20px rgba(13, 153, 255, 0.35);
  color: #fff;
}

/* ============================================================
   4. NAVBAR
============================================================ */
.nav-header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 85px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06);
  z-index: 999;
  backdrop-filter: blur(10px);
}

.nav-container {
  max-width: 1350px;
  height: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 35px;
}

.nav-logo img {
  height: 58px;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  gap: 40px;
  align-items: center;
}

.nav-menu a {
  position: relative;
  font-size: 1.05rem;
  font-weight: 600;
  color: #0e1b2c;
  text-decoration: none;
  transition: color 0.25s ease;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: #0d99ff;
  transition: width 0.3s ease;
}

.nav-menu a:hover { color: #0d99ff; }
.nav-menu a:hover::after { width: 100%; }

/* Dropdown Styles */
.nav-item { position: relative; }
.nav-item.has-dropdown > a { padding-right: 5px; }
.nav-item.has-dropdown i { font-size: 0.8rem; margin-left: 3px; transition: 0.3s; }
.nav-item:hover i { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 240px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
  border-radius: 12px;
  padding: 15px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 999;
  list-style: none;
  margin-top: 15px;
  border-top: 3px solid #0d99ff;
}

.dropdown-menu::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 20px;
  border-width: 0 10px 10px 10px;
  border-style: solid;
  border-color: transparent transparent #0d99ff transparent;
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li { 
  margin: 0 !important;
  display: block !important;
}

.dropdown-menu a {
  display: block;
  padding: 12px 25px;
  color: #1e2a3d !important;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.dropdown-menu a::after { display: none !important; }

.dropdown-menu a:hover {
  background: #f0f7ff;
  color: #0d99ff !important;
  padding-left: 32px;
}

.nav-btn {
  background: #0d99ff;
  padding: 12px 26px;
  border-radius: 8px;
  color: #fff !important;
  font-weight: 600;
  transition: 0.3s ease;
  box-shadow: 0 4px 15px rgba(13, 153, 255, 0.25);
}

.nav-btn:hover {
  background: #0077cc;
  box-shadow: 0 6px 20px rgba(13, 153, 255, 0.35);
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: #0d99ff !important;
  text-decoration: none;
  font-size: 1.05rem;
  transition: all 0.2s ease;
}

.nav-phone i {
  font-size: 1.1rem;
}

.nav-phone:hover {
  color: #0077cc !important;
}

.nav-toggle {
  display: none;
  cursor: pointer;
  width: 28px;
  height: 22px;
  flex-direction: column;
  justify-content: space-between;
  background: none;
  border: none;
  padding: 0;
}

.bar {
  width: 100%;
  height: 3px;
  background: #0e1b2c;
  transition: 0.3s;
  display: block;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  background: #ffffff;
  padding: 20px;
  position: fixed;
  top: 85px; /* right below header */
  left: 0;
  width: 100%;
  max-height: calc(100vh - 85px);
  overflow-y: auto;
  z-index: 999;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border-top: 1px solid #eee;
  -webkit-overflow-scrolling: touch;
}

.nav-mobile a {
  padding: 14px 0;
  border-bottom: 1px solid #f8f8f8;
  font-size: 1rem;
  font-weight: 600;
  color: #0e1b2c;
  display: block;
}

.nav-mobile.show { 
  display: flex; 
  animation: slideDown 0.3s ease-out;
}

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

/* Mobile Dropdown Styles */
.mobile-nav-item {
  width: 100%;
}

.mobile-dropdown-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #f8f8f8;
  cursor: pointer;
}

.mobile-dropdown-toggle a {
  border-bottom: none !important;
  flex: 1;
}

.mobile-dropdown-toggle i {
  color: #0d99ff;
  font-size: 0.85rem;
  transition: 0.3s ease;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f7ff;
  border-radius: 8px;
}

.mobile-nav-item.open .mobile-dropdown-toggle i {
  transform: rotate(180deg);
  background: #0d99ff;
  color: #fff;
}

.mobile-dropdown-menu {
  display: none;
  list-style: none;
  padding-left: 20px;
  background: #fafbfc;
  border-left: 3px solid #0d99ff;
  margin-bottom: 10px;
}

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

.mobile-dropdown-menu li a {
  font-size: 0.92rem;
  color: #5a6478;
  padding: 12px 0;
  font-weight: 500;
}

.nav-mobile-cta {
  margin-top: 18px;
  padding: 16px;
  background: #0d99ff;
  color: white !important;
  text-align: center;
  width: 100%;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(0, 153, 255, 0.35);
  transition: 0.25s ease;
}

.nav-mobile-cta:hover {
  background: #0077cc;
}

.nav-mobile-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 30px 0 10px;
  font-size: 1.25rem;
  font-weight: 800;
  color: #0d99ff !important;
  text-decoration: none;
  background: #f0f7ff;
  padding: 15px;
  border-radius: 12px;
  border: 1px dashed #0d99ff;
}

.nav-mobile-phone i {
  font-size: 1.1rem;
}

/* ============================================================
   5. HERO SLIDER
============================================================ */
.hero-slider-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero-swiper {
  width: 100%;
}

.hero-slide-bg {
  position: relative;
  min-height: 88vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.hero-slide-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 20, 40, 0.72) 0%, rgba(10, 20, 40, 0.42) 60%, transparent 100%);
}

.hero-text-box {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 0 60px;
  color: #fff;
}

.hero-title {
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 12px;
  color: rgba(255,255,255,0.88);
}

.hero-area {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #0d99ff;
  background: rgba(13,153,255,0.15);
  border: 1px solid rgba(13,153,255,0.3);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 28px;
}

.hero-btn {
  display: inline-block;
  background: #0d99ff;
  color: #fff;
  padding: 15px 34px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  transition: 0.3s ease;
  box-shadow: 0 6px 20px rgba(13,153,255,0.4);
}

.hero-btn:hover {
  background: #fff;
  color: #0077cc;
}

/* Swiper arrows */
.swiper-button-next,
.swiper-button-prev {
  color: #fff !important;
}

.swiper-pagination-bullet-active {
  background: #0d99ff !important;
}

/* ============================================================
   6. INTRODUCTION SECTION
============================================================ */
.intro-wrapper {
  padding: 90px 25px;
  background: #f8fafc;
}

.intro-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.intro-left {
  position: relative;
}

.intro-image {
  position: relative;
  width: 100%;
  height: 420px;
  border-radius: 16px;
  overflow: hidden;
}

.intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.goal-box {
  margin-top: 24px;
  background: #0e1b2c;
  color: #fff;
  padding: 28px 32px;
  border-radius: 14px;
}

.goal-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #0d99ff;
  margin-bottom: 8px;
}

.goal-box h3 {
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.55;
  font-style: italic;
}

.intro-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.intro-sub {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #0d99ff;
  text-transform: uppercase;
}

.intro-title {
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  font-weight: 700;
  color: #0e1b2c;
  line-height: 1.25;
}

.intro-features {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  border: 1px solid #e8eef4;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: #eef6ff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon img {
  width: 28px;
  height: 28px;
}

.feature-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: #0e1b2c;
}

.feature-card p {
  font-size: 0.92rem;
  color: #5a6478;
  line-height: 1.55;
}

.intro-btn {
  display: inline-block;
  width: fit-content;
  background: #0d99ff;
  color: #fff;
  padding: 14px 30px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: 0.3s ease;
  box-shadow: 0 4px 15px rgba(13,153,255,0.25);
}

.intro-btn:hover { background: #0077cc; color: #fff; }

/* ============================================================
   7. ABOUT EXPERIENCE
============================================================ */
.experience-wrapper {
  padding: 80px 25px;
  background: #fff;
}

.experience-container {
  max-width: 1200px;
  margin: auto;
}

.experience-header {
  text-align: center;
  margin-bottom: 50px;
}

.experience-header .sub-title {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #0d99ff;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.experience-header h2 {
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  font-weight: 700;
  color: #0e1b2c;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.exp-item {
  background: #f8fafc;
  border: 1px solid #e8eef4;
  border-radius: 14px;
  padding: 36px 28px;
  text-align: center;
  transition: 0.3s ease;
}

.exp-item:hover {
  box-shadow: 0 10px 30px rgba(13,153,255,0.1);
  transform: translateY(-4px);
}

.exp-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  background: #eef6ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.exp-icon img {
  width: 32px;
  height: 32px;
}

.exp-item h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #0e1b2c;
}

.exp-item p {
  font-size: 0.93rem;
  color: #5a6478;
  line-height: 1.6;
}

/* ============================================================
   8. WHY CHOOSE US
============================================================ */
.why-wrapper {
  padding: 90px 25px;
  background: #f0f6ff;
}

.why-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.why-sub {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #0d99ff;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.why-title {
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  font-weight: 700;
  color: #0e1b2c;
  margin-bottom: 16px;
}

.why-intro {
  max-width: 700px;
  margin: 0 auto 50px;
  color: #5a6478;
  font-size: 1rem;
  line-height: 1.7;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.why-card {
  background: #fff;
  border-radius: 14px;
  padding: 36px 32px;
  text-align: left;
  border: 1px solid #e2eaf5;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: 0.3s ease;
}

.why-card:hover {
  box-shadow: 0 10px 30px rgba(13,153,255,0.1);
  transform: translateY(-3px);
}

.why-icon {
  width: 52px;
  height: 52px;
  background: #eef6ff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.why-icon img { width: 28px; height: 28px; }

.why-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #0e1b2c;
}

.why-card p {
  font-size: 0.93rem;
  color: #5a6478;
  line-height: 1.65;
}

/* ============================================================
   9. HOME SERVICES SECTION
============================================================ */
.services-section {
  padding: 90px 25px;
  background: #fff;
}

.services-container {
  max-width: 1200px;
  margin: auto;
}

.services-subtitle {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #0d99ff;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 10px;
}

.services-title {
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  font-weight: 700;
  color: #0e1b2c;
  text-align: center;
  margin-bottom: 14px;
}

.services-intro {
  max-width: 650px;
  margin: 0 auto 50px;
  text-align: center;
  color: #5a6478;
  line-height: 1.7;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e8eef4;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 35px rgba(13,153,255,0.12);
}

.service-image-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card:hover .service-image { transform: scale(1.05); }

.service-content {
  padding: 24px;
}

.service-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #0e1b2c;
}

.service-content p {
  font-size: 0.92rem;
  color: #5a6478;
  line-height: 1.6;
  margin-bottom: 18px;
}

.service-btn {
  display: inline-block;
  color: #0d99ff;
  font-weight: 600;
  font-size: 0.9rem;
  border-bottom: 2px solid transparent;
  transition: 0.3s;
}

.service-btn:hover { border-bottom-color: #0d99ff; }

/* ============================================================
   10. TESTIMONIALS
============================================================ */
.testimonials-section {
  padding: 80px 25px;
  background: #0f1a2b;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 50px;
}

.testimonials-title {
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.testimonials-subtitle {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
}

.testimonials-slider {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px 20px;
}

.testimonial-card {
  background: #1a2a40;
  border-radius: 14px;
  padding: 30px;
  height: 100%;
  border: 1px solid rgba(255,255,255,0.07);
}

.testimonial-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.testimonial-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  background: #2a3a50;
}

.testimonial-name {
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 4px;
}

.testimonial-role {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.55);
}

.testimonial-message {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  font-style: italic;
}

/* ============================================================
   11. FOOTER (Improved)
============================================================ */
.footer {
  background: #0b1522;
  color: #aeb5c0;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #3c7df0 0%, #00d2ff 100%);
}

.footer-main { padding-bottom: 60px; }

.footer-container {
  max-width: 1250px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 50px;
  padding: 0 25px;
}

.footer-logo-wrap {
  width: 200px;
  height: auto;
  margin-bottom: 25px;
}

.footer-logo {
  width: 100%;
  max-width: 180px;
  height: auto;
  object-fit: contain;
}

.footer-text {
  font-size: 15px;
  line-height: 1.7;
  color: #aeb5c0;
  margin-bottom: 25px;
}

.footer-social { display: flex; gap: 15px; }

.social-icon {
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: #fff;
  font-size: 18px;
}

.social-icon:hover { 
  background: #3c7df0; 
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(60, 125, 240, 0.3);
  border-color: #3c7df0;
}

.footer-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

.footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: #3c7df0;
}

.footer-links li { margin-bottom: 12px; }

.footer-links a {
  color: #aeb5c0;
  font-size: 15px;
  transition: all 0.2s ease;
  display: inline-block;
}

.footer-links a:hover { 
  color: #fff; 
  transform: translateX(5px);
}

.footer-contact-list li {
  margin-bottom: 18px;
  font-size: 15px;
  display: flex;
  align-items: flex-start;
}

.footer-contact-list i {
  margin-top: 4px;
  margin-right: 15px;
  color: #3c7df0;
  font-size: 18px;
}

.footer-contact-list a {
  color: #aeb5c0;
  transition: 0.3s;
}

.footer-contact-list a:hover { color: #fff; }

.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.newsletter-box {
  margin-top: 25px;
}

.newsletter-form {
  display: flex;
  margin-top: 15px;
}

.newsletter-input {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-right: none;
  padding: 10px 15px;
  color: #fff;
  border-radius: 4px 0 0 4px;
  width: 100%;
  font-size: 14px;
}

.newsletter-btn {
  background: #3c7df0;
  color: #fff;
  border: none;
  padding: 10px 15px;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  transition: 0.3s;
}

.newsletter-btn:hover { background: #2a6ae0; }

.footer-bottom {
  background: rgba(0,0,0,0.2);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 25px;
  text-align: center;
  font-size: 14px;
  color: #6c757d;
}

.footer-bottom a { color: #3c7df0; text-decoration: none; }
.footer-bottom a:hover { color: #fff; }

/* ============================================================
   12. FAB FLOATING BUTTONS
============================================================ */
.fab-container {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.fab-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(0,0,0,0.2);
  transition: 0.3s ease;
  font-size: 24px;
}

.fab-btn:hover { transform: scale(1.1); }
.fab-whatsapp { background: #25D366; color: #fff; }
.fab-call { background: #0d99ff; color: #fff; }

/* ============================================================
   13. BLOG
============================================================ */
.blog-page { min-height: 100vh; }

.blog-hero {
  background: linear-gradient(135deg, #0e1b2c 0%, #1a3050 100%);
  padding: 80px 25px 70px;
}

.blog-hero-inner {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: center;
}

.blog-eyebrow {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #0d99ff;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.blog-hero-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.15;
}

.blog-hero-subtitle {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 22px;
}

.blog-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.blog-hero-tags span {
  background: rgba(13,153,255,0.15);
  border: 1px solid rgba(13,153,255,0.3);
  color: #6ec6ff;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.blog-hero-meta {
  display: flex;
  gap: 32px;
}

.blog-hero-meta-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 3px;
}

.blog-hero-meta-value {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

.blog-hero-visual {
  position: relative;
}

.blog-hero-grid {
  width: 100%;
  height: 280px;
  background: rgba(255,255,255,0.04);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.1);
  background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 30px 30px;
}

.blog-hero-floating {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border-radius: 10px;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.blog-hero-floating strong { color: #fff; font-size: 0.9rem; }
.blog-hero-floating span { color: rgba(255,255,255,0.65); font-size: 0.8rem; }

.blog-list-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 25px;
}

.blog-list-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e8eef4;
}

.blog-list-meta p { color: #5a6478; font-size: 0.92rem; }
.blog-list-meta strong { color: #0e1b2c; }

.blog-list-filters {
  display: flex;
  gap: 12px;
}

.blog-list-filters span {
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  background: #eef6ff;
  color: #0d99ff;
  cursor: pointer;
}

.blog-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  border: 1px solid #e8eef4;
  border-radius: 14px;
  overflow: hidden;
  transition: 0.3s ease;
}

.blog-card:hover {
  box-shadow: 0 10px 30px rgba(13,153,255,0.1);
  transform: translateY(-4px);
}

.blog-card-link {
  display: block;
  padding: 24px;
  height: 100%;
}

.blog-card-meta-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}

.blog-card-date, .blog-card-readtime {
  font-size: 0.78rem;
  color: #8a95a3;
  font-weight: 500;
}

.blog-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0e1b2c;
  margin-bottom: 10px;
  line-height: 1.35;
}

.blog-card-excerpt {
  font-size: 0.88rem;
  color: #5a6478;
  line-height: 1.6;
  margin-bottom: 14px;
}

.blog-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.blog-card-tags span {
  font-size: 0.75rem;
  background: #f1f5f9;
  color: #5a6478;
  padding: 3px 10px;
  border-radius: 20px;
}

.blog-card-cta {
  font-size: 0.85rem;
  font-weight: 700;
  color: #0d99ff;
}

/* Single Blog Post */
.blog-single-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 25px 80px;
}

.blog-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  color: #8a95a3;
  margin-bottom: 28px;
}

.blog-breadcrumbs a { color: #0d99ff; }
.blog-breadcrumbs .separator { color: #c0cad4; }

.blog-single-cover {
  position: relative;
  width: 100%;
  height: 420px;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 36px;
}

.blog-single-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #0e1b2c;
  margin-bottom: 12px;
  line-height: 1.2;
}

.blog-subtitle {
  font-size: 1.08rem;
  color: #5a6478;
  line-height: 1.65;
  margin-bottom: 18px;
}

.blog-meta {
  display: flex;
  gap: 20px;
  font-size: 0.82rem;
  color: #8a95a3;
  padding-bottom: 24px;
  border-bottom: 1px solid #e8eef4;
  margin-bottom: 32px;
}

.blog-content { line-height: 1.75; color: #374151; font-size: 1rem; }
.blog-content h2 { font-size: 1.45rem; margin: 28px 0 12px; color: #0e1b2c; }
.blog-content h3 { font-size: 1.2rem; margin: 22px 0 10px; color: #0e1b2c; }
.blog-content p { margin-bottom: 16px; }
.blog-content ul, .blog-content ol { margin: 12px 0 16px 24px; }
.blog-content li { margin-bottom: 8px; }

.blog-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 32px 0;
}

.blog-keywords span {
  background: #f1f5f9;
  color: #5a6478;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
}

.blog-cta-box {
  background: #eef6ff;
  border-left: 4px solid #0d99ff;
  padding: 20px 24px;
  border-radius: 8px;
  font-size: 0.95rem;
  color: #374151;
  margin: 32px 0;
  line-height: 1.6;
}

.blog-cta-box a { color: #0d99ff; font-weight: 600; }

/* ============================================================
   14. SERVICES PAGE
============================================================ */
.services-page { min-height: 100vh; }

.services-hero {
  background: linear-gradient(135deg, #0e1b2c 0%, #1a3050 100%);
  padding: 80px 25px;
}

.services-hero-inner {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content .eyebrow {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #0d99ff;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.hero-content h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
}

.hero-content .hero-subtitle {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  margin-bottom: 22px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-tags span {
  background: rgba(13,153,255,0.15);
  border: 1px solid rgba(13,153,255,0.3);
  color: #6ec6ff;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
}

.hero-image-wrapper {
  position: relative;
  height: 360px;
  border-radius: 14px;
  overflow: hidden;
}

.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 25px;
}

.services-header {
  text-align: center;
  margin-bottom: 50px;
}

.services-header .eyebrow {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #0d99ff;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.services-header h2 {
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  font-weight: 700;
  color: #0e1b2c;
  margin-bottom: 12px;
}

.services-header p { color: #5a6478; max-width: 600px; margin: auto; }

.services-rows {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  text-decoration: none;
}

.service-row.reverse { direction: rtl; }
.service-row.reverse > * { direction: ltr; }

.service-image {
  position: relative;
  height: 340px;
  border-radius: 14px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.service-row:hover .service-image img { transform: scale(1.04); }

.service-kicker {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #0d99ff;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.service-info h3 {
  font-size: 1.45rem;
  font-weight: 700;
  color: #0e1b2c;
  margin-bottom: 12px;
}

.service-desc {
  color: #5a6478;
  line-height: 1.65;
  margin-bottom: 18px;
}

.service-bullets {
  list-style: none;
  margin-bottom: 20px;
}

.service-bullets li {
  padding-left: 20px;
  position: relative;
  font-size: 0.92rem;
  color: #374151;
  margin-bottom: 7px;
}

.service-bullets li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #0d99ff;
  font-weight: 700;
}

.service-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.learn-more {
  font-weight: 700;
  color: #0d99ff;
  font-size: 0.9rem;
}

.service-tags {
  display: flex;
  gap: 8px;
}

.service-tags span {
  background: #f1f5f9;
  color: #5a6478;
  font-size: 0.78rem;
  padding: 4px 12px;
  border-radius: 20px;
}

/* Service Single */
.service-single-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 25px 80px;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  color: #8a95a3;
  margin-bottom: 36px;
}

.breadcrumbs a { color: #0d99ff; }
.breadcrumbs .current { color: #0e1b2c; font-weight: 600; }

.service-single-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 50px;
  padding: 50px;
  background: #0e1b2c;
  border-radius: 18px;
}

.hero-kicker {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #0d99ff;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.service-single-hero h1 {
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.service-single-hero .hero-subtitle {
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
  margin-bottom: 20px;
}

.hero-bullets {
  list-style: none;
  margin-bottom: 28px;
}

.hero-bullets li {
  padding-left: 20px;
  position: relative;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 8px;
}

.hero-bullets li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #0d99ff;
  font-weight: 700;
}

.hero-right {
  position: relative;
  height: 340px;
  border-radius: 12px;
  overflow: hidden;
}

.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.keyword-pill {
  background: #eef6ff;
  color: #0d99ff;
  border: 1px solid rgba(13,153,255,0.2);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 500;
}

.offer-box {
  background: #f8fafc;
  border-radius: 14px;
  padding: 36px;
  margin-bottom: 36px;
  border: 1px solid #e8eef4;
}

.offer-box h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #0e1b2c;
  margin-bottom: 20px;
}

.offer-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  list-style: none;
}

.offer-list li {
  padding-left: 20px;
  position: relative;
  font-size: 0.92rem;
  color: #374151;
  line-height: 1.5;
}

.offer-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #0d99ff;
  font-weight: 700;
}

.service-faq { margin-bottom: 40px; }

.service-faq h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #0e1b2c;
  margin-bottom: 20px;
}

.faq-item {
  border: 1px solid #e8eef4;
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-item summary {
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 600;
  color: #0e1b2c;
  font-size: 0.95rem;
  background: #f8fafc;
  list-style: none;
  user-select: none;
  display: flex;
  justify-content: space-between;
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.2rem; color: #0d99ff; }
.faq-item[open] summary::after { content: "−"; }

.faq-item p {
  padding: 16px 20px;
  color: #5a6478;
  font-size: 0.92rem;
  line-height: 1.65;
}

.detail-cta-box {
  background: linear-gradient(135deg, #0d99ff, #0055cc);
  border-radius: 16px;
  padding: 42px;
  text-align: center;
  color: #fff;
}

.detail-cta-box h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.detail-cta-box p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 24px;
}

.detail-cta-btn {
  display: inline-block;
  background: #fff;
  color: #0077cc;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 700;
  transition: 0.3s;
}

.detail-cta-btn:hover {
  background: #0e1b2c;
  color: #fff;
}

/* ============================================================
   15. CONTACT PAGE
============================================================ */
.contact-page { min-height: 100vh; }

.contact-hero {
  padding: 70px 25px;
  background: #f8fafc;
}

.contact-hero-inner {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.contact-hero-media {
  position: relative;
  height: 440px;
  border-radius: 16px;
  overflow: hidden;
}

.contact-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-eyebrow {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #0d99ff;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.contact-hero-copy h1 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #0e1b2c;
  margin-bottom: 14px;
}

.contact-intro {
  color: #5a6478;
  line-height: 1.7;
  margin-bottom: 22px;
}

.contact-details p {
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: #374151;
}

.contact-details a { color: #0d99ff; }

.contact-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.contact-hero-badges span {
  background: #eef6ff;
  color: #0d99ff;
  border: 1px solid rgba(13,153,255,0.2);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.contact-form-section {
  padding: 70px 25px;
  background: #fff;
}

.contact-form-card {
  max-width: 700px;
  margin: auto;
  background: #f8fafc;
  border: 1px solid #e8eef4;
  border-radius: 16px;
  padding: 48px;
}

.contact-form-card h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #0e1b2c;
  margin-bottom: 8px;
}

.contact-form-card > p {
  color: #5a6478;
  margin-bottom: 28px;
  font-size: 0.95rem;
}

.contact-form { display: flex; flex-direction: column; gap: 16px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form input,
.contact-form select,
.contact-form textarea,
.instant-quote-form input,
.instant-quote-form select,
.instant-quote-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #d1d9e0;
  border-radius: 8px;
  font-size: 0.95rem;
  color: #0e1b2c;
  background: #fff;
  transition: 0.2s;
  font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus,
.instant-quote-form input:focus,
.instant-quote-form select:focus,
.instant-quote-form textarea:focus {
  outline: none;
  border-color: #0d99ff;
  box-shadow: 0 0 0 3px rgba(13,153,255,0.15);
}

.contact-submit-btn,
.instant-quote-btn {
  display: inline-block;
  background: #0d99ff;
  color: #fff;
  padding: 15px 30px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: 0.3s;
  width: 100%;
}

.contact-submit-btn:hover,
.instant-quote-btn:hover { background: #0077cc; }

.instant-quote-section {
  padding: 70px 25px;
  background: #0e1b2c;
}

.instant-quote-card {
  max-width: 700px;
  margin: auto;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 48px;
}

.instant-quote-header { margin-bottom: 28px; }

.instant-quote-header h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.instant-quote-header p { color: rgba(255,255,255,0.65); }

.instant-quote-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.quote-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-map-section {
  padding: 70px 25px;
  background: #f8fafc;
}

.contact-map-inner {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.contact-map-inner h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0e1b2c;
  margin-bottom: 10px;
}

.contact-map-inner p {
  color: #5a6478;
  margin-bottom: 28px;
  line-height: 1.65;
}

.contact-map {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

/* ============================================================
   16. ABOUT PAGE
============================================================ */
.about-hero {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0e1b2c 0%, #1a3050 100%);
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
}

.about-hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px 0;
}

.about-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 14px;
}

.about-hero-separator { color: rgba(255,255,255,0.35); }

.about-hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.about-hero-subtitle {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
}

.about-intro {
  padding: 80px 25px;
  background: #fff;
}

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

.about-intro-images {
  position: relative;
  height: 380px;
}

.about-intro-image {
  position: absolute;
  border-radius: 12px;
  overflow: hidden;
}

.about-intro-image.primary {
  top: 0;
  left: 0;
  width: 75%;
  height: 280px;
  background: url('assets/images/backgrounds/facility-management-nairobi-kenya.jpg') center/cover;
}

.about-intro-image.secondary {
  bottom: 0;
  right: 0;
  width: 65%;
  height: 230px;
  background: url('assets/images/backgrounds/expert-electrician-nairobi-home-repairs.jpg') center/cover;
  border: 4px solid #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.about-intro-circles {
  position: absolute;
  top: 20px;
  right: -20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.circle-card {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #0d99ff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 6px 20px rgba(13,153,255,0.35);
}

.circle-value { font-size: 1.2rem; font-weight: 800; }
.circle-label { font-size: 0.7rem; font-weight: 600; }

.about-intro-text {
  color: #5a6478;
  line-height: 1.7;
  margin-bottom: 14px;
}

.about-intro-highlights {
  list-style: none;
  margin: 16px 0 28px;
}

.about-intro-highlights li {
  padding-left: 22px;
  position: relative;
  font-size: 0.95rem;
  color: #374151;
  margin-bottom: 8px;
  font-weight: 500;
}

.about-intro-highlights li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #0d99ff;
  font-weight: 700;
}

.about-stats-strip {
  background: #0d99ff;
  padding: 50px 25px;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.about-stat-value {
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 5px;
}

.about-stat-label {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

.about-skills {
  padding: 80px 25px;
  background: #f8fafc;
}

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

.about-skills-text {
  color: #5a6478;
  line-height: 1.7;
  margin-bottom: 14px;
}

.progress-group { margin-bottom: 18px; }

.progress-label-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  font-weight: 600;
  color: #0e1b2c;
  margin-bottom: 6px;
}

.progress-bar {
  height: 8px;
  background: #e2eaf5;
  border-radius: 6px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  border-radius: 6px;
  background: #0d99ff;
}

.progress-fill.diagnostics { width: 84%; }
.progress-fill.replacement { width: 95%; }
.progress-fill.repair { width: 86%; }

.about-skills-right { position: relative; }

.about-skills-image {
  height: 380px;
  border-radius: 14px;
  background: url('assets/images/backgrounds/hvac-services-2.jpg') center/cover;
}

.about-skills-card {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: #0d99ff;
  color: #fff;
  padding: 22px 26px;
  border-radius: 12px;
  max-width: 260px;
  box-shadow: 0 8px 24px rgba(13,153,255,0.35);
}

.about-skills-card-text { font-size: 0.9rem; line-height: 1.55; font-weight: 500; }

.about-mission { padding: 80px 25px; background: #fff; }

.about-mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.mission-card {
  background: #f8fafc;
  border: 1px solid #e8eef4;
  border-radius: 14px;
  padding: 32px;
}

.mission-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0e1b2c;
  margin-bottom: 12px;
}

.mission-text {
  font-size: 0.92rem;
  color: #5a6478;
  line-height: 1.65;
}

.about-contact-cta {
  position: relative;
  padding: 80px 25px;
  background: #0e1b2c;
  text-align: center;
}

.about-contact-inner {
  position: relative;
  z-index: 2;
}

.about-contact-text {
  max-width: 600px;
  margin: 0 auto 36px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}

.about-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 700px;
  margin: auto;
}

.contact-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 28px;
}

.contact-title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.contact-value {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
}

.about-testimonials { padding: 80px 25px; background: #f8fafc; }

/* ============================================================
   17. LOCATIONS PAGE
============================================================ */
.locations-master-page { min-height: 100vh; }

.loc-hero {
  background: linear-gradient(135deg, #0e1b2c 0%, #1a3050 100%);
  padding: 80px 25px;
}

.loc-hero-inner {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
}

.loc-eyebrow {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #0d99ff;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.loc-hero-inner h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.15;
}

.loc-hero-desc {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 22px;
}

.loc-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.loc-hero-tags span {
  background: rgba(13,153,255,0.15);
  border: 1px solid rgba(13,153,255,0.3);
  color: #6ec6ff;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
}

.loc-map-card {
  position: relative;
  height: 340px;
  border-radius: 16px;
  overflow: hidden;
}

.loc-map-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.loc-grid-section {
  padding: 70px 25px;
  max-width: 1250px;
  margin: auto;
}

.loc-grid-header {
  text-align: center;
  margin-bottom: 50px;
}

.loc-grid-header h2 {
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  font-weight: 700;
  color: #0e1b2c;
  margin-bottom: 12px;
}

.loc-grid-header p {
  color: #5a6478;
  max-width: 600px;
  margin: auto;
  line-height: 1.65;
}

.loc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.loc-card {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e8eef4;
  text-decoration: none;
  display: block;
  transition: 0.3s ease;
}

.loc-card:hover {
  box-shadow: 0 10px 30px rgba(13,153,255,0.12);
  transform: translateY(-4px);
}

.loc-card-image {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.loc-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.loc-card:hover .loc-card-image img { transform: scale(1.06); }

.loc-card-body { padding: 18px; }

.loc-city {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #0d99ff;
  margin-bottom: 4px;
}

.loc-card-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #0e1b2c;
  margin-bottom: 8px;
}

.loc-snippet {
  font-size: 0.82rem;
  color: #5a6478;
  line-height: 1.55;
  margin-bottom: 12px;
}

.loc-footer { display: flex; justify-content: flex-end; }

.loc-cta {
  font-size: 0.82rem;
  font-weight: 700;
  color: #0d99ff;
}

/* ============================================================
   18. RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .loc-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-container { grid-template-columns: 1fr 1fr; gap: 30px; }
}

@media (max-width: 992px) {
  .nav-menu { display: none; }
  .nav-toggle { display: flex; }
  .intro-container,
  .about-intro-grid,
  .about-skills-grid,
  .services-hero-inner,
  .contact-hero-inner,
  .service-single-hero,
  .service-row,
  .loc-hero-inner,
  .blog-hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .service-row.reverse { direction: ltr; }
  .why-grid { grid-template-columns: 1fr; }
  .experience-grid { grid-template-columns: 1fr 1fr; }
  .about-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-mission-grid { grid-template-columns: 1fr; }
  .about-contact-grid { grid-template-columns: 1fr; }
  .offer-list { grid-template-columns: 1fr; }
  .form-row, .quote-row { grid-template-columns: 1fr; }
  .loc-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-list-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .hero-right { height: 260px; }
  .service-image { height: 250px; }
}

@media (max-width: 600px) {
  body { padding-top: 85px; }
  .hero-text-box { padding: 0 24px; }
  .experience-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-container { grid-template-columns: 1fr; }
  .loc-grid { grid-template-columns: 1fr 1fr; }
  .blog-list-grid { grid-template-columns: 1fr; }
  .service-single-hero { padding: 30px 20px; }
  .about-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-hero-inner { grid-template-columns: 1fr; }
}

/* ============================================================
   19. CUSTOM SEO EXPANSION LAYOUTS (Price Tables, Brands, Tips)
   ============================================================ */

/* Brands Grid */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.brand-item {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 12px 15px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-text-main);
  text-align: center;
  transition: all 0.2s ease;
}

.brand-item:hover {
  background: var(--theme-surface);
  border-color: var(--theme-accent);
  color: var(--theme-accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* Price Table */
.price-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 0.95rem;
  background: var(--color-bg-base);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  border: 1px solid var(--color-border);
}

.price-table th, 
.price-table td {
  padding: 14px 18px;
  text-align: left;
}

.price-table th {
  background: var(--color-text-main);
  color: #fff;
  font-weight: 700;
}

.price-table tr {
  border-bottom: 1px solid var(--color-border);
  transition: background-color 0.2s ease;
}

.price-table tr:last-child {
  border-bottom: none;
}

.price-table tr:nth-child(even) {
  background-color: var(--color-bg-alt);
}

.price-table tr:hover {
  background-color: var(--theme-surface);
}

.pricing-disclaimer {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: 10px;
}

/* Cost Breakdown Steps */
.cost-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 25px;
}

.cost-step {
  background: var(--color-bg-base);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 22px;
  transition: all 0.3s ease;
}

.cost-step:hover {
  border-color: var(--theme-accent);
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transform: translateY(-3px);
}

.cost-step h4 {
  color: var(--theme-accent);
  font-size: 1.1rem;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 10px;
}

.cost-step p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--color-text-muted);
  margin: 0;
}

/* Tips Container */
.tips-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 25px;
}

.tip-card {
  background: var(--color-bg-alt);
  border-left: 4px solid var(--theme-accent);
  border-radius: 4px 12px 12px 4px;
  padding: 20px;
  transition: all 0.3s ease;
}

.tip-card:hover {
  background: var(--color-bg-base);
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transform: translateY(-3px);
}

.tip-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text-main);
  margin-top: 0;
  margin-bottom: 8px;
}

.tip-card p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--color-text-muted);
  margin: 0;
}

/* Testimonials Grid */
.service-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
  margin-top: 25px;
}

@media (max-width: 600px) {
  .price-table th, 
  .price-table td {
    padding: 10px 12px;
    font-size: 0.85rem;
  }
}

