/* 
  =========================================
  PENNSYLVANIA HEATING & COOLING - BRAND STYLESHEET
  =========================================
  Design: Brand Guide Integration (Red & Blue)
  Typography: Lexend
*/

@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@300;400;500;600;700&display=swap');

:root {
  /* Brand Colors from PDF */
  --brand-red: #EF2B19;
  --brand-blue: #1C3F95;
  --bg-white: #FFFFFF;
  --bg-light-gray: #F5F5F5;
  --text-black: #000000;
  
  /* Additional UI Colors */
  --text-muted: #555555;
  --border-light: #E0E0E0;
  --shadow-soft: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 15px 35px -5px rgba(28, 63, 149, 0.2);
  
  /* Fonts */
  --font-main: 'Lexend', sans-serif;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  
  /* Transitions */
  --transition-fast: 0.2s ease-in-out;
  --transition-normal: 0.3s ease-in-out;
}

/* Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-white);
  color: var(--text-black);
  font-family: var(--font-main);
  line-height: 1.6;
  font-weight: 400; /* Lexend Regular */
  overflow-x: hidden;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600; /* Lexend SemiBold */
  line-height: 1.2;
  color: var(--brand-blue);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

a {
  text-decoration: none;
  color: var(--brand-blue);
  transition: color var(--transition-fast);
}
a:hover {
  color: var(--brand-red);
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* Custom Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-light-gray); }
::-webkit-scrollbar-thumb { background: var(--brand-blue); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--brand-red); }

/* Layout Utilities */
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
  position: relative;
}
.section-gray {
  background-color: var(--bg-light-gray);
}

.text-center { text-align: center; }
.mb-2 { margin-bottom: 8px; }
.mb-4 { margin-bottom: 16px; }
.mb-8 { margin-bottom: 32px; }
.mb-12 { margin-bottom: 48px; }

/* Grids */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-weight: 600; /* Lexend SemiBold */
  text-decoration: none;
  transition: all var(--transition-fast);
  cursor: pointer;
  border: 2px solid transparent;
}

/* Service Card */
.service-card {
  align-items: center;
  gap: 40px;
  background: white;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  text-align: left !important;
}

/* FAQ Accordion */
.faq-accordion {
  background: white;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.03);
  margin-bottom: 20px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.05);
  text-align: left;
}
.faq-summary {
  font-size: 20px;
  font-weight: 700;
  font-family: 'Lexend', sans-serif;
  color: var(--brand-blue);
  cursor: pointer;
  padding: 24px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
}
.faq-summary::-webkit-details-marker {
  display: none;
}
.faq-summary::after {
  content: '+';
  font-size: 28px;
  color: var(--brand-red);
  font-weight: 400;
  transition: transform 0.3s ease;
  margin-left: 15px;
}
.faq-accordion[open] .faq-summary::after {
  transform: rotate(45deg);
}
.faq-content {
  padding: 0 24px 24px 24px;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.7;
}

.service-card .img-col {
  text-align: center;
  width: 100%;
}

.service-card .img-col img {
  margin: 0 auto;
  display: block;
}

.btn-primary {
  background-color: var(--brand-red);
  color: var(--bg-white);
  box-shadow: 0 4px 14px 0 rgba(239, 43, 25, 0.39);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(239, 43, 25, 0.4);
  color: var(--bg-white);
}

.btn-secondary {
  background-color: var(--brand-blue);
  color: var(--bg-white);
  box-shadow: 0 4px 14px 0 rgba(28, 63, 149, 0.39);
}
.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(28, 63, 149, 0.4);
  color: var(--bg-white);
}

.btn-outline {
  border: 2px solid var(--brand-blue);
  background-color: transparent;
  color: var(--brand-blue);
}
.btn-outline:hover {
  background-color: var(--brand-blue);
  color: var(--bg-white);
}

.btn-outline-blue {
  border: 2px solid var(--brand-blue);
  background-color: transparent;
  color: var(--brand-blue) !important;
}
.btn-outline-blue:hover {
  background-color: var(--brand-blue) !important;
  color: white !important;
}

.btn-outline-red {
  border: 2px solid var(--brand-red);
  background-color: transparent;
  color: var(--brand-red) !important;
}
.btn-outline-red:hover {
  background-color: var(--brand-red) !important;
  color: white !important;
}

/* Header & Nav */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--bg-white);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: padding var(--transition-normal);
  padding: 15px 0;
}

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

.logo img {
  height: 60px; /* Adjust based on uploaded logo */
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-links a {
  font-weight: 500; /* Lexend Medium */
  color: var(--text-black);
  position: relative;
  padding: 5px 0;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--brand-red);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.call-now-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: var(--brand-red);
  color: var(--bg-white);
  padding: 10px 20px;
  border-radius: var(--radius-md);
  font-weight: 600;
}
.call-now-btn:hover {
  background-color: #d12214;
  color: var(--bg-white);
}

.mobile-nav-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--brand-blue);
}

/* Hero Section */
.hero-section {
  padding: 160px 0 100px;
  background: linear-gradient(135deg, var(--bg-light-gray) 0%, #E8EEF5 100%);
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-title {
  font-size: 56px;
  font-weight: 700;
  color: var(--brand-blue);
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-title span {
  color: var(--brand-red);
}

.hero-description {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 25px;
}
.hero-ctas {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* Inner Pages Hero */
.inner-hero {
  padding: 80px 0;
  background-color: var(--brand-blue);
  color: var(--bg-white);
  text-align: center;
}
.inner-hero .hero-title {
  color: var(--bg-white);
}
.inner-hero .hero-title span {
  color: var(--brand-red);
}

/* Service Silo Cards */
.service-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--brand-blue);
}

.service-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--brand-red);
  transform: scaleX(0);
  transition: var(--transition-normal);
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  background: var(--bg-light-gray);
  border-radius: 50%;
  color: var(--brand-blue);
}

.service-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
}
.service-card p {
  color: var(--text-muted);
  margin-bottom: 25px;
}

/* Estimator Override */
.estimator-container {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}
.option-btn {
  background: var(--bg-light-gray);
  border: 1px solid var(--border-light);
  color: var(--text-black);
  transition: all 0.4s ease;
}
.option-btn.active {
  border-color: var(--brand-red);
  background: rgba(239, 43, 25, 0.05);
  box-shadow: inset 0 0 0 1px var(--brand-red);
}
.option-btn.active span {
  color: var(--brand-red);
}
.estimator-summary {
  background: var(--brand-blue);
  color: var(--bg-white);
}
.summary-header p, .spec-row {
  color: rgba(255,255,255,0.8);
}
.spec-row span:last-child {
  color: var(--bg-white);
}
.estimate-output .price-range {
  color: var(--bg-white);
}
.range-slider::-webkit-slider-thumb {
  background: var(--brand-red);
  box-shadow: 0 0 10px rgba(239, 43, 25, 0.5);
}

/* Service Areas Grid */
.city-pill {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  color: var(--brand-blue);
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.02);
  transition: all var(--transition-fast);
}
.city-pill:hover {
  background: var(--brand-blue);
  color: var(--bg-white);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(28, 63, 149, 0.2);
}

/* Footer */
.footer {
  background-color: var(--brand-blue);
  color: var(--bg-white);
  padding-top: 80px;
}
.footer-top {
  padding-bottom: 60px;
}
.footer-col h4 {
  color: var(--bg-white);
}
.footer-col a {
  color: rgba(255,255,255,0.8);
  transition: all var(--transition-fast);
}
.footer-col a:hover {
  color: var(--brand-red);
}
.social-icons a:hover {
  background-color: var(--brand-red) !important;
  transform: translateY(-2px);
}
.footer-bottom-bar a:hover {
  color: var(--brand-red) !important;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6);
}

/* Dropdown Menus */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--bg-white);
  min-width: 280px;
  box-shadow: 0 10px 30px rgba(28, 63, 149, 0.15);
  z-index: 2000;
  padding: 0;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--transition-fast);
  border-top: 3px solid var(--brand-red);
}

.dropdown:hover > .dropdown-menu {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.dropdown-menu a {
  color: var(--brand-blue) !important;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  font-weight: 500;
  transition: all var(--transition-fast);
  border-bottom: 1px solid var(--border-light);
}

.dropdown-menu a:last-child {
  border-bottom: none;
}

.dropdown-menu a:hover {
  background-color: rgba(28, 63, 149, 0.03);
  color: var(--brand-red) !important;
  padding-left: 25px; 
}

/* Nested Dropdowns (Sub-menus) */
.dropdown-submenu {
  position: relative;
}

.dropdown-menu-sub {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  background-color: var(--bg-white);
  min-width: 280px;
  box-shadow: 5px 10px 30px rgba(28, 63, 149, 0.15);
  border-radius: var(--radius-md);
  z-index: 2001;
  padding: 0;
  opacity: 0;
  transform: translateX(10px);
  transition: all var(--transition-fast);
  border-top: 3px solid var(--brand-blue);
}

.dropdown-submenu:hover > .dropdown-menu-sub {
  display: block;
  opacity: 1;
  transform: translateX(0);
}

/* Locations Grid */
.grid-locations {
  display: grid;
  grid-template-columns: repeat(4, max-content);
  justify-content: space-between;
  gap: 15px 0;
  text-align: left;
}
.grid-locations .loc-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-black);
  text-decoration: none;
  font-size: 16px;
  padding: 8px 0;
  font-weight: 500;
  transition: color 0.3s ease;
}
.grid-locations .loc-link:hover {
  color: var(--brand-blue);
}
.grid-locations .loc-link strong {
  font-weight: 700;
}

/* Benefit Cards */
.benefit-card {
  background: var(--brand-blue);
  color: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  text-align: center;
}
.benefit-card img {
  display: block;
  border-bottom: 4px solid var(--brand-red);
}
.benefit-content {
  padding: 30px 20px;
}
.benefit-content h3 {
  color: white;
  margin-bottom: 15px;
  font-size: 22px;
}
.benefit-content p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin: 0;
}

/* Brands Grid */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
  align-items: center;
  justify-items: center;
}

/* Testimonial Section */
.testimonials-section {
  color: var(--text-black);
}
.testimonial-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 30px;
  padding-bottom: 20px;
  scrollbar-width: none; /* Firefox */
  scroll-behavior: smooth;
}
.testimonial-slider::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}
.testimonial-card {
  flex: 0 0 calc(50% - 15px);
  scroll-snap-align: start;
  border-radius: 4px;
  overflow: hidden;
  text-align: left;
  display: flex;
  flex-direction: column;
}
.testimonial-header {
  background: var(--brand-blue);
  padding: 30px;
  border-bottom: 2px solid rgba(255,255,255,0.1);
}
.testimonial-info h4 {
  color: white;
  font-size: 20px;
  margin: 0 0 5px 0;
}
.testimonial-info .stars {
  color: var(--brand-yellow);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 5px;
}
.testimonial-info p {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  margin: 0;
}
.testimonial-body {
  background: #f5f5f0;
  padding: 30px;
  color: #333;
  flex: 1;
}
.testimonial-body p {
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  color: #444;
}
.testimonial-dots {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.testimonial-dots .dot {
  width: 10px;
  height: 10px;
  background: rgba(0,0,0,0.2);
  border-radius: 50%;
  display: inline-block;
  transition: background 0.3s ease;
}
.testimonial-dots .dot.active {
  background: var(--brand-blue);
}

/* Why Choose Us Section */
.why-choose-images {
  position: relative;
  min-height: 600px;
}
.why-choose-images .main-img {
  width: 80%;
  height: 500px;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 4px;
}
.why-choose-images .stats-box {
  background: var(--brand-blue);
  color: white;
  padding: 40px;
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50%;
  z-index: 2;
  border-radius: 4px;
}
.why-choose-images .stats-number {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 5px;
}
.why-choose-images .overlap-img {
  width: 55%;
  height: 350px;
  object-fit: cover;
  position: absolute;
  bottom: 0;
  right: 0;
  border: 15px solid white;
  z-index: 3;
  border-radius: 4px;
}

/* Tablet Resizing for Why Choose Us */
@media (max-width: 1024px) {
  .why-choose-images {
    min-height: 400px;
  }
  .why-choose-images .main-img { height: 350px; }
  .why-choose-images .overlap-img { height: 250px; border-width: 8px; }
  .why-choose-images .stats-box { padding: 20px; }
  .why-choose-images .stats-number { font-size: 28px; }
}

/* Mobile Media Queries */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 42px !important; }
  .grid-2 { grid-template-columns: 1fr !important; }
  .grid-2 > .img-col { order: -1; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-nav-toggle { display: block; }
  .grid-2 { grid-template-columns: 1fr !important; }
  .grid-2 > .img-col { order: -1; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .service-card { padding: 24px 16px !important; gap: 24px !important; }
  
  .grid-locations { 
    grid-template-columns: repeat(2, max-content) !important; 
    justify-content: space-between !important;
  }
  
  .brands-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  
  .testimonial-card { flex: 0 0 100%; }
  
  /* Why Choose Us Mobile Stack */
  .why-choose-images {
    min-height: 350px;
    margin-top: 20px;
    position: relative;
  }
  .why-choose-images .main-img {
    position: relative;
    width: 100%;
    height: 300px;
    border-radius: 8px;
  }
  .why-choose-images .stats-box {
    position: absolute;
    width: calc(100% - 40px);
    left: 20px;
    bottom: -20px;
    border-radius: 8px;
    padding: 20px !important;
    text-align: center !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 5;
  }
  .why-choose-images .stats-box div {
    text-align: center !important;
  }
  .why-choose-images .stats-number {
    font-size: 28px !important;
  }
  .why-choose-images .overlap-img {
    display: none;
  }
  
  /* Enforce 16px left/right padding globally on mobile */
  .container { padding-left: 16px !important; padding-right: 16px !important; }
  .section, section { padding-left: 16px !important; padding-right: 16px !important; }
  .inner-hero { padding: 160px 16px 40px !important; }
  
  /* Override inline paddings */
  [style*="padding: 80px"] { padding: 40px 16px !important; }
  [style*="padding: 30px"] { padding: 24px 16px !important; }
  [style*="text-align: right"] { text-align: left !important; }
  [style*="text-align: left"] { text-align: left !important; }

  /* Enforce global left alignment on mobile */
  h1, h2, h3, h4, h5, p, span, div, section, a, strong, li { text-align: left !important; }
  
  /* Keep images centered */
  .img-col { text-align: center !important; }
  img { margin: 0 auto; }
  
  /* Fix flex lists to left */
  ul li, .service-card ul li { justify-content: flex-start !important; }
  
  /* Buttons */
  .btn, .btn-primary, .btn-outline { 
    text-align: center !important; 
    display: block !important; 
    width: 100% !important;
    box-sizing: border-box !important;
    margin: 0 0 15px 0 !important; 
  }
  header .call-now-btn { display: none !important; }
  .hero-ctas { flex-direction: column !important; justify-content: flex-start !important; }
  
  h1, .hero-title { font-size: 32px !important; line-height: 1.2 !important; }
  h1 span, .hero-title span { font-size: inherit !important; }
  h2, .section-title { font-size: 26px !important; line-height: 1.3 !important; }
  h3, .faq-summary { font-size: 20px !important; line-height: 1.4 !important; }
  h4 { font-size: 18px !important; line-height: 1.4 !important; }
  h5 { font-size: 16px !important; line-height: 1.5 !important; }
  p, span, div, li, a { font-size: 16px !important; }
  
  /* Footer full single column on mobile */
  .footer-top.grid-4 {
    grid-template-columns: 1fr !important;
    gap: 40px;
  }

  /* Mobile Dropdown Fixes */
  .dropdown, .dropdown-submenu {
    width: 100%;
  }
  .dropdown-menu, .dropdown-menu-sub {
    position: static;
    min-width: 100%;
    box-shadow: none;
    transform: none !important;
    border: none !important;
    padding-left: 15px;
    background-color: rgba(28, 63, 149, 0.03);
    display: none !important;
  }
  .dropdown-menu a {
    color: var(--text-black) !important;
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }
  .dropdown.mobile-open > .dropdown-menu,
  .dropdown-submenu.mobile-open > .dropdown-menu-sub {
    display: block !important;
    opacity: 1;
  }
}

@media (max-width: 480px) {
  body, html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
  }
  h1 { font-size: 28px !important; }
  h2 { font-size: 24px !important; }
  h3 { font-size: 20px !important; }
  .hero-title { font-size: 28px !important; line-height: 1.3 !important; }
  .section-title { font-size: 24px !important; }
  .section { 
    padding: 40px 0; 
  }
  .btn { 
    padding: 12px 20px; 
    font-size: 14px; 
  }
  .nav-container {
    padding: 0 16px;
  }
}

/* =====================
   NEW HOMEPAGE STYLES 
   ===================== */

/* Service Card Ribbon */
.service-card-wrapper {
  position: relative;
  overflow: hidden;
  background: white;
  border: 1px solid #eae5d9;
  text-align: center;
  transition: transform 0.3s ease;
}
.service-card-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}
.service-card-img-container {
  position: relative;
  overflow: hidden;
}
.service-card-img-container img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}
.ribbon {
  position: absolute;
  top: 15px;
  right: -35px;
  background: #ffb300;
  color: #1a2a47;
  padding: 5px 40px;
  font-weight: 800;
  font-size: 13px;
  transform: rotate(45deg);
  z-index: 10;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  letter-spacing: 1px;
}
.service-card-content {
  padding: 30px 20px;
}
.service-card-content h3 {
  color: var(--brand-blue);
  margin-bottom: 20px;
  font-size: 22px;
}
.service-card-content p {
  color: #666;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 30px;
}
.btn-outline {
  display: inline-block;
  padding: 12px 30px;
  border: 1px solid #eae5d9;
  color: var(--brand-blue);
  background: #fdfaf6;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 200px;
}
.btn-outline:hover {
  background: var(--brand-blue);
  color: white;
  border-color: var(--brand-blue);
}

/* Checkmark Lists */
.check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}
.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--text-black);
  font-weight: 500;
}

/* Split Background Section */
.split-bg-section {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(to bottom, var(--brand-blue) 50%, white 50%);
  color: white;
  text-align: center;
}
@media (max-width: 768px) {
  .split-bg-section {
    background: linear-gradient(to bottom, var(--brand-blue) 75%, white 25%);
  }
}

/* Slider container */
.slider-container {
  position: relative;
  max-width: 1200px;
  margin: 40px auto 0 auto;
  overflow: hidden;
  padding: 0 40px;
}
.slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}
.slide {
  flex: 0 0 33.333%;
  padding: 0 10px;
  position: relative;
}
.slide img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.slide-caption {
  position: absolute;
  bottom: 20px;
  left: 10px;
  right: 10px;
  text-align: center;
  color: white;
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  font-size: 20px;
}
.slider-btn:hover {
  background: var(--brand-red);
}
.slider-btn.prev { left: 0; }
.slider-btn.next { right: 0; }

@media (max-width: 768px) {
  .slide { flex: 0 0 100%; } /* 1 slide on mobile */
  .slider-container { padding: 0 30px; }
}

/* Call CTA Section */
.cta-call-section {
  background: var(--brand-blue);
  color: white;
  padding: 80px 0;
}
.cta-call-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
@media (max-width: 768px) {
  .cta-call-grid { grid-template-columns: 1fr; }
}
.calling-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}
.calling-card img {
  width: 100%;
  display: block;
  border-bottom: 5px solid var(--brand-red);
}
.calling-card-banner {
  background: var(--brand-red);
  color: white;
  padding: 20px;
  text-align: center;
  font-size: 28px;
  font-weight: 800;
}
.about-section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
@media (max-width: 768px) {
  .about-section-grid { grid-template-columns: 1fr; }
}

/* Why Choose Us Section */
.home-why-section {
  position: relative;
  background: white;
  padding-bottom: 80px;
}
.home-why-top {
  background-color: var(--brand-blue);
  background-image: linear-gradient(rgba(28, 63, 149, 0.85), rgba(28, 63, 149, 0.85)), url('/cta_agent.png');
  background-size: cover;
  background-position: center;
  padding: 100px 0 160px;
  position: relative;
}
.home-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: -100px;
  position: relative;
  z-index: 10;
  margin-bottom: 60px;
}
.home-why-card {
  background: white;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  border-radius: 4px;
}
.home-why-icon {
  width: 70px;
  height: 70px;
  background: #fdfaf6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}
.home-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.home-stat-box {
  border: 2px dotted #eae5d9;
  padding: 30px 20px;
  text-align: center;
  background: white;
}
.home-stat-number {
  color: var(--brand-blue);
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 10px;
}
.home-stat-label {
  color: #666;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 600;
}
@media (max-width: 992px) {
  .home-why-grid { grid-template-columns: 1fr; margin-top: -50px; }
  .home-stats-grid { grid-template-columns: 1fr 1fr; }
  .home-why-top { padding: 80px 0 100px; }
}
@media (max-width: 576px) {
  .home-stats-grid { grid-template-columns: 1fr; }
}
