/* ============================================
   CROSSAIR - HEADER CSS
   Matches provided HTML structure & design notes
   ============================================ */

/* ----- Root Variables (consistent with brand) ----- */
:root {
  --primary: #1F3A5F;      /* Deep navy */
  --accent:  #D32F2F;      /* Strong red */
  --text:    #333333;
  --text-light: #666666;
  --bg-light: #F5F5F5;
  --white:   #ffffff;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --transition: 0.3s ease;
  --font-heading: 'Poppins', 'Inter', sans-serif;
  --font-body: 'Inter', 'Poppins', sans-serif;
  --header-height-desktop: 90px;
  --header-height-mobile: 70px;
}

/* ----- Global Reset (header relies on these) ----- */
*, *::before, *::after {
  box-sizing: border-box;
}
body, html {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  color: var(--text);
  overflow-x: hidden;
  padding-top: var(--header-height-desktop);
}

/* ----- Top Bar (Emergency Phone) ----- */
.top-bar {
  display: none;
}

/* ----- Main Header ----- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow var(--transition);
  transform: translateY(0);
  width: 100%;
}
.site-header.hide {
  transform: translateY(-100%);
  box-shadow: none;
}
.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

/* Don't hide header when mobile menu is open */
.site-header.nav-open,
.site-header.nav-open.hide {
  transform: translateY(0);
}

/* ----- Nav Container (logo + nav + hamburger) ----- */
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 20px;
  height: var(--header-height-desktop);
}

/* Logo */
.logo {
  flex-shrink: 0;
  margin-right: 2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}

.logo img {
  height: 70px;
  width: auto;
  display: block;
  transition: height var(--transition), transform 0.3s ease, filter 0.3s ease;
  filter: drop-shadow(0 2px 8px rgba(31, 58, 95, 0.15));
}

.logo img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 4px 12px rgba(211, 47, 47, 0.25));
}

.site-name {
  display: none;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
}

.accent-text {
  color: var(--accent);
}

/* ----- Main Navigation (Centered) ----- */
.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}
.main-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2rem;
  margin: 0;
  padding: 0;
}
.main-nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  transition: color var(--transition);
  position: relative;
}
.main-nav a:hover {
  color: var(--accent);
}

/* Dropdown parent */
.main-nav .dropdown {
  position: relative;
}
/* Dropdown menu (hidden by default) */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  box-shadow: var(--shadow-md);
  border-radius: 8px;
  min-width: 220px;
  padding: 0.5rem 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  z-index: 999;
}
/* Show on hover (desktop) */
.main-nav .dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu li {
  padding: 0;
}
.dropdown-menu a {
  display: block;
  padding: 0.6rem 1.2rem;
  color: var(--text);
  font-weight: 400;
  white-space: nowrap;
}
.dropdown-menu a:hover {
  background-color: var(--bg-light);
  color: var(--accent);
}

/* ----- Nav Actions (Call Now Button) ----- */
.nav-actions {
  flex-shrink: 0;
  margin-left: 2rem;
}

.call-now-btn {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  background: var(--accent);
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  border-radius: 50px;
  transition: all var(--transition);
  box-shadow: 0 4px 12px rgba(211, 47, 47, 0.3);
}

.call-now-btn:hover {
  background: #b71c1c;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(211, 47, 47, 0.4);
}

/* ----- Hamburger Toggle Button (Mobile) ----- */
.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px 8px;
  z-index: 1100;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.mobile-toggle:hover {
  background-color: rgba(211, 47, 47, 0.08);
}

.mobile-toggle:active {
  background-color: rgba(211, 47, 47, 0.15);
}

/* Hamburger Lines */
.hamburger-line {
  display: block;
  width: 24px;
  height: 2.5px;
  background-color: var(--primary);
  border-radius: 2px;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.35s ease, opacity 0.35s ease;
  transform-origin: center;
}

.line-1 {
  transform: translateY(0);
}

.line-2 {
  opacity: 1;
}

.line-3 {
  transform: translateY(0);
}

/* Active State - Transform to X */
.mobile-toggle.active .line-1 {
  transform: translateY(8px) rotate(45deg);
  background-color: var(--accent);
}

.mobile-toggle.active .line-2 {
  opacity: 0;
  transform: translateX(-10px);
}

.mobile-toggle.active .line-3 {
  transform: translateY(-8px) rotate(-45deg);
  background-color: var(--accent);
}

/* ----- Responsive Breakpoints ----- */

/* Tablet (992px and below) */
@media screen and (max-width: 992px) {
  .nav-container {
    height: var(--header-height-mobile);
  }
  .logo img {
    height: 75px;
  }
  .main-nav ul {
    gap: 1.5rem;
  }
}

/* Mobile (768px and below) */
@media screen and (max-width: 768px) {
  .mobile-toggle {
    display: flex;          /* Show hamburger */
  }
  .logo img {
    height: 65px;
  }
  .site-name {
    display: block;
  }
  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--white);
    overflow-y: auto;
    padding: 90px 0 40px;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1050;
    will-change: transform;
  }
  .main-nav.nav-open {
    transform: translateX(0);
  }
  .main-nav ul {
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
    margin: 0;
    padding: 0;
  }
  .main-nav li {
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
    padding: 0;
  }
  .main-nav a {
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 1rem 1.5rem;
    color: var(--text);
    transition: background-color 0.2s ease, color 0.2s ease;
    border-left: 3px solid transparent;
  }
  .main-nav a:hover {
    background-color: #f9f9f9;
    color: var(--accent);
    border-left-color: var(--accent);
  }
  .dropdown-menu {
    position: static;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    padding: 0;
    border: none;
    border-radius: 0;
    background-color: #fafafa;
    margin: 0;
  }
  .dropdown-menu li {
    border: none;
    padding: 0;
  }
  .dropdown-menu a {
    font-size: 0.9rem;
    font-weight: 400;
    padding: 0.8rem 1.5rem 0.8rem 2.5rem;
    border-left: 3px solid transparent;
    transition: background-color 0.2s ease, color 0.2s ease;
  }
  .dropdown-menu a:hover {
    background-color: #f0f0f0;
    color: var(--accent);
    border-left-color: var(--accent)0f0f0;
    padding-left: 2.8rem;
  }
  .dropdown-menu.show {
    display: block;
  }
  /* Keep hover effect for desktop only, so override for mobile */
  .main-nav .dropdown:hover .dropdown-menu {
    display: none;            /* reset hover effect on mobile */
  }
  .nav-actions {
    display: none;
  }
  body, html {
    padding-top: var(--header-height-mobile);
  }
}

/* Small extra adjustments for very narrow screens (370px+ is minimum) */
@media screen and (max-width: 480px) {
  .nav-container {
    padding: 0 15px;
  }
}


/* ========== FOOTER ========== */
.site-footer {
  background-color: var(--primary); /* #1F3A5F */
  color: #ffffff;
  padding: 4rem 0 0;
  font-family: var(--font-body);
}

.site-footer .container {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Grid columns */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
}

/* Footer column styling */
.footer-col h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: 1.2rem;
  color: #ffffff;
  position: relative;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li,
.footer-col p {
  margin-bottom: 0.7rem;
  font-size: clamp(0.85rem, 1.5vw, 0.95rem);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
}

.footer-col a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--accent); /* red on hover */
}

/* Logo column */
.footer-logo {
  max-width: 220px;
  height: auto;
  margin-bottom: 1.5rem;
  display: block;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.footer-logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 4px 12px rgba(211, 47, 47, 0.25));
}

/* Social icons */
.social-links {
  display: flex;
  gap: 0.8rem;
  margin: 0.8rem 0 1rem;
  flex-wrap: wrap;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 1rem;
  text-decoration: none;
  transition: background var(--transition), transform var(--transition), color var(--transition);
}

.social-links a:hover {
  background: var(--accent);
  transform: translateY(-3px);
  color: #ffffff;
}

/* Partner links (HomeAdvisor, Yelp) */
.partner-links {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.partner-links a {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color var(--transition);
}

.partner-links a:hover {
  color: var(--accent);
  text-decoration: underline;
}

/* Bottom bar */
.footer-bottom {
  text-align: center;
  padding: 1.5rem 0;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom .powered-by {
  margin-left: 0.8rem;
  padding-left: 0.8rem;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  display: inline-block;
}

.footer-bottom .powered-by a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-bottom .powered-by a:hover {
  color: #ff6b6b;
  text-decoration: underline;
}

/* ========== RESPONSIVE ========== */

/* Tablet (<992px) – 3 columns */
@media screen and (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobile (<768px) – 2 columns (length kam) */
@media screen and (max-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .site-footer {
    padding: 2.5rem 0 0;
  }
}

/* Small Mobile (370px+ still supported) – ensures no scroll */
@media screen and (max-width: 480px) {
  .footer-grid {
    gap: 1rem;
  }
  .footer-logo {
    max-width: 160px;
  }
}


/* ========== HERO SECTION ========== */
.hero {
  position: relative;
  min-height: clamp(500px, 80vh, 700px);
  display: flex;
  align-items: center;
  background: url('/public/images/Hero section img/homehero.jpg') center top / cover no-repeat;
  background-attachment: fixed;
  overflow: hidden;
  margin-top: calc(var(--header-height-desktop) * -1);
  padding-top: var(--header-height-desktop);
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
}

/* Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(31, 58, 95, 0.85) 0%,
    rgba(31, 58, 95, 0.2) 100%
  );
  z-index: 1;
}

/* Content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 20px;
  color: #ffffff;
  animation: fadeInUp 0.8s ease both;
  text-align: left;
  width: 100%;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 600;
  font-size: clamp(0.8rem, 2vw, 0.9rem);
  padding: 8px 20px;
  border-radius: 30px;
  margin-bottom: 1.5rem;
  pointer-events: none;
  letter-spacing: 0.5px;
}

.hero-content h1 {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 6vw, 3.8rem);
  line-height: 1.15;
  margin: 0 0 1.2rem;
  color: #ffffff;
  max-width: 800px;
}

.hero-content .highlight {
  color: #D32F2F;
}

.hero-content p {
  font-family: 'Inter', 'Poppins', sans-serif;
  font-weight: 400;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  line-height: 1.6;
  max-width: 600px;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  background-color: #1F3A5F;
  color: #ffffff;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s, transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover {
  background-color: #162c48;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s, color 0.3s, transform 0.2s;
}
.btn-secondary:hover {
  background: #ffffff;
  color: #1F3A5F;
  transform: translateY(-2px);
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   📱 MOBILE VIEW (≥370px up to 768px)
   Full image dikhane ke liye background-size: contain
   ============================================ */
@media screen and (max-width: 768px) {
  .hero {
    min-height: 70vh;
    margin-top: calc(var(--header-height-mobile) * -1);
    padding-top: var(--header-height-mobile);
    background-attachment: scroll;
    background-size: cover;                  /* full cover, no empty spaces */
    background-position: right center;       /* 🔥 RIGHT SIDE FOCUS 🔥 */
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;                   /* content neeche */
  }

  .hero-overlay {
    background: linear-gradient(
      to top,
      rgba(31, 58, 95, 0.8) 0%,
      rgba(31, 58, 95, 0.25) 100%
    );
  }

  .hero-content {
    text-align: left;
    padding: 0 20px 2rem 20px;
    justify-content: flex-end;
  }

  .hero-content h1 {
    font-size: clamp(1.8rem, 7vw, 2.4rem);
    max-width: 100%;
  }

  .hero-content p {
    max-width: 100%;
    margin-bottom: 2rem;
  }

  .hero-buttons {
    justify-content: flex-start;
    padding-bottom: 0;
  }
}



/* ========== TRUST SECTION (NEXT‑LEVEL) ========== */
.trust-section {
  background-color: #F5F7F9;
  padding: clamp(4rem, 10vw, 6rem) 0;
  position: relative;
  z-index: 1;
  font-family: var(--font-body);
  /* Subtle dotted pattern overlay (very light) */
  background-image: radial-gradient(circle, rgba(31, 58, 95, 0.03) 1px, transparent 1px);
  background-size: 20px 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 2.8rem);
  color: #1A1A1A;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

/* Decorative underline */
.section-header h2::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: #D32F2F;
  border-radius: 2px;
}

.section-header p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #555555;
  max-width: 650px;
  margin: 1.5rem auto 0;
  line-height: 1.6;
}

/* ----- Grid (3 columns desktop) ----- */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);   /* 3 cards per row on desktop */
  gap: 2rem;
}

/* ----- Premium Card Design ----- */
.trust-card {
  background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
  border-radius: 28px;
  padding: 2.5rem 1.8rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04),
              0 1px 3px rgba(0, 0, 0, 0.03);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  z-index: 1;
  overflow: hidden;
  animation: fadeInUp 0.6s cubic-bezier(0.23, 1, 0.32, 1) both;
  border: 1px solid rgba(31, 58, 95, 0.05);
}

/* Glowing top highlight line (hidden by default) */
.trust-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20%;
  width: 60%;
  height: 4px;
  background: linear-gradient(to right, transparent, #D32F2F, transparent);
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transform: scaleX(0);
  border-radius: 0 0 4px 4px;
}

.trust-card:hover::before {
  opacity: 1;
  transform: scaleX(1);
}

/* Subtle background shine on hover */
.trust-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(211, 47, 47, 0.03) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.trust-card:hover::after {
  opacity: 1;
}

.trust-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(31, 58, 95, 0.12),
              0 5px 15px rgba(0, 0, 0, 0.08);
  border-color: rgba(211, 47, 47, 0.25);
}

/* ----- Icon circle (gradient + shadow) ----- */
.trust-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1F3A5F 0%, #2a4d77 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  box-shadow: 0 8px 20px rgba(31, 58, 95, 0.25);
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
}

.trust-card:hover .trust-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 28px rgba(211, 47, 47, 0.3);
}

/* ----- Text details ----- */
.trust-card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: #1A1A1A;
  margin-bottom: 0.6rem;
  letter-spacing: -0.2px;
}

.trust-card p {
  font-size: 0.95rem;
  color: #555555;
  line-height: 1.6;
  margin: 0;
}

/* ========== RESPONSIVE ========== */

/* Tablet: 2 columns (≤992px) */
@media screen and (max-width: 992px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8rem;
  }
  .trust-card {
    padding: 2rem 1.5rem;
  }
}

/* Mobile: 1 column (≤768px) – perfect alignment */
@media screen and (max-width: 768px) {
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
  }
  .trust-card {
    padding: 2rem 1.2rem;
    text-align: center;
  }
  .section-header h2 {
    font-size: 1.8rem;
  }
}

/* Small Mobile (≥370px) */
@media screen and (max-width: 480px) {
  .trust-card {
    padding: 1.5rem 1rem;
  }
  .trust-icon {
    width: 64px;
    height: 64px;
    font-size: 1.5rem;
  }
}

/* Re‑use fadeInUp keyframes (already in hero, but safe to duplicate) */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}


/* ========== INTRO SECTION (PREMIUM) ========== */
.intro-section {
  padding: clamp(4rem, 10vw, 6rem) 0;
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #F5F7F9 100%);
  text-align: center;
  z-index: 1;
  overflow: hidden;
}

/* Subtle background decorative circles */
.intro-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(31, 58, 95, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.intro-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(211, 47, 47, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.intro-section .container {
  position: relative;
  z-index: 2;
}

/* Small top label */
.intro-label {
  display: inline-block;
  background: rgba(31, 58, 95, 0.08);
  color: #1F3A5F;
  font-weight: 600;
  font-size: clamp(0.8rem, 1.5vw, 0.9rem);
  padding: 6px 18px;
  border-radius: 50px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

/* Main heading */
.intro-section h2 {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 2.8rem);
  color: #1A1A1A;
  line-height: 1.2;
  margin: 0 auto 1rem;
  max-width: 800px;
}

/* Decorative divider */
.intro-divider {
  width: 70px;
  height: 4px;
  background: #D32F2F;
  border-radius: 2px;
  margin: 0 auto 1.8rem;
}

/* Paragraph text */
.intro-section p {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: #555555;
  line-height: 1.7;
  max-width: 750px;
  margin: 0 auto;
}

/* Fade‑in animation on scroll (we'll keep simple) */
@media (prefers-reduced-motion: no-preference) {
  .intro-section {
    animation: fadeInUp 0.8s cubic-bezier(0.23, 1, 0.32, 1) both;
    animation-timeline: view();
    animation-range: entry 0% entry 80%;
  }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ========== RESPONSIVE ========== */
@media screen and (max-width: 768px) {
  .intro-section h2 {
    font-size: 1.8rem;
  }
  .intro-section p {
    max-width: 100%;
  }
}

/* ========== SERVICES SECTION – NEXT LEVEL ========== */
.services-section {
  background-color: #F5F7F9;
  padding: clamp(4rem, 10vw, 7rem) 0;
  position: relative;
  z-index: 1;
  /* Subtle texture */
  background-image: radial-gradient(circle at 20% 30%, rgba(31, 58, 95, 0.02) 0%, transparent 50%),
                    radial-gradient(circle at 80% 70%, rgba(211, 47, 47, 0.02) 0%, transparent 50%);
}

/* Section heading */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 3rem);
  color: #1A1A1A;
  margin: 0 auto 0.5rem;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -12px;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #D32F2F;
  border-radius: 4px;
}

.section-header p {
  font-size: 1.1rem;
  color: #555555;
  max-width: 600px;
  margin: 1.2rem auto 0;
  line-height: 1.5;
}

/* Grid – Desktop 3, Tablet 2, Mobile 1 */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* Card – premium container */
.service-card {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
  transition: transform 0.45s cubic-bezier(0.23, 1, 0.32, 1),
              box-shadow 0.45s ease;
  z-index: 1;
  background-color: #1F3A5F; /* fallback */
  animation: fadeInUp 0.7s cubic-bezier(0.23, 1, 0.32, 1) both;
}

/* Background image */
.service-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease, filter 0.4s ease;
  z-index: 0;
}

.service-card:hover .service-card-bg {
  transform: scale(1.04);
  filter: brightness(0.85);
}

/* Gradient overlay – elegant dark to red */
.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(31, 58, 95, 0.95) 0%,       /* deep brand blue at bottom */
    rgba(31, 58, 95, 0.3) 50%,       /* mid transparent */
    rgba(0, 0, 0, 0) 80%             /* top transparent */
  );
  transition: background 0.4s ease;
  z-index: 1;
}

.service-card:hover .service-card-overlay {
  background: linear-gradient(
    to top,
    rgba(211, 47, 47, 0.95) 0%,      /* red tint takeover */
    rgba(31, 58, 95, 0.5) 60%,
    rgba(0, 0, 0, 0) 90%
  );
}

/* Content area */
.service-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 2rem 1.8rem;
  z-index: 2;
  color: #ffffff;
  width: 100%;
  transition: transform 0.3s ease;
}

/* Title badge – glass effect */
.service-card-content h3 {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #1F3A5F;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  display: inline-block;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 0.8rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: all 0.35s ease;
}

.service-card:hover .service-card-content h3 {
  color: #ffffff;
  background: #D32F2F;
  box-shadow: 0 4px 14px rgba(211, 47, 47, 0.4);
  transform: translateY(-2px);
}

/* Description */
.service-card-content p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.95);
  line-height: 1.55;
  margin-bottom: 1.2rem;
  max-width: 90%;
}

/* Link */
.service-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border-bottom: 2px solid rgba(255,255,255,0.3);
  transition: color 0.35s ease, letter-spacing 0.2s ease, border-color 0.35s ease;
}

.service-link:hover {
  color: #D32F2F;
  border-color: #D32F2F;
  letter-spacing: 0.6px;
}

/* Hover lift & red glow shadow */
.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 24px 48px rgba(31, 58, 95, 0.18),
              0 0 0 2px rgba(211, 47, 47, 0.3);
}

/* ========== RESPONSIVE ========== */

/* Tablet – 2 cards */
@media screen and (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .service-card-content {
    padding: 1.5rem 1.4rem;
  }
}

/* Mobile – 1 card */
@media screen and (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
    max-width: 500px;
    margin: 0 auto;
  }
  .service-card-content h3 {
    font-size: 1.1rem;
  }
}

/* Small mobile tweaks */
@media screen and (max-width: 480px) {
  .service-card-content {
    padding: 1.2rem;
  }
}

/* Stagger animation keyframes (global) */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ========== ABOUT SECTION (SPLIT LAYOUT) ========== */
.about-section {
  padding: clamp(4rem, 10vw, 7rem) 0;
  background: linear-gradient(180deg, #FFFFFF 0%, #F5F7F9 100%);
  position: relative;
  overflow: hidden;
}

/* Tiny decorative element top left */
.about-section::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(31,58,95,0.04) 0%, transparent 70%);
  border-radius: 50%;
}

.about-container {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 4rem;
  position: relative;
  z-index: 2;
}

/* Left text column */
.about-text {
  flex: 1;
  animation: fadeInLeft 0.8s cubic-bezier(0.23, 1, 0.32, 1) both;
}

.about-label {
  display: inline-block;
  background: rgba(31,58,95,0.08);
  color: #1F3A5F;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 6px 18px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.about-text h2 {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 2.8rem);
  color: #1A1A1A;
  margin: 0 0 1.2rem;
  position: relative;
}

/* small red underline */
.about-text h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: #D32F2F;
  border-radius: 2px;
  margin-top: 0.6rem;
}

.about-text p {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: #555555;
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* Button – primary solid blue (brand compliant) */
.btn-primary {
  background-color: #1F3A5F;
  color: #ffffff;
  padding: 14px 34px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background-color: #D32F2F;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(211,47,47,0.3);
}

/* Right image column */
.about-image {
  flex: 1;
  position: relative;
  animation: fadeInRight 0.8s cubic-bezier(0.23, 1, 0.32, 1) both;
}

/* Image frame with curved corners and shadow */
.about-img-frame {
  border-radius: 28px 28px 120px 28px;  /* unique curve */
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  aspect-ratio: 4/3;
}

.about-img-frame:hover {
  transform: scale(1.02);
  box-shadow: 0 24px 48px rgba(31,58,95,0.15);
}

.about-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.about-img-frame:hover img {
  transform: scale(1.05);
}

/* Floating badge */
.about-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: #D32F2F;
  color: #ffffff;
  text-align: center;
  padding: 16px 24px;
  border-radius: 20px;
  box-shadow: 0 12px 28px rgba(211,47,47,0.3);
  animation: float 4s ease-in-out infinite;
}

.about-badge span {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1;
}

.about-badge small {
  font-size: 0.85rem;
  opacity: 0.9;
  letter-spacing: 0.5px;
}

/* Keyframes */
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ========== RESPONSIVE ========== */
@media screen and (max-width: 992px) {
  .about-container {
    flex-direction: column;
    gap: 3rem;
  }
  .about-text {
    text-align: center;
  }
  .about-text h2::after {
    margin-left: auto;
    margin-right: auto;
  }
  .about-image {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .about-img-frame {
    border-radius: 24px 24px 80px 24px;
  }
  .about-badge {
    bottom: -15px;
    left: 10px;
    padding: 12px 18px;
  }
  .about-badge span {
    font-size: 1.4rem;
  }
}

/* ========== STORY IMAGE SECTION (ABOUT PAGE) ========== */
.story-image {
  padding: clamp(3rem, 8vw, 5rem) 0;
  background: #FFFFFF;
}

.story-img-frame {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  aspect-ratio: 16/9;
}

.story-img-frame:hover {
  transform: scale(1.02);
  box-shadow: 0 24px 48px rgba(31,58,95,0.15);
}

.story-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.story-img-frame:hover img {
  transform: scale(1.05);
}

/* ========== RESPONSIVE ========== */
@media screen and (max-width: 768px) {
  .story-image {
    padding: 2rem 0;
  }
  .story-img-frame {
    border-radius: 20px;
    margin: 0 15px;
  }
}

/* ========== WHY CHOOSE US SECTION (PREMIUM GRID) ========== */
.why-choose-section {
  background: #FFFFFF;
  padding: clamp(4rem, 10vw, 7rem) 0;
  position: relative;
  z-index: 1;
}

/* Reuse the same section header style as before */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header h2 {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 2.8rem);
  color: #1A1A1A;
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #D32F2F;
  border-radius: 2px;
}

.section-header p {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: #555555;
  max-width: 600px;
  margin: 1rem auto 0;
}

/* Grid – 3 columns desktop, 2 tablet, 1 mobile */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* Card styling */
.why-card {
  background: #F5F7F9;
  border-radius: 24px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1),
              box-shadow 0.35s ease,
              background 0.35s ease;
  box-shadow: 0 4px 14px rgba(0,0,0,0.04);
  border: 1px solid rgba(31, 58, 95, 0.05);
  animation: fadeInUp 0.7s cubic-bezier(0.23, 1, 0.32, 1) both;
  position: relative;
  overflow: hidden;
}

.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 36px rgba(31,58,95,0.12);
  background: #ffffff;
  border-color: rgba(211,47,47,0.25);
}

/* Top accent line on hover */
.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 0;
  height: 4px;
  background: #D32F2F;
  transition: width 0.3s ease, left 0.3s ease;
}

.why-card:hover::before {
  width: 100%;
  left: 0;
}

/* Icon circle */
.why-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #1F3A5F;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.7rem;
  box-shadow: 0 8px 16px rgba(31,58,95,0.2);
  transition: all 0.4s ease;
}

.why-card:hover .why-icon {
  background: #D32F2F;
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 24px rgba(211,47,47,0.3);
}

/* Heading */
.why-card h3 {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: #1A1A1A;
  margin-bottom: 0.6rem;
}

/* Description */
.why-card p {
  font-size: 0.95rem;
  color: #555555;
  line-height: 1.5;
  margin: 0;
}

/* ========== RESPONSIVE ========== */
@media screen and (max-width: 992px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .why-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
  }
  .why-card {
    padding: 2rem 1.5rem;
  }
}

/* ========== HOW IT WORKS (3-STEP PROCESS) ========== */
.process-section {
  background: linear-gradient(180deg, #F5F7F9 0%, #ffffff 100%);
  padding: clamp(4rem, 10vw, 7rem) 0;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Thin decorative line connecting steps (visible on desktop) */
.process-line {
  position: absolute;
  top: 50%;
  left: 5%;
  right: 5%;
  height: 2px;
  background: rgba(31, 58, 95, 0.1);
  z-index: 0;
  display: none;
}

/* Section header (consistent) */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.section-header h2 {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 2.8rem);
  color: #1A1A1A;
  display: inline-block;
  position: relative;
}

.section-header h2::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #D32F2F;
  border-radius: 2px;
}

.section-header p {
  margin-top: 1.2rem;
  color: #555555;
  font-size: 1.1rem;
}

/* Grid – 3 columns desktop, 2 tablet, 1 mobile */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  position: relative;
  z-index: 2;
}

/* Card */
.process-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
  transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1),
              box-shadow 0.35s ease,
              border-color 0.3s ease;
  border: 1px solid rgba(31,58,95,0.05);
  position: relative;
  animation: fadeInUp 0.7s cubic-bezier(0.23, 1, 0.32, 1) both;
}

.process-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(31,58,95,0.1);
  border-color: rgba(211,47,47,0.3);
}

/* Big step number (absolutely positioned top left) */
.process-number {
  position: absolute;
  top: 15px;
  left: 20px;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 3rem;
  color: rgba(31,58,95,0.08);   /* subtle watermarked number */
  line-height: 1;
  pointer-events: none;
}

/* Icon circle */
.process-icon {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1F3A5F, #2a4d77);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.8rem;
  box-shadow: 0 10px 18px rgba(31,58,95,0.2);
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
}

.process-card:hover .process-icon {
  background: #D32F2F;
  box-shadow: 0 12px 24px rgba(211,47,47,0.3);
  transform: scale(1.1) rotate(-5deg);
}

/* Heading */
.process-card h3 {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #1A1A1A;
  margin-bottom: 0.8rem;
}

/* Description */
.process-card p {
  color: #555555;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Connecting arrow between cards (optional) */
.process-card:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: #D32F2F;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.3s ease;
  display: none;
}

/* ========== RESPONSIVE ========== */
@media screen and (max-width: 992px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8rem;
  }
}

@media screen and (max-width: 768px) {
  .process-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
  }
  .process-number {
    font-size: 2.5rem;
  }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}


/* ========== TIPS SECTION (TEXT-ONLY, ELEGANT NUMBERED) ========== */
.tips-section {
  background-color: #F5F7F9;
  padding: clamp(4rem, 10vw, 7rem) 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header h2 {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 2.8rem);
  color: #1A1A1A;
  display: inline-block;
  margin-bottom: 0.5rem;
  position: relative;
}
.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #D32F2F;
  border-radius: 2px;
}
.section-header p {
  font-size: 1.1rem;
  color: #555555;
  margin-top: 1.2rem;
}

/* Grid – 2 columns (desktop left/right) */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

/* Single tip row */
.tip-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-left 0.3s ease;
  border-left: 4px solid transparent;
  animation: fadeInUp 0.6s cubic-bezier(0.23, 1, 0.32, 1) both;
}

.tip-item:hover {
  transform: translateX(6px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  border-left-color: #D32F2F;
}

/* Number marker */
.tip-marker {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: #1F3A5F;
  line-height: 1;
  min-width: 45px;
  transition: color 0.3s ease;
}

.tip-item:hover .tip-marker {
  color: #D32F2F;
}

/* Text body */
.tip-body h3 {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: #1A1A1A;
  margin: 0 0 0.4rem;
}

.tip-body p {
  color: #555555;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* ========== RESPONSIVE ========== */
@media screen and (max-width: 768px) {
  .tips-grid {
    grid-template-columns: 1fr;
  }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}


/* ========== AREAS WE SERVE (IMAGE CARDS, DIFFERENT STYLE) ========== */
.areas-section {
  background-color: #FFFFFF;
  padding: clamp(4rem, 10vw, 7rem) 0;
  position: relative;
  z-index: 1;
}
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header h2 {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 2.8rem);
  color: #1A1A1A;
  display: inline-block;
  margin-bottom: 0.5rem;
  position: relative;
}
.section-header h2::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #D32F2F;
  border-radius: 2px;
}
.section-header p {
  font-size: 1.1rem;
  color: #555555;
  margin-top: 1rem;
}

/* Grid */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem;
}

/* Card */
.area-card {
  position: relative;
  aspect-ratio: 1 / 0.9;        /* slightly taller */
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
              box-shadow 0.4s ease;
  animation: fadeInUp 0.6s cubic-bezier(0.23, 1, 0.32, 1) both;
}

.area-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 32px rgba(31,58,95,0.12);
}
.area-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}
.area-card:hover .area-card-bg {
  transform: scale(1.03);
}

/* Overlay – bottom to top dark */
.area-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(31,58,95,0.85) 0%, rgba(31,58,95,0.1) 60%, transparent 100%);
  transition: background 0.4s ease;
}
.area-card:hover .area-card-overlay {
  background: linear-gradient(to top, rgba(211,47,47,0.92) 0%, rgba(31,58,95,0.3) 60%, transparent 100%);
}

/* Content bottom centered */
.area-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem;
  text-align: center;
  color: #ffffff;
  z-index: 2;
}
.area-card-content h3 {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  margin: 0 0 0.3rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.area-card-content p {
  font-size: 0.9rem;
  opacity: 0.95;
  margin-bottom: 0.8rem;
}
.area-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  border-bottom: 2px solid rgba(255,255,255,0.3);
  transition: color 0.3s ease, border-color 0.3s ease;
}
.area-card:hover .area-link {
  color: #D32F2F;
  border-color: #D32F2F;
}

/* ========== RESPONSIVE ========== */
@media screen and (max-width: 992px) {
  .areas-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }
}

/* ========== REVIEWS / TESTIMONIALS (PREMIUM CARDS) ========== */
.reviews-section {
  background: linear-gradient(180deg, #F5F7F9 0%, #FFFFFF 100%);
  padding: clamp(4rem, 10vw, 7rem) 0;
}
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header h2 {
  font-family: 'Poppins','Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 2.8rem);
  color: #1A1A1A;
  display: inline-block;
  margin-bottom: 0.5rem;
  position: relative;
}
.section-header h2::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #D32F2F;
  border-radius: 2px;
}
.section-header p {
  font-size: 1.1rem;
  color: #555;
  margin-top: 1rem;
}

/* Grid: desktop 3 columns, tablet 2, mobile 1 */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* Card */
.review-card {
  background: #FFFFFF;
  border-radius: 24px;
  padding: 2rem 1.8rem;
  position: relative;
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeInUp 0.6s cubic-bezier(0.23,1,0.32,1) both;
  border: 1px solid rgba(31,58,95,0.05);
}
.review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 36px rgba(31,58,95,0.1);
  border-color: rgba(211,47,47,0.2);
}

/* Big decorative quote mark */
.review-quote {
  font-family: 'Poppins', serif;
  font-size: 4rem;
  color: rgba(31,58,95,0.08);
  position: absolute;
  top: 10px;
  left: 20px;
  line-height: 1;
  pointer-events: none;
}

/* Review text */
.review-text {
  color: #555555;
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0.5rem 0 1.2rem;
  position: relative;
  z-index: 1;
}

/* Gold stars */
.review-stars {
  color: #FFB800;  /* gold */
  letter-spacing: 2px;
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}

/* Service tag (cost badge) */
.review-tag {
  display: inline-block;
  background: #F5F7F9;
  color: #1F3A5F;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 1rem;
}

/* Author area */
.review-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border-top: 1px solid #F0F0F0;
  padding-top: 1rem;
}

/* Client avatar (initials) */
.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #1F3A5F;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.author-info strong {
  display: block;
  color: #1A1A1A;
  font-size: 1rem;
}
.author-info span {
  font-size: 0.8rem;
  color: #888;
}

/* Source line */
.review-source {
  text-align: center;
  margin-top: 2.5rem;
  color: #888;
  font-size: 0.9rem;
}

/* ========== RESPONSIVE ========== */
@media screen and (max-width: 992px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ========== FINAL CTA (RED STRIP) ========== */
.cta-section {
  position: relative;
  background: linear-gradient(135deg, #D32F2F 0%, #b71c1c 100%);
  padding: clamp(4rem, 10vw, 6rem) 0;
  text-align: center;
  color: #ffffff;
  overflow: hidden;
  z-index: 1;
}

/* Subtle dot pattern overlay */
.cta-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  z-index: 0;
}

.cta-section .container {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Small lightning bolt or icon */
.cta-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 0.8rem;
}

.cta-section h2 {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 2.8rem);
  margin: 0 0 1rem;
  line-height: 1.2;
}

.cta-section p {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  opacity: 0.95;
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* Button group */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

/* Solid white button */
.btn-white-solid {
  background: #ffffff;
  color: #D32F2F;
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  border: 2px solid #ffffff;
}

.btn-white-solid:hover {
  background: transparent;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Outline white button */
.btn-white-outline {
  background: transparent;
  color: #ffffff;
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  display: inline-block;
  border: 2px solid rgba(255,255,255,0.8);
  transition: all 0.3s ease;
}

.btn-white-outline:hover {
  background: #ffffff;
  color: #D32F2F;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* Mobile buttons stack vertically */
@media screen and (max-width: 480px) {
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .btn-white-solid,
  .btn-white-outline {
    width: 100%;
    text-align: center;
  }
}


/* ========== CHATBOT WIDGET (PREMIUM ANIMATED) ========== */
#chatbot-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  font-family: 'Inter', 'Poppins', sans-serif;
}

/* Floating icon – pulsating ring effect */
.chatbot-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #D32F2F 0%, #b71c1c 100%);
  border: none;
  box-shadow: 0 10px 28px rgba(211,47,47,0.5);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: floatPulse 3s ease-in-out infinite;
  position: relative;
}
/* Pulsing outer ring */
.chatbot-icon::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,0.6);
  animation: ringPulse 2s ease-out infinite;
  pointer-events: none;
}
.chatbot-icon:hover {
  transform: scale(1.08);
  box-shadow: 0 16px 36px rgba(211,47,47,0.65);
}
.chatbot-icon svg {
  width: 32px;
  height: 32px;
}

/* Chat window */
.chatbot-window {
  position: fixed;
  bottom: 110px;
  right: 30px;
  width: 400px;
  max-width: calc(100vw - 40px);
  height: 560px;
  max-height: calc(100vh - 140px);
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(12px);
  border-radius: 24px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.25), 0 0 0 1px rgba(211,47,47,0.1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: bottom right;
}
.hidden {
  opacity: 0;
  visibility: hidden;
  transform: scale(0.9) translateY(30px);
  pointer-events: none;
}

/* Header – gradient brand blue */
.chatbot-header {
  background: linear-gradient(135deg, #1F3A5F 0%, #162c48 100%);
  color: #fff;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.chatbot-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.chatbot-logo {
  height: 30px;
  width: auto;
  filter: brightness(0) invert(1);
}
.chatbot-brand span {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.3px;
}
#chatbot-close {
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  font-size: 1.2rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
#chatbot-close:hover {
  background: rgba(255,255,255,0.3);
  transform: rotate(90deg);
}

/* Messages area – soft gradient background */
.chatbot-messages {
  flex: 1;
  padding: 18px 14px;
  overflow-y: auto;
  background: linear-gradient(180deg, #F9FAFC 0%, #F0F2F5 100%);
  display: flex;
  flex-direction: column;
  gap: 14px;
  scroll-behavior: smooth;
}

/* Common message bubble style */
.bot-message, .user-message {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  max-width: 88%;
  animation: messageSlideIn 0.35s cubic-bezier(0.2, 0.8, 0.2, 1.2) both;
}
.user-message {
  align-self: flex-end;
  flex-direction: row-reverse;
}

/* Avatar circle */
.bot-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1F3A5F, #2a4d77);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 3px 6px rgba(0,0,0,0.15);
}
.user-message .bot-avatar {
  background: linear-gradient(135deg, #D32F2F, #b71c1c);
}

/* Message content bubbles */
.msg-content {
  padding: 10px 16px;
  border-radius: 18px;
  font-size: 0.92rem;
  line-height: 1.55;
  word-wrap: break-word;
  position: relative;
}

/* Bot bubble – light grey with blue left accent */
.bot-message .msg-content {
  background: #FFFFFF;
  color: #1A1A1A;
  border: 1px solid #E8ECF0;
  box-shadow: 0 4px 10px rgba(0,0,0,0.03);
  border-bottom-left-radius: 4px;
}

/* User bubble – brand blue gradient */
.user-message .msg-content {
  background: linear-gradient(135deg, #1F3A5F 0%, #162c48 100%);
  color: #FFFFFF;
  border-bottom-right-radius: 4px;
  box-shadow: 0 6px 14px rgba(31,58,95,0.25);
}

/* Typing indicator (three animated dots) */
.typing .msg-content {
  background: #FFFFFF;
  color: #999;
  font-style: italic;
  border: 1px solid #E8ECF0;
}
.typing-dots {
  display: flex;
  gap: 5px;
  align-items: center;
  justify-content: center;
  height: 20px;
}
.typing-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #999;
  animation: typingBounce 1.2s infinite;
}
.typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.typing-dots span:nth-child(3) { animation-delay: 0.4s; }

/* Input area */
#chatbot-form {
  display: flex;
  border-top: 1px solid #E8ECF0;
  padding: 12px 14px;
  background: #FFFFFF;
  gap: 10px;
}
#chatbot-input {
  flex: 1;
  border: 1px solid #E8ECF0;
  padding: 12px 18px;
  border-radius: 30px;
  font-size: 0.9rem;
  background: #F5F7F9;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
#chatbot-input:focus {
  border-color: #1F3A5F;
  box-shadow: 0 0 0 3px rgba(31,58,95,0.1);
  background: #FFFFFF;
}
#chatbot-form button {
  background: linear-gradient(135deg, #D32F2F, #b71c1c);
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 14px rgba(211,47,47,0.3);
}
#chatbot-form button:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(211,47,47,0.45);
}
#chatbot-form button:active {
  transform: scale(0.95);
}

/* ========== ANIMATIONS ========== */
@keyframes floatPulse {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes ringPulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.8); opacity: 0; }
}
@keyframes messageSlideIn {
  0% { opacity: 0; transform: translateY(15px) scale(0.96); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes typingBounce {
  0%, 60%, 100% { transform: translateY(0); }
  30% { transform: translateY(-8px); }
}

/* Mobile adjustments */
@media screen and (max-width: 480px) {
  .chatbot-window {
    width: calc(100vw - 30px);
    right: 15px;
    bottom: 100px;
    height: 500px;
  }
  .chatbot-icon {
    width: 56px;
    height: 56px;
  }
}

/* ========== ABOUT PAGE STYLES ========== */

/* ----- About Hero ----- */
.about-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  background: url('/public/images/about-hero.jpg') center/cover no-repeat;
  overflow: hidden;
}
.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(31,58,95,0.9) 0%, rgba(31,58,95,0.4) 100%);
  z-index: 1;
}
.about-hero .hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 0 20px;
  max-width: 1250px;
  margin: 0 auto;
  width: 100%;
  animation: fadeInUp 0.8s ease;
}

/* ----- Two-column layout (used multiple times) ----- */
.about-two-col {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin: 0 auto;
  max-width: 1250px;
  padding: 0 20px;
}
.about-two-col.reverse {
  flex-direction: row-reverse;
}
.about-two-col > div {
  flex: 1;
}
.about-two-col img {
  width: 100%;
  border-radius: 28px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.intro-text h2, .story-text h2 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  color: #1A1A1A;
  margin-bottom: 1rem;
}
.intro-features {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.intro-features span {
  background: #F5F7F9;
  padding: 8px 16px;
  border-radius: 30px;
  font-weight: 600;
  color: #1F3A5F;
  font-size: 0.9rem;
}
.intro-features i {
  margin-right: 6px;
  color: #D32F2F;
}

/* ----- Mission Section ----- */
.mission-section {
  background: #1F3A5F;
  color: #fff;
  padding: 4rem 0;
  text-align: center;
}
.mission-section h2 {
  color: #fff;
}
.section-icon {
  font-size: 2.5rem;
  color: #D32F2F;
  margin-bottom: 1rem;
}

/* ----- Different Cards ----- */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.diff-card {
  background: #fff;
  border-radius: 24px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.04);
  transition: transform 0.3s, box-shadow 0.3s;
}
.diff-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(31,58,95,0.1);
}
.diff-card i {
  font-size: 2.5rem;
  color: #1F3A5F;
  margin-bottom: 1rem;
}
.diff-card h3 {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

/* ----- Comfort Section ----- */
.comfort-section {
  background: #F5F7F9;
  padding: 4rem 0;
}
.icon-list {
  list-style: none;
  padding: 0;
}
.icon-list li {
  margin-bottom: 0.8rem;
  font-size: 1rem;
  color: #555;
}
.icon-list i {
  color: #D32F2F;
  margin-right: 10px;
  width: 20px;
}

/* ----- Values Grid ----- */
.values-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.value-item {
  background: #fff;
  padding: 1.5rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  color: #1F3A5F;
  box-shadow: 0 4px 10px rgba(0,0,0,0.04);
  transition: 0.3s;
}
.value-item i {
  margin-right: 10px;
  color: #D32F2F;
}

/* ----- FAQ Grid ----- */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.faq-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

/* Responsive */
@media screen and (max-width: 768px) {
  .about-two-col {
    flex-direction: column !important;
  }
  .diff-grid, .faq-grid {
    grid-template-columns: 1fr;
  }
}

/* ========== ABOUT INTRO SECTION (NEXT‑LEVEL) ========== */
.about-intro {
  padding: clamp(4rem, 10vw, 7rem) 0;
  background: linear-gradient(180deg, #FFFFFF 0%, #F5F7F9 100%);
  overflow: hidden;
}

.about-two-col {
  display: flex;
  align-items: center;
  gap: 5rem;
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ----- Left text block ----- */
.intro-text {
  flex: 1;
  position: relative;
  z-index: 2;
}

/* Decorative top label */
.intro-text::before {
  content: 'Who We Are';
  display: inline-block;
  background: rgba(31,58,95,0.08);
  color: #1F3A5F;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.intro-text h2 {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.6rem);
  color: #1A1A1A;
  margin: 0 0 1.2rem;
  line-height: 1.2;
  position: relative;
}

/* Red underline accent */
.intro-text h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: #D32F2F;
  border-radius: 2px;
  margin-top: 0.8rem;
}

.intro-text p {
  font-size: 1.05rem;
  color: #555555;
  line-height: 1.8;
  margin-bottom: 1.8rem;
}

/* Certification badges */
.intro-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.intro-features span {
  background: #FFFFFF;
  border: 1px solid rgba(31,58,95,0.1);
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  color: #1F3A5F;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}

.intro-features span:hover {
  border-color: #D32F2F;
  color: #D32F2F;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(211,47,47,0.1);
}

.intro-features i {
  color: #D32F2F;
  font-size: 1.1rem;
}

/* ----- Right image block ----- */
.intro-image {
  flex: 1;
  position: relative;
}

/* Main image frame */
.intro-image img {
  width: 100%;
  border-radius: 30px 30px 30px 120px;  /* unique curved shape */
  box-shadow: 0 30px 50px rgba(31,58,95,0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.intro-image:hover img {
  transform: scale(1.02);
  box-shadow: 0 40px 60px rgba(31,58,95,0.2);
}

/* Floating experience badge */
.intro-image::after {
  content: '10+ Years of Trust';
  position: absolute;
  bottom: -15px;
  left: -15px;
  background: #D32F2F;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 24px;
  border-radius: 20px;
  box-shadow: 0 14px 28px rgba(211,47,47,0.35);
  animation: floatBadge 4s ease-in-out infinite;
  white-space: nowrap;
}

/* Decorative background shapes (optional) */
.intro-image::before {
  content: '';
  position: absolute;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(211,47,47,0.06) 0%, transparent 70%);
  border-radius: 50%;
  top: -30px;
  right: -30px;
  z-index: 0;
  pointer-events: none;
}

/* ========== RESPONSIVE ========== */
@media screen and (max-width: 992px) {
  .about-two-col {
    flex-direction: column;
    gap: 3rem;
  }
  .intro-text {
    text-align: center;
  }
  .intro-text h2::after {
    margin-left: auto;
    margin-right: auto;
  }
  .intro-features {
    justify-content: center;
  }
  .intro-image img {
    border-radius: 28px 28px 80px 28px;
  }
  .intro-image::after {
    bottom: -10px;
    left: 10px;
  }
}

@media screen and (max-width: 480px) {
  .intro-features span {
    width: 100%;
    justify-content: center;
  }
  .intro-image::after {
    font-size: 0.8rem;
    padding: 10px 18px;
  }
}

/* ----- Animations ----- */
@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}


/* ========== OUR STORY (NEXT‑LEVEL TEXT‑ONLY DESIGN) ========== */
.our-story-section {
  position: relative;
  padding: clamp(5rem, 12vw, 8rem) 0;
  background: linear-gradient(135deg, #F5F7F9 0%, #FFFFFF 100%);
  overflow: hidden;
}

/* Large translucent decorative circles */
.our-story-section::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(31,58,95,0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.our-story-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(211,47,47,0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.story-content {
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
  animation: fadeInUp 0.8s cubic-bezier(0.23, 1, 0.32, 1) both;
}

/* Big year badge */
.story-year {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(3rem, 8vw, 5rem);
  color: #1F3A5F;
  background: rgba(31,58,95,0.04);
  padding: 0.2em 0.6em;
  border-radius: 20px;
  line-height: 1;
  margin-bottom: 0.5rem;
  position: relative;
}

/* Red accent line below year */
.story-year::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 40px;
  height: 4px;
  background: #D32F2F;
  border-radius: 2px;
}

.story-content h2 {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 2.6rem);
  color: #1A1A1A;
  margin: 1.5rem 0 0.8rem;
}

.story-divider {
  width: 60px;
  height: 4px;
  background: #D32F2F;
  border-radius: 2px;
  margin: 0 auto 1.5rem;
}

.story-content p {
  font-size: 1.05rem;
  color: #555555;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.story-content strong {
  color: #1F3A5F;
}

/* Value pills */
.story-values {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.story-values span {
  background: #FFFFFF;
  border: 1px solid rgba(31,58,95,0.1);
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600;
  color: #1F3A5F;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}

.story-values span:hover {
  border-color: #D32F2F;
  color: #D32F2F;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(211,47,47,0.1);
}

.story-values i {
  color: #D32F2F;
  margin-right: 8px;
}

/* ========== RESPONSIVE ========== */
@media screen and (max-width: 768px) {
  .story-values span {
    width: 100%;
    justify-content: center;
  }
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ========== MOBILE ONLY: Left-align story section text ========== */
@media screen and (max-width: 768px) {
  .our-story-section .story-content {
    text-align: left;
  }
  .our-story-section .story-content h2 {
    text-align: left;
  }
  .our-story-section .story-divider {
    margin-left: 0;
    margin-right: auto;
  }
  .our-story-section .story-values {
    justify-content: flex-start;
  }
}

/* ========== MISSION SECTION – ANIMATED & NEXT‑LEVEL ========== */
.mission-section {
  position: relative;
  background: linear-gradient(135deg, #1F3A5F 0%, #0f2a3f 100%);
  color: #ffffff;
  padding: clamp(4rem, 10vw, 6rem) 0;
  text-align: center;
  overflow: hidden;
  z-index: 1;
}

/* Animated background particles / subtle pattern */
.mission-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 30px 30px;
  animation: bgShift 20s linear infinite;
  z-index: 0;
  pointer-events: none;
}

/* Decorative glowing circles */
.mission-section::after {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(211,47,47,0.25) 0%, transparent 70%);
  border-radius: 50%;
  animation: floatSlow 8s ease-in-out infinite;
  z-index: 0;
}

.mission-section .container {
  position: relative;
  z-index: 2;
  animation: fadeInUp 0.8s cubic-bezier(0.23, 1, 0.32, 1) both;
}

/* Icon – pulsing glow */
.section-icon {
  font-size: 3rem;
  color: #D32F2F;
  margin-bottom: 1rem;
  display: inline-block;
  animation: iconPulse 2.5s ease-in-out infinite;
  position: relative;
}

.section-icon::after {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: rgba(211,47,47,0.15);
  animation: iconGlow 2.5s ease-in-out infinite;
  z-index: -1;
}

/* Heading */
.mission-section h2 {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 2.8rem);
  margin: 0 0 1rem;
  color: #ffffff;
}

/* Paragraph */
.mission-section p {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
  opacity: 0.95;
}

/* ========== KEYFRAMES ========== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes iconPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

@keyframes iconGlow {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.4); opacity: 0.15; }
}

@keyframes bgShift {
  0% { background-position: 0 0; }
  100% { background-position: 100px 100px; }
}

@keyframes floatSlow {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-20px, 20px); }
}

/* ========== MOBILE FINE‑TUNE ========== */
@media screen and (max-width: 768px) {
  .section-icon {
    font-size: 2.5rem;
  }
}

/* ========== WHAT MAKES US DIFFERENT – ENHANCED ========== */

.different-section {
  background: linear-gradient(180deg, #FFFFFF 0%, #F5F7F9 100%);
  padding: clamp(4rem, 10vw, 7rem) 0;
  position: relative;
  z-index: 1;
}

/* Consistent section header (reused from before) */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header h2 {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 2.8rem);
  color: #1A1A1A;
  display: inline-block;
  margin-bottom: 0.5rem;
  position: relative;
}
.section-header h2::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #D32F2F;
  border-radius: 2px;
}
.section-header p {
  font-size: 1.1rem;
  color: #555555;
  margin-top: 1rem;
}

/* Grid – keep 3 columns desktop, drop to 2 tablet, 1 mobile */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* Card */
.diff-card {
  background: #FFFFFF;
  border-radius: 26px;
  padding: 2.5rem 1.8rem;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.04);
  border: 1px solid rgba(31,58,95,0.05);
  transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
  animation: fadeInUpStagger 0.6s cubic-bezier(0.23, 1, 0.32, 1) both;
  z-index: 1;
}

/* Stagger animation delays */
.diff-card:nth-child(1) { animation-delay: 0.1s; }
.diff-card:nth-child(2) { animation-delay: 0.2s; }
.diff-card:nth-child(3) { animation-delay: 0.3s; }
.diff-card:nth-child(4) { animation-delay: 0.4s; }
.diff-card:nth-child(5) { animation-delay: 0.5s; }
.diff-card:nth-child(6) { animation-delay: 0.6s; }

/* Top red line on hover */
.diff-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 0;
  height: 5px;
  background: #D32F2F;
  transition: width 0.3s ease, left 0.3s ease;
}

.diff-card:hover::before {
  width: 100%;
  left: 0;
}

/* Subtle inner glow on hover */
.diff-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 26px;
  background: radial-gradient(circle at center, rgba(211,47,47,0.03) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: -1;
}

.diff-card:hover::after {
  opacity: 1;
}

/* Hover lift & shadow */
.diff-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 36px rgba(31,58,95,0.12);
  border-color: rgba(211,47,47,0.25);
}

/* Icon */
.diff-card i {
  font-size: 2.5rem;
  color: #1F3A5F;
  margin-bottom: 1.2rem;
  display: inline-block;
  transition: all 0.35s ease;
  position: relative;
}

/* On hover, icon gets a glowing effect and color change */
.diff-card:hover i {
  color: #D32F2F;
  transform: scale(1.1) rotate(-5deg);
  filter: drop-shadow(0 4px 8px rgba(211,47,47,0.3));
}

/* Heading */
.diff-card h3 {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #1A1A1A;
  margin-bottom: 0.6rem;
  transition: color 0.3s ease;
}

.diff-card:hover h3 {
  color: #D32F2F;
}

/* Description */
.diff-card p {
  font-size: 0.95rem;
  color: #555555;
  line-height: 1.6;
  margin: 0;
}

/* ========== RESPONSIVE ========== */
@media screen and (max-width: 992px) {
  .diff-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .diff-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Keyframes for staggered fade-in-up */
@keyframes fadeInUpStagger {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========== COMFORT ANALYSIS SECTION – NEXT LEVEL ========== */
.comfort-section {
  padding: clamp(4rem, 10vw, 7rem) 0;
  background: linear-gradient(135deg, #F5F7F9 0%, #FFFFFF 100%);
  position: relative;
  overflow: hidden;
}

/* Decorative background shapes */
.comfort-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(31,58,95,0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.comfort-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(211,47,47,0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.about-two-col {
  display: flex;
  align-items: center;
  gap: 4rem;
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* ----- Left text column ----- */
.comfort-text {
  flex: 1;
}

.comfort-text h2 {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.4rem);
  color: #1A1A1A;
  margin-bottom: 0.8rem;
  position: relative;
}

/* Red underline */
.comfort-text h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: #D32F2F;
  border-radius: 2px;
  margin-top: 0.8rem;
}

.comfort-text > p {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.comfort-text h3 {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: #1F3A5F;
  margin: 2rem 0 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.comfort-text h3 i {
  color: #D32F2F;
  font-size: 1.4rem;
}

/* Icon list */
.icon-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.icon-list li {
  background: #FFFFFF;
  padding: 14px 18px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
  border: 1px solid rgba(31,58,95,0.05);
  font-size: 0.95rem;
  color: #333;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
}

.icon-list li:hover {
  transform: translateX(6px);
  border-color: #D32F2F;
  box-shadow: 0 8px 18px rgba(211,47,47,0.08);
}

.icon-list i {
  font-size: 1.3rem;
  color: #1F3A5F;
  width: 24px;
  text-align: center;
  transition: color 0.3s ease, transform 0.3s ease;
}

.icon-list li:hover i {
  color: #D32F2F;
  transform: scale(1.2);
}

/* ----- Right image column ----- */
.comfort-image {
  flex: 1;
  position: relative;
}

.comfort-image img {
  width: 100%;
  border-radius: 28px 28px 28px 100px;
  box-shadow: 0 30px 50px rgba(31,58,95,0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.comfort-image:hover img {
  transform: scale(1.02);
  box-shadow: 0 40px 60px rgba(31,58,95,0.2);
}

/* Floating "Free Analysis" badge */
.comfort-image::after {
  content: 'Free Analysis';
  position: absolute;
  bottom: -15px;
  left: -15px;
  background: #D32F2F;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 24px;
  border-radius: 20px;
  box-shadow: 0 14px 28px rgba(211,47,47,0.35);
  animation: floatBadge 4s ease-in-out infinite;
}

@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ========== RESPONSIVE ========== */
@media screen and (max-width: 992px) {
  .about-two-col {
    flex-direction: column;
    gap: 3rem;
  }
  .comfort-image img {
    border-radius: 28px 28px 80px 28px;
  }
}

@media screen and (max-width: 768px) {
  .icon-list {
    grid-template-columns: 1fr;
  }
  .comfort-text h2::after {
    margin-left: auto;
    margin-right: auto;
  }
}

/* ========== SERVICE AREA SECTION ========== */
.service-area-section {
  padding: clamp(4rem, 10vw, 6rem) 0;
  background: #FFFFFF;
  text-align: center;
}
.service-area-section h2 {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 2.6rem);
  color: #1A1A1A;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}
.service-area-section h2::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #D32F2F;
  border-radius: 2px;
}
.service-area-section p {
  max-width: 700px;
  margin: 1.5rem auto 2.5rem;
  font-size: 1.05rem;
  color: #555555;
  line-height: 1.7;
}
.area-map-illustration img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(31,58,95,0.1);
  transition: transform 0.3s ease;
}
.area-map-illustration img:hover {
  transform: scale(1.02);
}

/* ========== BUILT ON RELATIONSHIPS SECTION ========== */
.relationships-section {
  padding: clamp(4rem, 10vw, 6rem) 0;
  background: #F5F7F9;
  text-align: center;
}
.relationships-section h2 {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 2.6rem);
  color: #1A1A1A;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}
.relationships-section h2::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #D32F2F;
  border-radius: 2px;
}
.relationships-section > .container > p {
  max-width: 650px;
  margin: 1.5rem auto 2.5rem;
  font-size: 1.05rem;
  color: #555555;
  line-height: 1.7;
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1rem;
}

.value-item {
  background: #FFFFFF;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  color: #1F3A5F;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
  border: 1px solid rgba(31,58,95,0.05);
  transition: all 0.3s ease;
}
.value-item i {
  color: #D32F2F;
  font-size: 1.2rem;
  transition: transform 0.3s;
}
.value-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(31,58,95,0.1);
  border-color: rgba(211,47,47,0.3);
  color: #D32F2F;
}
.value-item:hover i {
  transform: scale(1.2);
}

/* ----- Responsive ----- */
@media screen and (max-width: 768px) {
  .values-grid {
    flex-direction: column;
    align-items: center;
  }
  .value-item {
    width: 100%;
    justify-content: center;
  }
}

/* ========== ABOUT FAQ SECTION – PREMIUM ANIMATED ========== */
.about-faq {
  padding: clamp(4rem, 10vw, 6rem) 0;
  background: linear-gradient(180deg, #FFFFFF 0%, #F5F7F9 100%);
}

.about-faq .container h2 {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 2.6rem);
  color: #1A1A1A;
  text-align: center;
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

/* Red underline */
.about-faq .container h2::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #D32F2F;
  border-radius: 2px;
}

/* Grid – 2 columns desktop, 1 mobile */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

/* Card */
.faq-card {
  background: #FFFFFF;
  border-radius: 24px;
  padding: 2rem 2.2rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(31, 58, 95, 0.05);
  transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
  animation: fadeInUpFaq 0.6s ease both;
}

/* Staggered animation */
.faq-card:nth-child(1) { animation-delay: 0.1s; }
.faq-card:nth-child(2) { animation-delay: 0.2s; }
.faq-card:nth-child(3) { animation-delay: 0.3s; }
.faq-card:nth-child(4) { animation-delay: 0.4s; }

/* Red accent line left side on hover */
.faq-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: #D32F2F;
  transform: scaleY(0);
  transition: transform 0.3s ease;
  border-radius: 24px 0 0 24px;
}

.faq-card:hover::before {
  transform: scaleY(1);
}

.faq-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 36px rgba(31, 58, 95, 0.1);
  border-color: rgba(211, 47, 47, 0.25);
}

.faq-card h3 {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #1A1A1A;
  margin-bottom: 0.8rem;
  transition: color 0.3s;
}

.faq-card:hover h3 {
  color: #D32F2F;
}

.faq-card p {
  font-size: 1rem;
  color: #555555;
  line-height: 1.7;
  margin: 0;
}

/* ========== RESPONSIVE ========== */
@media screen and (max-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .faq-card {
    padding: 1.5rem;
  }
  .about-faq .container h2 {
    left: auto;
    transform: none;
  }
  .about-faq .container h2::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

@keyframes fadeInUpFaq {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =============================================
   FINANCING PAGE – NEXT‑LEVEL STYLING
   ============================================= */

/* ----- Hero (already has overlay, we add animation) ----- */
.financing-hero .hero-content {
  animation: fadeInUp 0.8s cubic-bezier(0.23, 1, 0.32, 1) both;
}


/* ----- Intro (spacious) ----- */
.intro {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.intro p {
  color: #555;
  line-height: 1.7;
}

/* ----- Process Steps – floating cards ----- */
.how-it-works {
  background: linear-gradient(180deg, #fff 0%, #F5F7F9 100%);
  padding: 4rem 0;
  text-align: center;
}
.process-steps {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}
.process-steps .step {
  background: #ffffff;
  border-radius: 28px;
  padding: 2rem 1.5rem 1.8rem;
  width: 220px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.04);
  border: 1px solid rgba(31,58,95,0.06);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
}
.process-steps .step::before {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 80px; height: 80px;
  background: radial-gradient(circle, rgba(211,47,47,0.1) 0%, transparent 70%);
  border-radius: 50%;
  transition: 0.4s;
}
.process-steps .step:hover::before {
  width: 120px; height: 120px;
  top: -40px; right: -40px;
}
.process-steps .step span {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  color: #D32F2F;
  margin-bottom: 0.3rem;
  transition: 0.3s;
}
.process-steps .step:hover span {
  transform: scale(1.1);
}
.process-steps .step:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 44px rgba(31,58,95,0.12);
  border-color: rgba(211,47,47,0.25);
}

/* ----- Finance Cards (3‑col grid) ----- */
.what-finance {
  padding: 4rem 0;
  text-align: center;
}
.finance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.finance-card {
  background: linear-gradient(145deg, #ffffff 0%, #F5F7F9 100%);
  border-radius: 28px;
  padding: 2.5rem 1.8rem;
  text-align: center;
  font-weight: 600;
  color: #1F3A5F;
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
  border: 1px solid rgba(31,58,95,0.05);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.finance-card i {
  font-size: 2.5rem;
  color: #1F3A5F;
  margin-bottom: 0.8rem;
  transition: 0.4s;
  display: block;
}
.finance-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(211,47,47,0.05), transparent);
  opacity: 0;
  transition: 0.4s;
}
.finance-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 48px rgba(31,58,95,0.12);
  border-color: rgba(211,47,47,0.3);
  background: #fff;
}
.finance-card:hover i {
  color: #D32F2F;
  transform: scale(1.15) rotate(-3deg);
}
.finance-card:hover::after {
  opacity: 1;
}

/* ----- Benefits pills (animated) ----- */
.benefits {
  padding: 4rem 0;
  background: #FFFFFF;
  text-align: center;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.benefit-item {
  background: #F5F7F9;
  padding: 1rem 2.2rem;
  border-radius: 60px;
  font-weight: 600;
  color: #1F3A5F;
  box-shadow: 0 2px 8px rgba(0,0,0,0.02);
  transition: all 0.35s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid transparent;
}
.benefit-item i {
  color: #D32F2F;
  transition: transform 0.3s;
}
.benefit-item:hover {
  background: #fff;
  border-color: #D32F2F;
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(211,47,47,0.08);
  color: #D32F2F;
}
.benefit-item:hover i {
  transform: scale(1.3);
}

/* ----- Apply Section – strong CTA ----- */
.apply {
  background: linear-gradient(135deg, #1F3A5F 0%, #0f2a3f 100%);
  color: #fff;
  text-align: center;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.apply::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: floatSlow 6s infinite;
}
.apply .btn-primary {
  background: #D32F2F;
  color: #fff;
  border-radius: 50px;
  padding: 16px 42px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  margin-top: 1.5rem;
  box-shadow: 0 12px 28px rgba(211,47,47,0.4);
  transition: 0.3s;
}
.apply .btn-primary:hover {
  background: #b71c1c;
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(211,47,47,0.6);
}

/* ----- FAQ cards (reuse from about page, just ensure it's scoped) ----- */
.about-faq .faq-card {
  background: #fff;
  border-radius: 22px;
  padding: 2rem;
  box-shadow: 0 6px 18px rgba(0,0,0,0.03);
  border: 1px solid rgba(31,58,95,0.05);
  transition: all 0.3s ease;
}
.about-faq .faq-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 32px rgba(31,58,95,0.08);
  border-color: rgba(211,47,47,0.2);
}
.about-faq .faq-card h3 {
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 0.6rem;
}
.about-faq .faq-card:hover h3 {
  color: #D32F2F;
}

/* ----- Responsive adjustments ----- */
@media screen and (max-width: 768px) {
  .finance-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-steps .step {
    width: 100%;
    max-width: 280px;
  }
}
@media screen and (max-width: 480px) {
  .finance-grid {
    grid-template-columns: 1fr;
  }
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

/* Shared float animation */
@keyframes floatSlow {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(20px, -20px) rotate(2deg); }
}


/* ========== FINANCING HERO SECTION ========== */
.financing-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: center;
  background: url('/public/images/financing-hero.jpg') center/cover no-repeat;
  overflow: hidden;
}

/* Dark gradient overlay – left dark, right lighter on desktop, full dark on mobile */
.financing-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(31, 58, 95, 0.92) 0%,
    rgba(31, 58, 95, 0.3) 100%
  );
  z-index: 1;
}

/* Content sits above overlay */
.financing-hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 20px;
  color: #ffffff;
  animation: fadeInUp 0.8s cubic-bezier(0.23, 1, 0.32, 1) both;
}

/* Glass badge */
.financing-hero .hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #ffffff;
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 600;
  font-size: clamp(0.8rem, 2vw, 0.9rem);
  padding: 8px 22px;
  border-radius: 50px;
  margin-bottom: 1.2rem;
  letter-spacing: 0.5px;
  pointer-events: none;
}

/* Heading */
.financing-hero h1 {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 6vw, 3.5rem);
  line-height: 1.2;
  margin: 0 0 1rem;
  max-width: 750px;
}

/* Paragraph */
.financing-hero p {
  font-family: 'Inter', 'Poppins', sans-serif;
  font-weight: 400;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  line-height: 1.6;
  max-width: 600px;
  opacity: 0.95;
}

/* Mobile – full dark overlay, center content */
@media screen and (max-width: 768px) {
  .financing-hero-overlay {
    background: rgba(31, 58, 95, 0.8);
  }
  .financing-hero {
    min-height: 45vh;
    text-align: center;
  }
  .financing-hero h1,
  .financing-hero p {
    max-width: 100%;
  }
}

/* Global fade-in-up animation (if not already defined) */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ========== SERVICE AREAS FINANCING SECTION ========== */
.service-areas-financing {
  padding: clamp(3rem, 8vw, 5rem) 0;
  background: linear-gradient(135deg, #F5F7F9 0%, #FFFFFF 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Subtle decorative circles */
.service-areas-financing::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(31,58,95,0.04) 0%, transparent 70%);
  border-radius: 50%;
}

.service-areas-financing h2 {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  color: #1A1A1A;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

/* Red underline */
.service-areas-financing h2::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: #D32F2F;
  border-radius: 2px;
}

.service-areas-financing p {
  font-size: 1.1rem;
  color: #555555;
  max-width: 700px;
  margin: 1.5rem auto 0;
  line-height: 1.7;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .service-areas-financing {
    text-align: left;
    padding: 2.5rem 20px;
  }
  .service-areas-financing h2 {
    display: block;
  }
  .service-areas-financing h2::after {
    left: 0;
    transform: none;
  }
  .service-areas-financing p {
    margin-left: 0;
    margin-right: 0;
  }
}


/* ========== CONTACT PAGE HERO & SERVICE PAGE HERO ========== */
.page-hero,
.page-hero--ac,
.page-hero--heating,
.page-hero--iaq,
.page-hero--duct,
.page-hero--maintenance,
.page-hero--emergency {
  position: relative;
  min-height: 45vh;
  display: flex;
  align-items: center;
  background: url('/public/images/contact-hero.jpg') center/cover no-repeat;
  overflow: hidden;
  margin: 0;
  padding: 0;
  margin-top: calc(var(--header-height-desktop) * -1);
  padding-top: var(--header-height-desktop);
  background-size: cover;
  background-position: center;
}

/* Dark overlay - covers full hero including padding */
.page-hero::before,
.page-hero--ac::before,
.page-hero--heating::before,
.page-hero--iaq::before,
.page-hero--duct::before,
.page-hero--maintenance::before,
.page-hero--emergency::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(31, 58, 95, 0.9) 0%,
    rgba(31, 58, 95, 0.35) 100%
  );
  z-index: 1;
}

.page-hero .container,
.page-hero--ac .container,
.page-hero--heating .container,
.page-hero--iaq .container,
.page-hero--duct .container,
.page-hero--maintenance .container,
.page-hero--emergency .container {
  position: relative;
  z-index: 2;
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  animation: fadeInUp 0.8s cubic-bezier(0.23, 1, 0.32, 1) both;
}

.page-hero h1 {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 6vw, 3.5rem);
  color: #ffffff;
  line-height: 1.2;
  max-width: 800px;
}

/* Mobile - full dark overlay, centered */
@media screen and (max-width: 768px) {
  .page-hero,
  .page-hero--ac,
  .page-hero--heating,
  .page-hero--iaq,
  .page-hero--duct,
  .page-hero--maintenance,
  .page-hero--emergency {
    min-height: 40vh;
    text-align: center;
    margin-top: calc(var(--header-height-mobile) * -1);
    padding-top: var(--header-height-mobile);
  }
  .page-hero::before,
  .page-hero--ac::before,
  .page-hero--heating::before,
  .page-hero--iaq::before,
  .page-hero--duct::before,
  .page-hero--maintenance::before,
  .page-hero--emergency::before {
    background: rgba(31, 58, 95, 0.82);
  }
  .page-hero h1 {
    max-width: 100%;
  }
}

/* Re‑use fadeInUp if not already defined */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}


/* ========== CONTACT INTRO SECTION ========== */
.intro {
  padding: clamp(4rem, 10vw, 6rem) 0;
  background: linear-gradient(180deg, #ffffff 0%, #F5F7F9 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Soft decorative background shapes */
.intro::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(211,47,47,0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.intro::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(31,58,95,0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.intro .container {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.intro h2 {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 2.6rem);
  color: #1A1A1A;
  margin-bottom: 1.2rem;
  line-height: 1.3;
}

/* Red underline */
.intro h2::after {
  content: '';
  display: block;
  width: 70px;
  height: 4px;
  background: #D32F2F;
  border-radius: 2px;
  margin: 1rem auto 0;
}

.intro p {
  font-size: 1.05rem;
  color: #555555;
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* Call button styling */
.intro .btn-primary {
  display: inline-block;
  margin-top: 1.5rem;
  background-color: #D32F2F;
  color: #fff;
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(211,47,47,0.3);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.intro .btn-primary:hover {
  background-color: #b71c1c;
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(211,47,47,0.4);
}

/* Mobile adjustments */
@media screen and (max-width: 768px) {
  .intro {
    text-align: left;
  }
  .intro h2::after {
    margin-left: 0;
    margin-right: auto;
  }
}


/* ========== CONTACT INFO SECTION – PREMIUM CARDS ========== */
.contact-info {
  padding: clamp(4rem, 10vw, 6rem) 0;
  background: linear-gradient(135deg, #F5F7F9 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

/* Subtle floating blobs */
.contact-info::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(31,58,95,0.04) 0%, transparent 70%);
  border-radius: 50%;
}

/* Grid – 3 columns desktop, 2 tablet, 1 mobile */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-card {
  background: #ffffff;
  border-radius: 26px;
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
  border: 1px solid rgba(31,58,95,0.05);
  transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 1;
}

/* Hover lift and red glow */
.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 44px rgba(31,58,95,0.12);
  border-color: rgba(211,47,47,0.25);
}

/* Red top accent line on hover */
.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 0;
  height: 4px;
  background: #D32F2F;
  transition: width 0.35s ease, left 0.35s ease;
}
.contact-card:hover::before {
  width: 100%;
  left: 0;
}

/* Subtle inside glow */
.contact-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 26px;
  background: radial-gradient(circle at center, rgba(211,47,47,0.03) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: -1;
}
.contact-card:hover::after {
  opacity: 1;
}

/* Heading */
.contact-card h3 {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: #1A1A1A;
  margin-bottom: 1rem;
  position: relative;
}

/* Small red underline */
.contact-card h3::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: #D32F2F;
  border-radius: 2px;
  margin-top: 0.6rem;
  transition: width 0.3s ease;
}
.contact-card:hover h3::after {
  width: 60px;
}

/* Phone number emphasis */
.contact-card p strong {
  font-size: 1.5rem;
  color: #D32F2F;
  font-weight: 700;
  display: block;
  margin-bottom: 0.5rem;
}
.contact-card p {
  font-size: 1rem;
  color: #555555;
  line-height: 1.7;
}

/* Email links style (if any) */
.contact-card a {
  color: #1F3A5F;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}
.contact-card a:hover {
  color: #D32F2F;
}

/* ========== RESPONSIVE ========== */
@media screen and (max-width: 992px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .contact-card {
    text-align: center;
  }
  .contact-card h3::after {
    margin-left: auto;
    margin-right: auto;
  }
}


/* ========== SERVICES REQUEST SECTION – PREMIUM ========== */
.services-request {
  padding: clamp(4rem, 10vw, 6rem) 0;
  background: linear-gradient(135deg, #FFFFFF 0%, #F5F7F9 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Decorative background shape */
.services-request::before {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(31,58,95,0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.services-request .container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.services-request h2 {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 2.6rem);
  color: #1A1A1A;
  margin-bottom: 0.8rem;
  display: inline-block;
  position: relative;
}
.services-request h2::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 70px;
  height: 4px;
  background: #D32F2F;
  border-radius: 2px;
}

.services-request p {
  font-size: 1.05rem;
  color: #555555;
  max-width: 650px;
  margin: 1.5rem auto 2.5rem;
  line-height: 1.7;
}

/* Check list grid */
.check-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

.check-list li {
  position: relative;
  background: #FFFFFF;
  border-radius: 14px;
  padding: 1.2rem 1.5rem 1.2rem 3rem;
  font-weight: 500;
  color: #1A1A1A;
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.02);
  border: 1px solid rgba(31,58,95,0.05);
  transition: all 0.3s ease;
  text-align: left;
  animation: fadeInUp 0.5s ease both;
}

/* Staggered animation */
.check-list li:nth-child(1) { animation-delay: 0.1s; }
.check-list li:nth-child(2) { animation-delay: 0.15s; }
.check-list li:nth-child(3) { animation-delay: 0.2s; }
.check-list li:nth-child(4) { animation-delay: 0.25s; }
.check-list li:nth-child(5) { animation-delay: 0.3s; }
.check-list li:nth-child(6) { animation-delay: 0.35s; }
.check-list li:nth-child(7) { animation-delay: 0.4s; }

/* Checkmark icon */
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background: #D32F2F;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.9rem;
  line-height: 1;
  transition: transform 0.3s, background 0.3s;
}

/* Hover effect */
.check-list li:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(31,58,95,0.08);
  border-color: rgba(211,47,47,0.25);
}

.check-list li:hover::before {
  transform: translateY(-50%) scale(1.1);
  background: #b71c1c;
}

/* SEO text below */
.services-request p:last-of-type {
  font-size: 0.95rem;
  color: #777;
  margin-top: 1rem;
}

/* ========== RESPONSIVE ========== */
@media screen and (max-width: 768px) {
  .check-list {
    grid-template-columns: 1fr;
  }
  .services-request h2::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

/* Keyframe if not defined globally */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}


/* ========== WHY TRUST SECTION (CONTACT PAGE) – ICON CARDS ========== */
.why-trust {
  padding: clamp(4rem, 10vw, 6rem) 0;
  background: #FFFFFF;
  text-align: center;
}

.why-trust h2 {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 2.6rem);
  color: #1A1A1A;
  margin-bottom: 2.5rem;
  display: inline-block;
  position: relative;
}
.why-trust h2::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #D32F2F;
  border-radius: 2px;
}

.trust-grid-contact {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: #F5F7F9;
  padding: 1.5rem 2rem;
  border-radius: 18px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}
.trust-item:hover {
  background: #fff;
  border-color: rgba(211,47,47,0.3);
  box-shadow: 0 12px 24px rgba(31,58,95,0.06);
  transform: translateY(-4px);
}

.trust-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #1F3A5F;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: background 0.3s, transform 0.3s;
}
.trust-item:hover .trust-icon-circle {
  background: #D32F2F;
  transform: scale(1.1);
}

.trust-item span {
  font-weight: 600;
  color: #1A1A1A;
  font-size: 1.05rem;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .trust-grid-contact {
    grid-template-columns: 1fr;
  }
}


/* ========== SERVICE BOOKING FORM – PREMIUM ========== */
.booking-section {
  background: linear-gradient(135deg, #FFFFFF 0%, #F5F7F9 100%);
  padding: clamp(4rem, 10vw, 6rem) 0;
  text-align: center;
}

.booking-section .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.booking-section h2 {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 2.6rem);
  color: #1A1A1A;
  margin-bottom: 0.5rem;
}

.booking-section > .container > p {
  color: #555;
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

/* Success message */
.form-success {
  background: #e8f5e9;
  color: #2e7d32;
  padding: 1rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* Form grid */
.booking-form {
  text-align: left;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  color: #1F3A5F;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 14px;
  font-size: 1rem;
  background: #fff;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #1F3A5F;
  box-shadow: 0 0 0 3px rgba(31,58,95,0.1);
}

.full-width {
  grid-column: 1 / -1;
}

/* Submit button */
.btn-submit {
  background: #D32F2F;
  color: #fff;
  border: none;
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(211,47,47,0.3);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 1rem;
}

.btn-submit:hover {
  background: #b71c1c;
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(211,47,47,0.4);
}

/* Responsive */
@media screen and (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}


/* ========== FINAL CTA SECTION (CONTACT PAGE) ========== */
.cta {
  background: linear-gradient(135deg, #D32F2F 0%, #b71c1c 100%);
  color: #ffffff;
  text-align: center;
  padding: clamp(4rem, 10vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

/* Subtle dot pattern overlay */
.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  z-index: 0;
}

.cta .container {
  position: relative;
  z-index: 2;
  max-width: 750px;
  margin: 0 auto;
  padding: 0 20px;
}

.cta h2 {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 2.6rem);
  line-height: 1.2;
  margin-bottom: 1rem;
  color: inherit;
}

.cta p {
  font-size: 1.1rem;
  opacity: 0.95;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.cta .btn-primary {
  background: #ffffff;
  color: #D32F2F;
  padding: 16px 38px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 12px 28px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
  border: 2px solid #ffffff;
  margin-bottom: 1.5rem;
}

.cta .btn-primary:hover {
  background: transparent;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(0,0,0,0.2);
}

.cta p:last-child {
  font-size: 0.95rem;
  opacity: 0.85;
  margin-bottom: 0;
}

/* Mobile adjustments */
@media screen and (max-width: 768px) {
  .cta .btn-primary {
    width: 100%;
  }
}


/* ========== SERVICE AREA MAP – CONTAINED & PROFESSIONAL ========== */

/* Container already limits width – we ensure map respects it */
.service-area-section .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

#service-map {
  width: 100%;
  max-width: 100%;          /* never exceed parent */
  margin: 2rem auto 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(31, 58, 95, 0.1);
  border: 1px solid rgba(31, 58, 95, 0.07);
  background: #fafafa;       /* subtle placeholder while map loads */
  transition: box-shadow 0.3s ease;
}

#service-map:hover {
  box-shadow: 0 28px 50px rgba(31, 58, 95, 0.15);
}

/* Keep Leaflet controls brand-aligned */
.leaflet-control-zoom a {
  background-color: #1F3A5F !important;
  color: #fff !important;
  border-radius: 8px !important;
  transition: background-color 0.2s;
}
.leaflet-control-zoom a:hover {
  background-color: #D32F2F !important;
}

.leaflet-control-attribution {
  background: rgba(255,255,255,0.85) !important;
  font-size: 0.75rem;
  padding: 2px 6px;
  border-radius: 4px;
}

/* Constrain map height on mobile */
@media screen and (max-width: 768px) {
  #service-map {
    height: 280px !important;
  }
}
.container {
  max-width: 1250px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* ==========================================
   AIR CONDITIONING SERVICE PAGE – NEXT‑LEVEL
   ========================================== */

/* ----- HERO (with background image) ----- */
.page-hero--ac {
  position: relative;
  min-height: 45vh;
  display: flex;
  align-items: center;
  background: url('/public/images/services/ac-hero.jpg') center/cover no-repeat;
  overflow: hidden;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(31, 58, 95, 0.88) 0%,
    rgba(31, 58, 95, 0.3) 100%
  );
  z-index: 1;
}
.page-hero--ac .hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  animation: fadeInUp 0.8s ease;
}
.page-hero--ac .hero-badge {
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  padding: 8px 20px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  display: inline-block;
  margin-bottom: 1.2rem;
}
.page-hero--ac h1 {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 6vw, 3.5rem);
  line-height: 1.2;
  max-width: 700px;
  margin-bottom: 1rem;
}
.page-hero--ac p {
  font-size: 1.2rem;
  max-width: 550px;
  opacity: 0.9;
}

/* ----- Intro two‑column (reuse .about-two-col) ----- */
.intro-text h2 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  color: #1A1A1A;
  margin-bottom: 1.2rem;
}
.intro-text h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: #D32F2F;
  border-radius: 2px;
  margin-top: 0.8rem;
}
.intro-text p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
}
.intro-features span {
  background: #F5F7F9;
  padding: 8px 18px;
  border-radius: 30px;
  font-weight: 600;
  color: #1F3A5F;
  margin-right: 10px;
}
.intro-features i {
  color: #D32F2F;
  margin-right: 6px;
}

/* ----- Split sections (installation, etc.) ----- */
.split-section {
  padding: clamp(4rem, 10vw, 6rem) 0;
  background: #F5F7F9;
}
.split-section .about-two-col {
  display: flex;
  align-items: center;
  gap: 4rem;
}
.split-section .split-image img {
  border-radius: 28px;
  box-shadow: 0 25px 40px rgba(31,58,95,0.15);
  object-fit: cover;
  width: 100%;
}
.split-section .split-text h2 {
  font-size: clamp(2rem, 4vw, 2.4rem);
  font-weight: 800;
  color: #1A1A1A;
  margin-bottom: 1rem;
}
.split-section .split-text h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: #D32F2F;
  margin-top: 0.8rem;
}
.split-section .split-text p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.split-section .icon-list {
  list-style: none;
  padding: 0;
}
.split-section .icon-list li {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #1A1A1A;
  font-weight: 500;
  transition: transform 0.2s;
}
.split-section .icon-list li:hover {
  transform: translateX(6px);
}
.split-section .icon-list i {
  color: #D32F2F;
  font-size: 1.2rem;
  width: 24px;
}

/* Map styling for area pages */
[id$="-map"] {
  height: 300px;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* Mobile responsive for split sections and maps */
@media screen and (max-width: 768px) {
  .split-section .about-two-col {
    flex-direction: column;
  }
  [id$="-map"] {
    height: 250px;
    margin-top: 1.5rem;
  }
}

/* ----- Content sections (repair, maintenance, upgrades, signs) ----- */
.content-section {
  padding: clamp(4rem, 10vw, 6rem) 0;
  background: #ffffff;
}
.bg-light {
  background: #F5F7F9;
}
.section-subtitle {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 2.5rem;
  color: #555;
  font-size: 1.1rem;
  line-height: 1.6;
}
.content-section h2 {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.6rem);
  text-align: center;
  color: #1A1A1A;
  margin-bottom: 0.5rem;
  position: relative;
}
.content-section h2::after {
  content: '';
  display: block;
  width: 70px;
  height: 4px;
  background: #D32F2F;
  margin: 1rem auto;
  border-radius: 2px;
}

/* ----- Diff/feature cards (AC repair and others) ----- */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.diff-card {
  background: #fff;
  border-radius: 24px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.04);
  border: 1px solid rgba(31,58,95,0.05);
  transition: all 0.35s ease;
}
.diff-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 36px rgba(31,58,95,0.1);
  border-color: rgba(211,47,47,0.3);
}
.diff-card i {
  font-size: 2.2rem;
  color: #1F3A5F;
  margin-bottom: 1rem;
  transition: color 0.3s;
}
.diff-card:hover i {
  color: #D32F2F;
}
.diff-card h3 {
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #1A1A1A;
}
.diff-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* ----- Benefits pills (maintenance, upgrades) ----- */
.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}
.benefit-item {
  background: #fff;
  padding: 1.2rem 2rem;
  border-radius: 60px;
  font-weight: 600;
  color: #1F3A5F;
  box-shadow: 0 2px 10px rgba(0,0,0,0.02);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(31,58,95,0.05);
}
.benefit-item i {
  color: #D32F2F;
  font-size: 1.1rem;
}
.benefit-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(31,58,95,0.08);
  border-color: #D32F2F;
  color: #D32F2F;
}

/* ----- Signs grid ----- */
.signs-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}
.sign-item {
  background: #fff;
  padding: 1.2rem 2rem;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.02);
  border: 1px solid rgba(31,58,95,0.05);
  font-weight: 500;
  color: #1F3A5F;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
}
.sign-item i {
  color: #D32F2F;
  font-size: 1.1rem;
}
.sign-item:hover {
  border-color: #D32F2F;
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(211,47,47,0.08);
}
.quick-answer {
  text-align: center;
  margin-top: 2rem;
  color: #555;
  font-size: 1.05rem;
}

/* ----- Why Choose (reused from previous pages, but scoped) ----- */
.why-choose-section {
  padding: clamp(4rem, 10vw, 6rem) 0;
  background: linear-gradient(135deg, #1F3A5F 0%, #102a44 100%);
  color: #fff;
}
.why-choose-section .section-header h2 {
  color: #fff;
}
.why-choose-section .section-header h2::after {
  background: #fff;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}
.why-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.1);
  transition: 0.3s;
}
.why-card:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-8px);
}
.why-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #D32F2F;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 1.8rem;
  color: #fff;
  box-shadow: 0 8px 18px rgba(0,0,0,0.2);
}
.why-card h3 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.why-card p {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
}

/* ========================================
   MOBILE OPTIMIZATION FOR 370px AND ABOVE
   ======================================== */

/* Ultra-small screens (370px - 480px) */
@media screen and (max-width: 370px) {
  
  /* ===== GENERAL SPACING ===== */
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  /* ===== HEADER & NAV ===== */
  .nav-container {
    padding: 0 12px;
    height: var(--header-height-mobile);
  }
  
  .logo img {
    height: 55px;
  }
  
  .site-name {
    font-size: 0.75rem;
  }
  
  .main-nav a {
    font-size: 0.9rem;
    padding: 0.8rem 1.2rem;
  }
  
  .mobile-toggle {
    width: 40px;
    height: 40px;
    padding: 8px 6px;
  }
  
  .hamburger-line {
    width: 20px;
    height: 2px;
  }
  
  /* ===== HERO SECTION ===== */
  .hero {
    min-height: 60vh;
    padding-top: var(--header-height-mobile);
    margin-top: calc(var(--header-height-mobile) * -1);
  }
  
  .hero-content {
    padding: 0 15px;
  }
  
  .hero-content h1 {
    font-size: clamp(1.6rem, 5vw, 2.5rem);
    line-height: 1.2;
  }
  
  .hero-content p {
    font-size: clamp(0.95rem, 2vw, 1rem);
    margin-bottom: 1.5rem;
  }
  
  .hero-badge {
    font-size: 0.75rem;
    padding: 6px 16px;
    margin-bottom: 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 0.8rem;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
    padding: 12px 24px;
    font-size: 0.95rem;
    border-radius: 40px;
  }
  
  /* ===== SECTIONS ===== */
  .section-header h2 {
    font-size: clamp(1.6rem, 4vw, 2rem);
  }
  
  .section-header p {
    font-size: clamp(0.95rem, 2vw, 1rem);
  }
  
  .intro-label,
  .intro-text::before {
    font-size: 0.75rem;
    padding: 5px 14px;
  }
  
  /* ===== TRUST CARDS ===== */
  .trust-section {
    padding: 3rem 0;
  }
  
  .trust-card {
    padding: 1.5rem 1rem;
    gap: 1rem;
    margin-bottom: 0.5rem;
  }
  
  .trust-icon {
    width: 56px;
    height: 56px;
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }
  
  .trust-card h3 {
    font-size: 1rem;
  }
  
  .trust-card p {
    font-size: 0.85rem;
    line-height: 1.5;
  }
  
  /* ===== SERVICE CARDS ===== */
  .services-section {
    padding: 3rem 0;
  }
  
  .services-grid {
    gap: 1.2rem;
  }
  
  .service-card-content {
    padding: 1rem;
  }
  
  .service-card-content h3 {
    font-size: 1rem;
    padding: 5px 12px;
  }
  
  .service-card-content p {
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 0.8rem;
  }
  
  .service-link {
    font-size: 0.85rem;
  }
  
  /* ===== INTRO SECTION ===== */
  .intro-section {
    padding: 2.5rem 0;
  }
  
  .intro-label {
    font-size: 0.75rem;
    letter-spacing: 0.5px;
  }
  
  /* ===== ABOUT SECTION ===== */
  .about-section {
    padding: 2.5rem 0;
  }
  
  .about-container {
    gap: 2rem;
  }
  
  .about-text h2 {
    font-size: clamp(1.6rem, 4vw, 2rem);
  }
  
  .about-text p {
    font-size: clamp(0.9rem, 2vw, 1rem);
    line-height: 1.6;
  }
  
  .about-img-frame {
    border-radius: 20px 20px 60px 20px;
  }
  
  .about-badge {
    bottom: -10px;
    left: 5px;
    padding: 10px 16px;
    font-size: 0.85rem;
  }
  
  .about-badge span {
    font-size: 1.2rem;
  }
  
  /* ===== WHY CHOOSE US ===== */
  .why-choose-section {
    padding: 3rem 0;
  }
  
  .why-card {
    padding: 1.5rem 1rem;
  }
  
  .why-icon {
    width: 56px;
    height: 56px;
    font-size: 1.3rem;
  }
  
  .why-card h3 {
    font-size: 1rem;
  }
  
  /* ===== PROCESS SECTION ===== */
  .process-section {
    padding: 3rem 0;
  }
  
  .process-card {
    padding: 1.5rem 1rem;
  }
  
  .process-number {
    font-size: 2rem;
    top: 10px;
    left: 12px;
  }
  
  .process-icon {
    width: 60px;
    height: 60px;
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }
  
  .process-card h3 {
    font-size: 1rem;
  }
  
  .process-card p {
    font-size: 0.85rem;
  }
  
  /* ===== TIPS SECTION ===== */
  .tips-section {
    padding: 3rem 0;
  }
  
  .tips-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .tip-item {
    padding: 1.2rem 1rem 1.2rem 2.5rem;
    gap: 1rem;
  }
  
  .tip-marker {
    font-size: 1.5rem;
    min-width: 36px;
  }
  
  .tip-body h3 {
    font-size: 1rem;
  }
  
  .tip-body p {
    font-size: 0.85rem;
  }
  
  /* ===== AREAS SECTION ===== */
  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .area-card {
    aspect-ratio: 1 / 0.85;
  }
  
  .area-card-content h3 {
    font-size: 1.1rem;
  }
  
  .area-card-content p {
    font-size: 0.8rem;
  }
  
  /* ===== REVIEWS SECTION ===== */
  .reviews-grid {
    gap: 1.2rem;
  }
  
  .review-card {
    padding: 1.5rem 1.2rem;
  }
  
  .review-quote {
    font-size: 3rem;
    top: 5px;
    left: 12px;
  }
  
  .review-text {
    font-size: 0.9rem;
    line-height: 1.6;
  }
  
  .review-stars {
    font-size: 1rem;
    letter-spacing: 1px;
  }
  
  .review-tag {
    font-size: 0.75rem;
    padding: 3px 10px;
  }
  
  .author-avatar {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }
  
  .author-info strong {
    font-size: 0.9rem;
  }
  
  .author-info span {
    font-size: 0.75rem;
  }
  
  /* ===== CTA SECTION ===== */
  .cta-section {
    padding: 3rem 0;
  }
  
  .cta-section h2 {
    font-size: clamp(1.6rem, 4vw, 2rem);
  }
  
  .cta-section p {
    font-size: clamp(0.95rem, 2vw, 1.05rem);
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 0.8rem;
  }
  
  .btn-white-solid,
  .btn-white-outline {
    width: 100%;
    padding: 12px 24px;
    font-size: 0.95rem;
  }
  
  /* ===== FOOTER ===== */
  .site-footer {
    padding: 2rem 0 0;
  }
  
  .footer-grid {
    gap: 1rem;
  }
  
  .footer-col h4 {
    font-size: clamp(0.9rem, 1.5vw, 1rem);
  }
  
  .footer-col li,
  .footer-col p {
    font-size: clamp(0.8rem, 1.2vw, 0.9rem);
  }
  
  .footer-logo {
    max-width: 140px;
  }
  
  .social-links {
    gap: 0.6rem;
  }
  
  .social-links a {
    width: 32px;
    height: 32px;
    font-size: 0.85rem;
  }
  
  .footer-bottom {
    font-size: 0.8rem;
    padding: 1rem 0;
  }
  
  /* ===== CHATBOT WIDGET ===== */
  #chatbot-widget {
    bottom: 20px;
    right: 15px;
  }
  
  .chatbot-icon {
    width: 52px;
    height: 52px;
    font-size: 0.9rem;
  }
  
  .chatbot-icon svg {
    width: 26px;
    height: 26px;
  }
  
  .chatbot-window {
    width: calc(100vw - 30px);
    max-height: calc(100vh - 90px);
    height: 450px;
    right: 15px;
    bottom: 75px;
    border-radius: 20px;
  }
  
  .chatbot-header {
    padding: 12px 16px;
  }
  
  .chatbot-brand span {
    font-size: 0.95rem;
  }
  
  #chatbot-close {
    width: 28px;
    height: 28px;
    font-size: 1rem;
  }
  
  .chatbot-messages {
    padding: 12px 10px;
    gap: 10px;
  }
  
  .bot-message,
  .user-message {
    max-width: 90%;
  }
  
  .bot-avatar {
    width: 30px;
    height: 30px;
    font-size: 0.7rem;
  }
  
  .msg-content {
    padding: 8px 12px;
    font-size: 0.85rem;
    line-height: 1.5;
  }
  
  .typing-dots span {
    width: 5px;
    height: 5px;
  }
  
  #chatbot-form {
    padding: 10px 12px;
    gap: 8px;
  }
  
  #chatbot-input {
    padding: 10px 14px;
    font-size: 0.85rem;
    border-radius: 20px;
  }
  
  #chatbot-form button {
    width: 42px;
    height: 42px;
  }
  
  /* ===== ABOUT PAGE ===== */
  .about-intro {
    padding: 2.5rem 0;
  }
  
  .about-two-col {
    gap: 2rem;
  }
  
  .intro-text::before {
    font-size: 0.7rem;
    padding: 5px 12px;
    margin-bottom: 1rem;
  }
  
  .intro-text h2 {
    font-size: clamp(1.4rem, 4vw, 1.8rem);
  }
  
  .intro-text p {
    font-size: 0.95rem;
  }
  
  .intro-features {
    gap: 0.8rem;
  }
  
  .intro-features span {
    font-size: 0.8rem;
    padding: 6px 12px;
    gap: 4px;
  }
  
  .intro-image::after {
    font-size: 0.8rem;
    padding: 10px 16px;
    bottom: -8px;
    left: 2px;
  }
  
  /* ===== OUR STORY SECTION ===== */
  .our-story-section {
    padding: 2.5rem 0;
    text-align: center;
  }
  
  .story-year {
    font-size: clamp(2.2rem, 6vw, 3.5rem);
  }
  
  .story-year::after {
    bottom: -6px;
    width: 30px;
  }
  
  .story-content h2 {
    font-size: clamp(1.4rem, 4vw, 1.8rem);
    margin-top: 1rem;
  }
  
  .story-divider {
    width: 40px;
    height: 3px;
  }
  
  .story-content p {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  .story-values {
    gap: 0.6rem;
  }
  
  .story-values span {
    font-size: 0.8rem;
    padding: 8px 14px;
    gap: 4px;
  }
  
  /* ===== MISSION SECTION ===== */
  .mission-section {
    padding: 2.5rem 0;
  }
  
  .section-icon {
    font-size: 2.2rem;
  }
  
  .mission-section h2 {
    font-size: clamp(1.4rem, 4vw, 1.8rem);
  }
  
  .mission-section p {
    font-size: clamp(0.9rem, 2vw, 1rem);
  }
  
  /* ===== DIFFERENT SECTION ===== */
  .different-section {
    padding: 2.5rem 0;
  }
  
  .diff-card {
    padding: 1.5rem 1rem;
  }
  
  .diff-card i {
    font-size: 2rem;
  }
  
  .diff-card h3 {
    font-size: 1rem;
  }
  
  .diff-card p {
    font-size: 0.85rem;
  }
  
  /* ===== COMFORT SECTION ===== */
  .comfort-text h2 {
    font-size: clamp(1.4rem, 4vw, 1.8rem);
  }
  
  .comfort-text h3 {
    font-size: 1.1rem;
  }
  
  .icon-list {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  
  .icon-list li {
    padding: 10px 14px 10px 2.2rem;
    font-size: 0.85rem;
    gap: 10px;
  }
  
  .icon-list i {
    font-size: 1.1rem;
  }
  
  .comfort-image::after {
    font-size: 0.8rem;
    padding: 10px 16px;
  }
  
  /* ===== FAQ SECTION ===== */
  .about-faq {
    padding: 2.5rem 0;
  }
  
  .faq-grid {
    gap: 1.2rem;
  }
  
  .faq-card {
    padding: 1.2rem 1rem;
  }
  
  .faq-card h3 {
    font-size: 1rem;
  }
  
  .faq-card p {
    font-size: 0.85rem;
  }
  
  /* ===== CONTACT PAGE ===== */
  .contact-info {
    padding: 2.5rem 0;
  }
  
  .grid-3 {
    gap: 1.2rem;
  }
  
  .contact-card {
    padding: 1.5rem 1.2rem;
  }
  
  .contact-card h3 {
    font-size: 1.1rem;
  }
  
  .contact-card h3::after {
    width: 30px;
  }
  
  .contact-card p strong {
    font-size: 1.3rem;
  }
  
  .contact-card p {
    font-size: 0.9rem;
  }
  
  /* ===== SERVICES REQUEST ===== */
  .services-request {
    padding: 2.5rem 0;
  }
  
  .services-request h2 {
    font-size: clamp(1.4rem, 4vw, 1.8rem);
  }
  
  .services-request p {
    font-size: 0.9rem;
  }
  
  .check-list {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .check-list li {
    padding: 10px 12px 10px 2.2rem;
    font-size: 0.9rem;
  }
  
  .check-list li::before {
    width: 24px;
    height: 24px;
    font-size: 0.8rem;
    left: 0.6rem;
  }
  
  /* ===== TRUST SECTION ===== */
  .trust-grid-contact {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  
  .trust-item {
    padding: 1.2rem 1.5rem;
    gap: 1rem;
  }
  
  .trust-icon-circle {
    width: 42px;
    height: 42px;
    font-size: 1.4rem;
  }
  
  .trust-item strong {
    font-size: 0.95rem;
  }
  
  .trust-item span {
    font-size: 0.85rem;
  }
  
  /* ===== PAGE HERO ===== */
  .page-hero,
  .page-hero--ac,
  .page-hero--heating,
  .page-hero--iaq,
  .page-hero--duct,
  .page-hero--maintenance,
  .page-hero--emergency,
  .financing-hero {
    min-height: 35vh;
    padding-top: var(--header-height-mobile);
    margin-top: calc(var(--header-height-mobile) * -1);
  }
  
  .page-hero h1,
  .page-hero--ac h1,
  .page-hero--heating h1,
  .page-hero--iaq h1,
  .page-hero--duct h1,
  .page-hero--maintenance h1,
  .page-hero--emergency h1,
  .financing-hero h1 {
    font-size: clamp(1.5rem, 5vw, 2.2rem);
    max-width: 100%;
  }
  
  /* ===== BLOG PAGE ===== */
  .blog-listing {
    padding: 2.5rem 0;
  }
  
  .blog-grid {
    gap: 1.2rem;
  }
  
  .blog-card-image img {
    aspect-ratio: 16/10;
  }
  
  .blog-card-body {
    padding: 1rem 1.2rem;
  }
  
  .blog-card-body h3 {
    font-size: 1rem;
  }
  
  .blog-card-body p {
    font-size: 0.85rem;
    line-height: 1.5;
  }
  
  /* ===== FINANCING PAGE ===== */
  .how-it-works {
    padding: 2.5rem 0;
  }
  
  .process-steps {
    gap: 1rem;
    flex-direction: column;
    align-items: center;
  }
  
  .process-steps .step {
    width: 100%;
    max-width: 260px;
    padding: 1.5rem 1.2rem;
  }
  
  .process-steps .step span {
    font-size: 2rem;
  }
  
  .what-finance {
    padding: 2.5rem 0;
  }
  
  .finance-card {
    padding: 1.5rem 1rem;
  }
  
  .finance-card i {
    font-size: 2rem;
  }
  
  .benefits {
    padding: 2.5rem 0;
  }
  
  .benefit-item {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .apply {
    padding: 2.5rem 0;
  }
  
  .apply .btn-primary {
    padding: 12px 30px;
    font-size: 0.95rem;
  }
  
  /* ===== SERVICE AREA FINANCING ===== */
  .service-areas-financing {
    padding: 2.5rem 0;
    text-align: left;
  }
  
  .service-areas-financing h2 {
    font-size: clamp(1.4rem, 4vw, 1.8rem);
    display: block;
  }
  
  /* Ensure all form elements are mobile-friendly */
  input[type="text"],
  input[type="email"],
  input[type="phone"],
  input[type="tel"],
  textarea,
  select {
    font-size: 16px !important;  /* Prevent zoom on iOS */
    padding: 12px 14px;
    border-radius: 8px;
    width: 100%;
  }
  
  textarea {
    min-height: 100px;
  }
  
  button[type="submit"] {
    width: 100%;
    padding: 14px 20px;
    font-size: 1rem;
  }
  
  /* Ensure proper tap targets (minimum 44px) */
  a, button {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Prevent horizontal scrolling */
  body, html {
    overflow-x: hidden;
    max-width: 100vw;
  }
  
  /* Readable font sizes for accessibility */
  body {
    font-size: clamp(14px, 2vw, 16px);
  }
  
  h1 {
    font-size: clamp(1.5rem, 5vw, 2.2rem);
  }
  
  h2 {
    font-size: clamp(1.3rem, 4vw, 1.8rem);
  }
  
  h3 {
    font-size: clamp(1.1rem, 3vw, 1.4rem);
  }
}
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
}

/* ----- Responsive adjustments ----- */
@media screen and (max-width: 992px) {
  .about-two-col {
    flex-direction: column;
    gap: 3rem;
  }
  .diff-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .diff-grid {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .benefits-grid {
    flex-direction: column;
    align-items: center;
  }
  .signs-grid {
    flex-direction: column;
    align-items: center;
  }
  .split-section .about-two-col {
    flex-direction: column !important;
  }
  .page-hero--ac {
    min-height: 55vh;
    background-position: top center;
  }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.page-hero--emergency {
  background: url('/public/images/services/emergency-hero.jpg') center/cover no-repeat;
}

.page-hero--heating {
  background: url('/public/images/services/heating-hero.jpg') center/cover no-repeat;
  position: relative;
  min-height: 45vh;
  display: flex;
  align-items: center;
}

.page-hero--maintenance {
  background: url('/public/images/services/maintenance-hero.jpg') center/cover no-repeat;
  position: relative;
  min-height: 45vh;
  display: flex;
  align-items: center;
}

.page-hero--services {
    background: url('/public/images/Air Conditioning Services/a.jpg') center/cover no-repeat;
}


/* ========== BLOG LISTING PAGE ========== */

/* Blog hero background (inline style is fine, but we can also use a class) */
.page-hero--blog {
    background: url('/public/images/Duct Cleaning & Repair/a.jpg') center/cover no-repeat;
    position: relative;
    min-height: 40vh;
    display: flex;
    align-items: center;
}
/* If you want to keep inline, no problem. The page-hero class already handles overlay etc. */

/* Blog listing section */
.blog-listing {
    padding: clamp(4rem, 10vw, 6rem) 0;
    background: #F5F7F9;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Blog card */
.blog-card {
    background: #FFFFFF;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.04);
    border: 1px solid rgba(31,58,95,0.05);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.3s;
    display: flex;
    flex-direction: column;
    animation: fadeInUp 0.6s cubic-bezier(0.23,1,0.32,1) both;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 36px rgba(31,58,95,0.1);
    border-color: rgba(211,47,47,0.25);
}

/* Blog image */
.blog-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-img {
    transform: scale(1.04);
}

/* Blog card body */
.blog-card-body {
    padding: 1.5rem 1.8rem 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-body h3 {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    margin: 0 0 0.5rem;
    line-height: 1.3;
}

.blog-card-body h3 a {
    color: #1A1A1A;
    text-decoration: none;
    transition: color 0.3s;
}

.blog-card-body h3 a:hover {
    color: #D32F2F;
}

.blog-meta {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 0.8rem;
}

.blog-card-body p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

/* Read More button */
.btn-outline {
    display: inline-block;
    align-self: flex-start;
    color: #1F3A5F;
    border: 2px solid #1F3A5F;
    background: transparent;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #1F3A5F;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(31,58,95,0.15);
}

/* No posts message */
.blog-listing .container > p {
    text-align: center;
    font-size: 1.2rem;
    color: #777;
    padding: 3rem 0;
}

/* Staggered animation delays (optional if you want each card to appear one by one) */
/* You can add inline style="animation-delay: 0.1s" etc. dynamically via PHP loop */

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media screen and (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media screen and (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .blog-card-body {
        padding: 1.2rem 1.5rem 1.5rem;
    }
}


/* ========== BLOG SINGLE PAGE ========== */

/* Hero (uses existing page-hero classes + new background) */
.page-hero--blog-single {
    background-size: cover;
    background-position: center;
    min-height: 50vh;
}

.page-hero--blog-not-found {
    background: url('/public/images/blog-default-hero.jpg') center/cover no-repeat;
    min-height: 50vh;
}

.blog-hero-meta {
    font-family: 'Inter', 'Poppins', sans-serif;
    font-size: 1rem;
    color: rgba(255,255,255,0.85);
    margin-top: 0.5rem;
}

/* Content wrapper */
.blog-single-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 20px 4rem;
    position: relative;
    z-index: 2;
}

/* White card */
.blog-single-card {
    background: #FFFFFF;
    border-radius: 28px;
    box-shadow: 0 20px 40px rgba(31,58,95,0.08);
    padding: clamp(2rem, 5vw, 3rem);
    margin-top: -80px;           /* Slightly overlap the hero for a modern look */
    position: relative;
    z-index: 3;
    border: 1px solid rgba(31,58,95,0.05);
}

/* Featured image inside card (if shown) */
.blog-featured-image {
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.blog-featured-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.blog-featured-image:hover img {
    transform: scale(1.02);
}

/* Blog content typography */
.blog-body {
    font-family: 'Inter', 'Poppins', sans-serif;
    color: #1A1A1A;
    line-height: 1.8;
    font-size: 1.05rem;
}

.blog-body h2 {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-weight: 700;
    color: #1A1A1A;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.blog-body h3 {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-weight: 600;
    color: #1F3A5F;
    margin-top: 1.5rem;
}

.blog-body p {
    margin-bottom: 1.5rem;
}

.blog-body a {
    color: #D32F2F;
    text-decoration: underline;
    font-weight: 500;
}

/* Footer area */
.blog-footer {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #F0F0F0;
    text-align: left;
}

/* Back button (reuse .btn-outline from main CSS) */
.btn-outline {
    display: inline-block;
    color: #1F3A5F;
    border: 2px solid #1F3A5F;
    background: transparent;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #1F3A5F;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(31,58,95,0.15);
}

/* White outline button (for hero) */
.btn-white-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.8);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-white-outline:hover {
    background: #fff;
    color: #1F3A5F;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .blog-single-card {
        margin-top: -40px;
        padding: 1.5rem 1.2rem;
    }
    .page-hero--blog-single {
        min-height: 40vh;
    }
}

/* ========== ADMIN DASHBOARD – PREMIUM ========== */
.admin-container {
    display: flex;
    min-height: 100vh;
    background: #F5F7F9;
}

/* Sidebar / header partial styles – assume they already exist */
.admin-dashboard {
    flex: 1;
    padding: 2.5rem;
}

.dashboard-header {
    margin-bottom: 2.5rem;
}

.dashboard-header h1 {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-weight: 800;
    font-size: 2.2rem;
    color: #1A1A1A;
    margin-bottom: 0.3rem;
}

.dashboard-header p {
    color: #555;
    font-size: 1rem;
}

/* Stats cards grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
    margin-bottom: 3rem;
}

.stat-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 1.8rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
    border: 1px solid rgba(31,58,95,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 28px rgba(31,58,95,0.08);
    border-color: rgba(211,47,47,0.25);
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: #1F3A5F;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #fff;
    transition: background 0.3s;
}

/* Different accent for each card */
.stat-card--blogs .stat-icon { background: #1F3A5F; }
.stat-card--contacts .stat-icon { background: #D32F2F; }
.stat-card--keywords .stat-icon { background: #1F3A5F; }

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    color: #1A1A1A;
    line-height: 1;
}

.stat-label {
    color: #777;
    font-size: 0.9rem;
    margin-top: 0.3rem;
}

/* Quick actions */
.quick-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.action-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 1.2rem 2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    color: #1F3A5F;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    border: 1px solid rgba(31,58,95,0.05);
    transition: all 0.3s ease;
}

.action-card:hover {
    background: #1F3A5F;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(31,58,95,0.15);
}

.action-card i {
    font-size: 1.2rem;
}

.action-card--logout {
    background: #fff;
    border-color: rgba(211,47,47,0.2);
    color: #D32F2F;
}

.action-card--logout:hover {
    background: #D32F2F;
    color: #fff;
}

/* Simple admin header (if not yet defined) */
.admin-header {
    width: 250px;
    background: #1A1A1A;
    color: #fff;
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
}

.admin-header .admin-logo {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #fff;
    text-decoration: none;
}

.admin-header nav a {
    color: rgba(255,255,255,0.7);
    display: block;
    padding: 0.8rem 0;
    text-decoration: none;
    transition: color 0.2s;
}

.admin-header nav a:hover {
    color: #fff;
}

/* Responsive */
@media screen and (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .admin-dashboard {
        padding: 1.5rem;
    }
}