/* Summit Security - Professional Light Theme */
:root {
  /* Color Palette - Light Professional Theme */
  --primary-red: #b83232;
  --secondary-red: #9e2a2a;
  --light-red: #d32f2f;
  --accent-red: #c62828;
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --medium-gray: #6c757d;
  --dark-gray: #2a2c2e;
  --text-dark: #212529;
  --text-light: #495057;
  --border-light: #dee2e6;
  --success-green: #28a745;
  --warning-orange: #fd7e14;
  
  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  
  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  
  /* Shadows */
  --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--white);
  min-height: 100vh;
  position: relative;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

/* Touch-friendly improvements */
button, .btn, a {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

/* Improve touch targets */
@media (max-width: 768px) {
  button, .btn, a, input, select, textarea {
    min-height: 44px;
    min-width: 44px;
  }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: var(--spacing-sm);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }

p {
  margin-bottom: var(--spacing-sm);
  color: var(--text-light);
}

a {
  color: var(--primary-red);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--secondary-red);
  text-decoration: underline;
}

/* Layout Components */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-sm);
}

/* Responsive images */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Prevent horizontal scrolling */
html, body {
  overflow-x: hidden;
}

.section {
  padding: 5rem 0;
  position: relative;
}

.section:nth-child(even) {
  background: linear-gradient(180deg, var(--light-gray) 0%, rgba(248, 249, 250, 0.5) 100%);
  position: relative;
}

.section:nth-child(even)::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="0.8" fill="rgba(183,28,28,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
  opacity: 0.4;
  pointer-events: none;
}

.grid {
  display: grid;
  gap: var(--spacing-lg);
}

.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }

/* Header and Navigation */
.header {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 249, 250, 0.95) 100%);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--border-light);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.header.scrolled {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.9) 100%);
  backdrop-filter: blur(15px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  transition: all 0.3s ease;
}

.logo:hover {
  opacity: 0.9;
}

.logo img {
  height: 55px !important;
  opacity: 0.98;
  transition: opacity 0.3s ease;
}

.header.scrolled .logo img {
  opacity: 0.95;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  text-decoration: none !important;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 1.05rem;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-red);
  text-decoration: none !important;
}

/* Contact Us nav pill */
.nav-cta-btn {
  display: inline-block;
  background: transparent;
  color: var(--primary-red) !important;
  padding: 0.4rem 1.1rem;
  border-radius: 50px;
  border: 3px solid var(--primary-red);
  font-weight: 500;
  font-size: 1.05rem;
  text-decoration: none !important;
  transition: all 0.3s ease;
}

.nav-cta-btn:hover,
.nav-cta-btn.active {
  background: var(--primary-red);
  color: var(--white) !important;
  text-decoration: none !important;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1.25px;
  background: var(--primary-red);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-dark);
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  opacity: 0.8;
}

/* Hero Section */
.hero {
  background:
    linear-gradient(135deg, rgba(248, 249, 250, 0.9) 0%, rgba(255, 255, 255, 0.95) 50%, rgba(248, 249, 250, 0.9) 100%),
    radial-gradient(circle at 20% 80%, rgba(183, 28, 28, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(183, 28, 28, 0.02) 0%, transparent 50%);
  color: var(--text-dark);
  padding-top: 80px;
  padding-bottom: 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-light);
  min-height: 350px;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(108,117,125,0.3)" stroke-width="0.8"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.6;
  pointer-events: none;
}

/* Home page specific hero background */
.hero.home-hero {
  background:
    linear-gradient(to bottom, rgba(10, 10, 10, 0.65) 0%, rgba(10, 10, 10, 0.55) 100%),
    url('homepage.jpg');
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  /* Use full viewport height so the section fills behind the fixed header.
     padding-top matches the fixed header height (1rem top + 48px logo + 1rem bottom = 80px)
     so that flexbox centers the content within the visible area below the header.
     svh (small viewport height) guarantees fit on iOS Safari with URL bar showing. */
  min-height: 100vh;
  min-height: 100svh;
  padding-top: 80px;
  padding-bottom: 0;
  display: flex;
  align-items: center;
}

.hero.home-hero::before {
  background: none;
}

/* Page-specific hero background images */
.hero.hero-about,
.hero.hero-residential,
.hero.hero-commercial,
.hero.hero-monitoring,
.hero.hero-gallery {
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  min-height: 80vh;
  color: var(--white);
  border-bottom: none;
}

/* Suppress the SVG grid overlay on photo heroes */
.hero.hero-about::before,
.hero.hero-residential::before,
.hero.hero-commercial::before,
.hero.hero-monitoring::before,
.hero.hero-gallery::before {
  background: none;
}

.hero.hero-about {
  background:
    linear-gradient(to bottom, rgba(10, 10, 10, 0.60) 0%, rgba(10, 10, 10, 0.50) 100%),
    url('summitabout.jpg');
  background-size: cover;
  background-position: center 25%;
  background-attachment: fixed;
}

.hero.hero-residential {
  background:
    linear-gradient(to bottom, rgba(10, 10, 10, 0.60) 0%, rgba(10, 10, 10, 0.50) 100%),
    url('summit2cam.jpg');
  background-size: cover;
  background-position: center 69%;
  background-attachment: fixed;
}

.hero.hero-commercial {
  background:
    linear-gradient(to bottom, rgba(10, 10, 10, 0.60) 0%, rgba(10, 10, 10, 0.50) 100%),
    url('summitcommercial.jpg');
  background-size: cover;
  background-position: center 37%;
  background-attachment: fixed;
}

.hero.hero-monitoring {
  background:
    linear-gradient(to bottom, rgba(10, 10, 10, 0.60) 0%, rgba(10, 10, 10, 0.50) 100%),
    url('summitsurveillance.jpg');
  background-size: cover;
  background-position: center 56%;
  background-attachment: fixed;
}

.hero.hero-gallery {
  background:
    linear-gradient(to bottom, rgba(10, 10, 10, 0.60) 0%, rgba(10, 10, 10, 0.50) 100%),
    url('summitourwork.jpg');
  background-size: cover;
  background-position: center 63%;
  background-attachment: fixed;
}

/* Make h1 and p white on photo hero pages */
.hero.hero-about h1,
.hero.hero-residential h1,
.hero.hero-commercial h1,
.hero.hero-monitoring h1 {
  color: #ffffff !important;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

.hero.hero-about p,
.hero.hero-residential p,
.hero.hero-commercial p,
.hero.hero-monitoring p {
  color: rgba(255, 255, 255, 0.9) !important;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

/* Centered hero content block */
.hero.home-hero .hero-content {
  width: 100%;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.hero.home-hero .hero-content h1 {
  color: #ffffff !important;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
  font-weight: 700;
  font-size: 3.2rem;
  margin-bottom: 1.25rem;
  line-height: 1.15;
}

.hero.home-hero .hero-content p {
  color: rgba(255, 255, 255, 0.9) !important;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
  font-weight: 400;
  font-size: 1.15rem;
  line-height: 1.65;
  margin-bottom: 0;
}

/* Contact row — centered, stacked, below the tagline */
.home-hero-contact {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.hero-phone-row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.home-hero-contact .btn {
  width: 210px;
  padding: 0.875rem 1rem;
  text-align: center;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
}

.home-hero-contact .btn-primary::before {
  display: none;
}

.btn-number {
  display: block;
  white-space: nowrap;
}

.btn-sub {
  display: block;
  font-size: 0.72rem;
  font-weight: 400;
  opacity: 0.85;
  margin-top: 3px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.hero-phone-link {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s ease;
  white-space: nowrap;
}

.hero-phone-link:hover {
  opacity: 0.8;
}

.hero-phone-secondary {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9) !important;
}

.hero-email-link {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  text-decoration: none;
  transition: opacity 0.2s ease;
  white-space: nowrap;
}

.hero-email-link:hover {
  opacity: 0.75;
}

.hero-contact-divider {
  color: rgba(255, 255, 255, 0.3);
  font-size: 1.1rem;
  user-select: none;
}

/* Page Hero Styles */
.page-hero .hero-content h1 {
  color: white !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5), 0 4px 12px rgba(0, 0, 0, 0.3);
  font-weight: 700;
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.page-hero .hero-content p {
  color: rgba(255, 255, 255, 0.95) !important;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4), 0 2px 6px rgba(0, 0, 0, 0.2);
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.6;
}

.hero-content {
  position: relative;
  z-index: 1;
  animation: fadeInUp 0.8s ease-out;
}

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

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: white;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5), 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
  line-height: 1.6;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4), 0 2px 6px rgba(0, 0, 0, 0.2);
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--secondary-red) 100%);
  color: var(--white);
  font-weight: 600;
  border: 1px solid var(--primary-red);
  box-shadow: 0 2px 8px rgba(183, 28, 28, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--secondary-red) 0%, var(--primary-red) 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(183, 28, 28, 0.4);
  color: var(--white);
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-secondary {
  background: transparent;
  color: var(--primary-red);
  border: 2px solid var(--primary-red);
}

.btn-secondary:hover {
  background: var(--primary-red);
  color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--primary-red);
  border: 1px solid var(--border-light);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
  background: var(--light-gray);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Cards */
.card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Push any .btn inside a card to the bottom, centred */
.card .btn {
  margin-top: auto;
  align-self: center;
}

/* Centre the list block within the card while keeping bullets/text left-aligned internally */
.card ul {
  display: inline-block;
  text-align: left;
  padding-left: 1.2em;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(183, 28, 28, 0.05), transparent);
  transition: left 0.6s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(183, 28, 28, 0.1);
  border-color: rgba(183, 28, 28, 0.2);
}

.card:hover::before {
  left: 100%;
}

.card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--secondary-red) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-md);
  font-size: 1.5rem;
  color: var(--white);
  box-shadow: 0 4px 12px rgba(183, 28, 28, 0.3);
  font-family: Arial, sans-serif;
  font-weight: normal;
  transition: all 0.3s ease;
  position: relative;
}



.card:hover .card-icon {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(183, 28, 28, 0.4);
}

/* Equalise card title heights in 3-col grids so descriptions always start at the same line.
   h3 is 2rem × 1.2 line-height = 2.4rem per line; reserve space for 2 lines = 4.8rem. */
.grid-3 .card h3 {
  min-height: 4.8rem;
}

/* Footer */
.footer {
  background: var(--dark-gray);
  color: var(--white);
  padding: 3rem 0 1rem;
  position: relative;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }
}

.footer-section h4 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer-section ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: var(--primary-red);
}

.footer-section p {
  color: var(--white);
}

.footer-logo {
  margin-bottom: 1rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
}

.footer-bottom a {
  color: var(--primary-red);
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}



/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border: 1px solid var(--border-light);
    flex-direction: column;
    padding: 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    z-index: 1000;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-link {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-light);
  }

  .nav-link:last-child {
    border-bottom: none;
  }

  .nav-link::after {
    bottom: 0.5rem;
    height: 2px;
  }

  .logo {
    display: flex;
    justify-content: flex-start;
  }

  .logo img {
    height: 45px !important; /* 5% smaller than 48px (was 43px, now increased by ~5%) */
  }

  .hero h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
  }

  .hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .home-hero-contact {
    gap: 0.5rem;
  }

  .hero-phone-row {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  .hero-contact-divider {
    display: none;
  }

  .hero-phone-link {
    font-size: 1rem;
  }

  .hero.home-hero .hero-content h1 {
    font-size: 2.2rem !important;
  }

  .btn {
    width: auto;
    max-width: 240px;
    padding: 0.875rem 1.25rem;
    font-size: 0.95rem;
  }

  h1 { font-size: 2rem; line-height: 1.2; }
  h2 { font-size: 1.75rem; line-height: 1.3; }
  h3 { font-size: 1.5rem; line-height: 1.3; }
  h4 { font-size: 1.25rem; }

  .section {
    padding: 3rem 0;
  }

  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .areas-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .card {
    padding: 1.5rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: left;
  }

  .footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .footer-logo img {
    display: block;
    margin: 0 auto;
  }

  .footer-section:first-child {
    text-align: center;
  }

  .footer-section ul {
    display: block;
  }

  .footer-section ul li {
    margin-bottom: 0.5rem;
  }
}

/* Form Styles */
input, select, textarea {
  font-family: inherit;
  background: var(--white);
  border: 1px solid var(--border-light);
  color: var(--text-dark);
  border-radius: var(--radius-md);
  padding: var(--spacing-sm);
  transition: all 0.3s ease;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--primary-red) !important;
  box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.2);
  background: var(--white);
}

input::placeholder, textarea::placeholder {
  color: var(--medium-gray);
}

.form-message {
  border-radius: var(--radius-sm);
  animation: slideIn 0.3s ease;
}

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

/* Loading States */
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

/* Enhanced Mobile Responsiveness for Small Screens */
@media (max-width: 480px) {
  .container {
    padding: 0 0.75rem;
  }

  .hero {
    padding: 4rem 0 3rem;
  }

  .hero h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .section {
    padding: 2.5rem 0;
  }

  .card {
    padding: 1.25rem;
  }

  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .btn {
    padding: 0.875rem 1.25rem;
    font-size: 0.95rem;
    max-width: 100%;
  }

  .nav-menu {
    background: var(--white);
    padding: 0.75rem;
  }

  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.25rem; }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .features-grid {
    gap: 1rem;
  }

  .services-grid {
    gap: 1rem;
  }

  .footer-section ul {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  /* Fix specific grid layouts on mobile */
  /* Residential page - Additional Protection Features (4 items in single column) */
  .grid[style*="repeat(2, 1fr)"] {
    grid-template-columns: 1fr !important;
  }

  /* Commercial page - Products & Services (6 items in single column) */
  .grid[style*="repeat(3, 1fr)"] {
    grid-template-columns: 1fr !important;
  }

  /* Commercial page - Industries We Serve (8 items in 2 columns) */
  .grid[style*="repeat(4, 1fr)"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* Home page - Why Choose Summit section mobile layout */
  .grid.grid-2[style*="align-items: center"] .card {
    margin-bottom: 2rem;
  }

  .glow-text {
    color: var(--primary-red);
  }

  /* Improve scrolling performance on mobile */
  .hero, .section {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

  /* background-attachment: fixed breaks with transforms on mobile — revert to scroll */
  .hero.home-hero,
  .hero.hero-about,
  .hero.hero-residential,
  .hero.hero-commercial,
  .hero.hero-monitoring,
  .hero.hero-gallery,
  .page-hero {
    background-attachment: scroll;
  }

  /* Better mobile form styling */
  input, select, textarea {
    font-size: 16px; /* Prevents zoom on iOS */
    border-radius: 8px;
  }

  /* Mobile-specific button improvements */
  .btn:active {
    transform: scale(0.98);
  }

  /* Improve mobile navigation */
  .nav-menu.active {
    animation: slideDown 0.3s ease-out;
  }

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

/* Print Styles */
@media print {
  .header, .footer, .btn, .mobile-menu-toggle {
    display: none !important;
  }

  .hero {
    background: none !important;
    color: black !important;
  }

  .card {
    box-shadow: none !important;
    border: 1px solid #ddd !important;
  }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  :root {
    --primary-red: #8b0000;
    --secondary-red: #660000;
    --medium-gray: #333333;
  }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Focus Visible Support */
.btn:focus-visible,
.nav-link:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--primary-red);
  outline-offset: 2px;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mb-0 { margin-bottom: 0; }
.mb-sm { margin-bottom: var(--spacing-sm); }
.mb-md { margin-bottom: var(--spacing-md); }
.mb-lg { margin-bottom: var(--spacing-lg); }
.mt-lg { margin-top: var(--spacing-lg); }
.pt-lg { padding-top: var(--spacing-lg); }
.pb-lg { padding-bottom: var(--spacing-lg); }

/* Screen Reader Only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Professional Visual Effects */
.glow-text {
  color: var(--primary-red);
  font-weight: 600;
}

.professional-border {
  border: 1px solid var(--primary-red);
  box-shadow: 0 2px 8px rgba(196, 30, 58, 0.2);
}

/* Contact Page Styles */
.page-hero {
  background:
    linear-gradient(to bottom, rgba(10, 10, 10, 0.60) 0%, rgba(10, 10, 10, 0.50) 100%),
    url('summitcontact.jpg');
  background-size: cover;
  background-position: center 45%;
  background-attachment: fixed;
  color: var(--white);
  text-align: center;
  padding-top: 80px;
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.page-hero .hero-content {
  text-align: center;
  color: var(--white);
  max-width: 600px;
  margin: 0 auto;
}

.page-hero .hero-title {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.contact-section {
  padding: 5rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 {
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.contact-info > p {
  margin-bottom: 3rem;
  font-size: 1.1rem;
  line-height: 1.7;
}

.contact-methods {
  margin-bottom: 3rem;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-left: 0;
}

.contact-icon {
  font-size: 1.5rem;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0;
  filter: grayscale(1) brightness(0) saturate(100%) invert(15%) sepia(100%) saturate(7500%) hue-rotate(0deg) brightness(100%) contrast(100%);
}

.contact-details {
  flex: 1;
  min-width: 0;
}

.contact-details h3 {
  margin-bottom: 0.5rem;
  color: var(--text-dark);
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.2;
}

.contact-details p {
  margin-bottom: 0.25rem;
  font-weight: 600;
  line-height: 1.3;
}

.contact-details a {
  color: var(--primary-red);
  text-decoration: none;
}

.contact-details a:hover {
  text-decoration: underline;
}

.contact-note {
  font-size: 0.9rem;
  color: var(--text-light);
}

.contact-cta {
  background: var(--light-gray);
  padding: 2rem;
  border-radius: 15px;
}

.contact-cta h3 {
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.contact-benefits {
  list-style: none;
}

.contact-benefits li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-light);
}

.contact-benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-red);
  font-weight: bold;
}

/* Desktop contact CTA styling */
.contact-cta.desktop-only {
  background: var(--white);
  padding: 3rem;
  border-radius: 15px;
  box-shadow: var(--shadow);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--secondary-red) 100%);
  color: var(--white);
  text-align: center;
  padding: 5rem 0;
}

.cta-content h2 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: 2.5rem;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-section .btn-primary {
  background: var(--white);
  color: var(--primary-red);
}

.cta-section .btn-primary:hover {
  background: var(--light-gray);
}

.cta-section .btn-secondary {
  border-color: var(--white);
  color: var(--white);
}

.cta-section .btn-secondary:hover {
  background: var(--white);
  color: var(--primary-red);
}

/* Contact Form */
.contact-form-container {
  background: var(--white);
  border-radius: 15px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

/* Hide mobile-only sections on desktop */
.mobile-only {
  display: none;
}

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

.section-header h2 {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Service Areas Section */
.service-areas {
  background: var(--light-gray);
  padding: 5rem 0;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.area-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.area-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.area-card h3 {
  color: var(--primary-red);
  margin-bottom: 1rem;
}

/* Service Areas Contact */
.service-areas-contact {
  background: var(--light-gray);
  padding: 5rem 0;
}

.areas-map {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.area-item {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.3s ease;
}

.area-item:hover {
  transform: translateY(-3px);
}

.area-item h3 {
  color: var(--primary-red);
  margin-bottom: 1rem;
}

.area-item p {
  color: var(--text-light);
  line-height: 1.6;
}

/* Emergency Contact */
.emergency-contact {
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--secondary-red) 100%);
  color: var(--white);
  padding: 3rem 0;
}

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

.emergency-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.emergency-content h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.emergency-content p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.emergency-contact .btn-primary {
  background: var(--white);
  color: var(--primary-red);
}

.emergency-contact .btn-primary:hover {
  background: var(--light-gray);
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.form-header {
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--secondary-red) 100%);
  color: var(--white);
  padding: 2rem;
  text-align: center;
}

.form-header h2 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.form-header p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.contact-form {
  padding: 2rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem;
  border: 2px solid var(--border-light);
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-red);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.btn-arrow {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.form-submit:hover .btn-arrow {
  transform: translateX(4px);
}

.form-note {
  font-size: 0.85rem;
  color: var(--text-light);
  text-align: center;
  margin: 0;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.95rem;
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin: 0;
}

.btn-submit {
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
  margin-top: 1rem;
}

.form-footer {
  text-align: center;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
}

.form-footer p {
  font-size: 0.8rem;
  color: var(--medium-gray);
}

/* Process Section */
.process-section {
  background: var(--light-gray);
  padding: 5rem 0;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.process-step {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease;
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--secondary-red) 100%);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 1.5rem auto;
}

.step-content h3 {
  color: var(--primary-red);
  margin-bottom: 1rem;
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* Hide desktop-only elements on mobile */
  .desktop-only {
    display: none;
  }

  /* Hide service areas section on mobile contact page */
  .service-areas-contact {
    display: none;
  }

  /* Show mobile-only elements */
  .mobile-only {
    display: block !important;
  }

  /* Show mobile-only contact CTA section */
  .contact-cta.mobile-only {
    display: block;
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
  }

  /* Fix contact method alignment on mobile */
  .contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-left: 0;
  }

  .contact-icon {
    font-size: 1.5rem;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0;
    filter: grayscale(1) brightness(0) saturate(100%) invert(15%) sepia(100%) saturate(7500%) hue-rotate(0deg) brightness(100%) contrast(100%);
  }

  .contact-details {
    flex: 1;
    min-width: 0;
  }

  .contact-details h3 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.2;
  }

  .contact-details p {
    margin-bottom: 0.25rem;
    font-weight: 600;
    line-height: 1.3;
  }

  .contact-note {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.3;
  }

  .areas-map {
    grid-template-columns: 1fr;
  }

  .form-submit {
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.75rem;
  }

  .checkbox-label input[type="checkbox"] {
    width: 18px !important;
    height: 18px !important;
    min-width: 18px;
    min-height: 18px;
    margin: 0;
    flex-shrink: 0;
  }

  .checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.5;
    width: 100%;
  }

  .checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    width: 100%;
    margin-bottom: 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .page-hero .hero-title {
    font-size: 2rem;
  }
}

/* Default browser scrollbar */

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--secondary-red) 100%);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  box-shadow: none;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  z-index: 1000;
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  transform: translateY(-3px);
  box-shadow: none;
  background: linear-gradient(135deg, var(--secondary-red) 0%, var(--primary-red) 100%);
}

/* Summit Stats Container */
.summit-stats-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.summit-stat-item {
  background: var(--white);
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.summit-stat-item:hover {
  border-color: var(--primary-red);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.summit-stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-red);
  font-family: var(--font-heading);
  margin-bottom: 0.5rem;
}

.summit-stat-label {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 500;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .summit-stats-container {
    display: block;
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin-top: 2rem;
  }

  .summit-stat-item {
    background: none;
    padding: 1rem 0;
    border-radius: 0;
    box-shadow: none;
    border: none;
    margin-bottom: 1rem;
  }

  .summit-stat-item:last-child {
    margin-bottom: 0;
  }

  .summit-stat-item:hover {
    border-color: transparent;
    transform: none;
    box-shadow: none;
  }

  .summit-stat-number {
    font-size: 2rem;
  }

  .summit-stat-label {
    font-size: 0.9rem;
  }
}

/* Why Choose Us Section */
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: var(--spacing-lg);
}

.why-choose-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.why-choose-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-red), var(--secondary-blue));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.why-choose-card:hover::before {
  transform: scaleX(1);
}

.why-choose-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-red);
}

.why-choose-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.why-choose-card h4 {
  color: var(--primary-red);
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.why-choose-card p {
  color: var(--text-light);
  line-height: 1.6;
}

/* Coverage Area Section */
.coverage-area {
  background: var(--light-gray);
  padding: 4rem 0;
}

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

.section-header h2 {
  margin-bottom: 1rem;
  font-size: 2.5rem;
}

.section-header p {
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.coverage-item {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 10px;
  text-align: center;
  font-weight: 600;
  color: var(--text-dark);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
  cursor: pointer;
}

.coverage-item:hover,
.coverage-item.active {
  transform: translateY(-3px);
  background: var(--primary-red);
  color: var(--white);
  text-decoration: none;
}

/* Mobile Responsive for New Sections */
@media (max-width: 768px) {
  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .why-choose-card {
    padding: 1.5rem;
  }

  .why-choose-icon {
    font-size: 2.5rem;
  }

  .coverage-area {
    padding: 3rem 0;
  }

  .section-header {
    margin-bottom: 3rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .coverage-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .coverage-item {
    padding: 1.5rem;
  }

  .desktop-only {
    display: none;
  }
}

/* Info Section Styling */
.info-section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.info-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-text-block {
  margin-bottom: 1.5rem;
}

.info-text-block h3 {
  color: var(--primary-red);
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.info-text-block p {
  color: var(--text-light);
  line-height: 1.7;
}

.info-highlight {
  position: sticky;
  top: 2rem;
}

.protection-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--light-gray);
  transition: all 0.3s ease;
}

.protection-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-red);
}

.protection-header {
  text-align: center;
  margin-bottom: 2rem;
}

.protection-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.protection-header h3 {
  color: var(--primary-red);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.protection-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem;
  background: var(--light-gray);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(220, 38, 127, 0.1);
  transform: translateX(5px);
}

.feature-icon {
  font-size: 1.25rem;
  width: 2rem;
  text-align: center;
}



.contact-info strong {
  font-size: 1.5rem;
  color: var(--primary-red);
}

.highlight-box {
  background: var(--light-gray);
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1.5rem;
  border-left: 4px solid var(--primary-red);
}

/* Statistics Styling */
.stats-container {
  margin: 2rem 0;
}

.stat-item {
  margin-bottom: 1.5rem;
}

.stat-bar {
  background: var(--light-gray);
  height: 8px;
  border-radius: 4px;
  margin-bottom: 0.5rem;
  overflow: hidden;
}

.stat-fill {
  background: linear-gradient(90deg, var(--primary-red), var(--secondary-blue));
  height: 100%;
  border-radius: 4px;
  transition: width 0.8s ease;
}

.stat-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stat-label {
  color: var(--text-dark);
  font-weight: 500;
}

.stat-value {
  color: var(--primary-red);
  font-weight: 700;
  font-size: 1.1rem;
}

.source-text {
  font-size: 0.8rem;
  color: var(--medium-gray);
  font-style: italic;
  margin-top: 1rem;
  opacity: 0.8;
}

/* Benefits List */
.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.5rem 0;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: var(--light-gray);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  background: rgba(220, 38, 127, 0.1);
  transform: translateX(5px);
}

.benefit-icon {
  font-size: 1.5rem;
  width: 2.5rem;
  text-align: center;
  flex-shrink: 0;
}

/* Mobile Responsive for Info Sections */
@media (max-width: 768px) {
  .info-section-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .info-highlight {
    position: static;
    display: none; /* Hide info-highlight sections on mobile */
  }

  .info-text-block {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-red);
  }

  .protection-card {
    padding: 2rem;
  }

  .protection-icon {
    font-size: 2.5rem;
  }

  .feature-item,
  .benefit-item {
    padding: 0.75rem;
  }

  .benefit-icon {
    font-size: 1.25rem;
    width: 2rem;
  }
}

/* Center button in protection card */
.protection-card {
  text-align: center;
}

.protection-card .btn {
  display: inline-block;
  margin: 1.5rem auto 0 auto;
  text-align: center;
  padding: 0.75rem 2rem;
  width: auto;
}

/* Industries We Serve Mobile Fixes */
@media (max-width: 768px) {
  /* Make industries grid 2 columns on mobile */
  .grid[style*="repeat(4, 1fr)"] {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem !important;
  }

  /* Ensure all industry cards have consistent height and centered content */
  .grid[style*="repeat(4, 1fr)"] .card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 180px;
    padding: 1.5rem 1rem;
    text-align: center;
  }

  /* Center and standardize card icons */
  .grid[style*="repeat(4, 1fr)"] .card .card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
    flex-shrink: 0;
  }

  /* Ensure titles are aligned */
  .grid[style*="repeat(4, 1fr)"] .card h4 {
    margin: 0 0 0.75rem 0;
    font-size: 1.1rem;
    line-height: 1.3;
    min-height: 2.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  /* Standardize description text */
  .grid[style*="repeat(4, 1fr)"] .card p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
    flex-grow: 1;
    display: flex;
    align-items: flex-start;
  }
}

/* Selection Styling - Default browser behavior */
