/* ============================================
   Top Emergency Plumber NYC - Custom Styles
   Color Scheme: Blue (Trust) + Red (Urgency) + Dark Gray
   ============================================ */

:root {
  --primary-blue: #0d47a1;
  --primary-blue-dark: #08306b;
  --primary-red: #d32f2f;
  --primary-red-dark: #b71c1c;
  --accent-orange: #ff6f00;
  --accent-orange-dark: #e65100;
  --dark-gray: #212529;
  --medium-gray: #495057;
  --light-gray: #f8f9fa;
  --border-gray: #dee2e6;
  --white: #ffffff;
  --shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 5px 30px rgba(0, 0, 0, 0.15);
  --transition: all 0.3s ease;
}

/* General */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--dark-gray);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  transition: var(--transition);
}

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

section {
  padding: 80px 0;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--primary-blue-dark);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--medium-gray);
  max-width: 700px;
  margin: 0 auto 3rem;
}

/* ============================================
   Top Bar
   ============================================ */
.top-bar {
  background: var(--primary-blue-dark);
  color: var(--white);
  padding: 8px 0;
  font-size: 0.85rem;
}

.top-bar a {
  color: var(--white);
}

.top-bar a:hover {
  color: #90caf9;
}

.top-bar .badge-open {
  background: var(--primary-red);
  padding: 2px 10px;
  border-radius: 3px;
  font-weight: 600;
  font-size: 0.8rem;
  animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* ============================================
   Navbar
   ============================================ */
.navbar {
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 0.5rem 0;
  transition: var(--transition);
  z-index: 1050;
}

.navbar.scrolled {
  padding: 0.3rem 0;
  box-shadow: var(--shadow-lg);
}

.navbar-brand {
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--primary-blue) !important;
  display: flex;
  align-items: center;
  gap: 8px;
}

.navbar-brand .brand-icon {
  width: 40px;
  height: 40px;
}

.navbar-brand span {
  color: var(--primary-red);
}

.nav-link {
  color: var(--dark-gray) !important;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.5rem 0.8rem !important;
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-blue) !important;
}

.btn-call-nav {
  background: var(--primary-red);
  color: var(--white) !important;
  font-weight: 700;
  padding: 10px 20px !important;
  border-radius: 50px;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  border: none;
  white-space: nowrap;
}

.btn-call-nav:hover {
  background: var(--primary-red-dark);
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(211, 47, 47, 0.4);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
  background: linear-gradient(135deg, rgba(13, 71, 161, 0.92) 0%, rgba(8, 48, 107, 0.95) 100%),
              url('../images/hero-bg.jpg') center/cover no-repeat;
  min-height: 600px;
  display: flex;
  align-items: center;
  color: var(--white);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, var(--white), transparent);
}

.hero h1 {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.hero h1 .text-warning {
  color: #ffd54f !important;
}

.hero .lead {
  font-size: 1.25rem;
  opacity: 0.95;
  margin-bottom: 2rem;
}

.hero-phone {
  font-size: 2.5rem;
  font-weight: 900;
  color: #ffd54f;
  display: inline-block;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero-phone:hover {
  color: #fff;
  transform: scale(1.05);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-red);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  animation: pulse-hero 2s infinite;
}

@keyframes pulse-hero {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

.btn-hero-primary {
  background: var(--primary-red);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  border: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-hero-primary:hover {
  background: var(--primary-red-dark);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(211, 47, 47, 0.4);
}

.btn-hero-secondary {
  background: transparent;
  color: var(--white);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  border: 2px solid var(--white);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-hero-secondary:hover {
  background: var(--white);
  color: var(--primary-blue);
  transform: translateY(-3px);
}

.hero-stats {
  display: flex;
  gap: 30px;
  margin-top: 2rem;
}

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

.hero-stat .number {
  font-size: 2.2rem;
  font-weight: 900;
  color: #ffd54f;
  display: block;
}

.hero-stat .label {
  font-size: 0.85rem;
  opacity: 0.9;
}

/* Inner page hero */
.page-hero {
  background: linear-gradient(135deg, rgba(13, 71, 161, 0.93) 0%, rgba(8, 48, 107, 0.96) 100%),
              url('../images/hero-bg.jpg') center/cover no-repeat;
  padding: 140px 0 60px;
  color: var(--white);
  text-align: center;
}

.page-hero h1 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
}

.page-hero .breadcrumb {
  justify-content: center;
  margin-bottom: 0;
}

.page-hero .breadcrumb-item a {
  color: rgba(255,255,255,0.8);
}

.page-hero .breadcrumb-item.active {
  color: #ffd54f;
}

.page-hero .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255,255,255,0.5);
}

/* ============================================
   Trust Bar
   ============================================ */
.trust-bar {
  background: var(--white);
  padding: 30px 0;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 10;
}

.trust-item {
  text-align: center;
  padding: 15px 10px;
}

.trust-item i,
.trust-item svg {
  font-size: 2rem;
  color: var(--primary-blue);
  margin-bottom: 8px;
}

.trust-item .trust-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 8px;
}

.trust-item h6 {
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 2px;
  color: var(--dark-gray);
}

.trust-item p {
  font-size: 0.8rem;
  color: var(--medium-gray);
  margin: 0;
}

/* ============================================
   Why Choose Us
   ============================================ */
.why-choose-us {
  background: var(--light-gray);
}

.why-card {
  background: var(--white);
  border-radius: 12px;
  padding: 30px 25px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
  border: 1px solid transparent;
}

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

.why-card .icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-blue), #1565c0);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
}

.why-card .icon-circle svg {
  width: 32px;
  height: 32px;
  fill: var(--white);
}

.why-card h5 {
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: var(--primary-blue-dark);
}

.why-card p {
  color: var(--medium-gray);
  font-size: 0.95rem;
  margin: 0;
}

/* ============================================
   Services Section
   ============================================ */
.service-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
  border: 1px solid var(--border-gray);
}

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

.service-card .card-img-top {
  height: 200px;
  object-fit: cover;
  transition: var(--transition);
}

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

.service-card .card-img-wrapper {
  overflow: hidden;
  height: 200px;
}

.service-card .card-body {
  padding: 1.5rem;
}

.service-card h5 {
  font-weight: 700;
  color: var(--primary-blue-dark);
  margin-bottom: 0.5rem;
}

.service-card p {
  color: var(--medium-gray);
  font-size: 0.95rem;
}

.service-card .btn-service {
  color: var(--primary-blue);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0;
  border: none;
  background: none;
  transition: var(--transition);
}

.service-card .btn-service:hover {
  color: var(--primary-red);
  gap: 10px;
}

/* Service Detail Page */
.service-detail-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-blue), #1565c0);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-detail-icon svg {
  width: 40px;
  height: 40px;
  fill: var(--white);
}

.service-sidebar {
  background: var(--light-gray);
  border-radius: 12px;
  padding: 2rem;
}

.service-sidebar .sidebar-title {
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--primary-blue-dark);
}

.service-sidebar .list-group-item {
  border: none;
  padding: 10px 15px;
  font-weight: 500;
  color: var(--dark-gray);
  background: transparent;
  border-radius: 8px;
  transition: var(--transition);
}

.service-sidebar .list-group-item:hover,
.service-sidebar .list-group-item.active {
  background: var(--primary-blue);
  color: var(--white);
}

/* ============================================
   Testimonials
   ============================================ */
.testimonials {
  background: var(--light-gray);
}

.testimonial-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--shadow);
  height: 100%;
  position: relative;
  border-left: 4px solid var(--primary-blue);
}

.testimonial-card .quote-icon {
  font-size: 2.5rem;
  color: var(--primary-blue);
  opacity: 0.2;
  position: absolute;
  top: 15px;
  right: 20px;
}

.testimonial-card .stars {
  color: #ffc107;
  margin-bottom: 0.8rem;
}

.testimonial-card p {
  color: var(--medium-gray);
  font-style: italic;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.7;
}

.testimonial-card .author {
  font-weight: 700;
  color: var(--dark-gray);
  margin-bottom: 0;
}

.testimonial-card .author-title {
  font-size: 0.85rem;
  color: var(--medium-gray);
}

/* ============================================
   Projects / Gallery
   ============================================ */
.project-card {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 280px;
}

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

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.project-card:hover img {
  transform: scale(1.08);
}

.project-card .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(8, 48, 107, 0.9), transparent);
  color: var(--white);
  padding: 2rem 1.5rem 1.5rem;
  transform: translateY(20px);
  opacity: 0;
  transition: var(--transition);
}

.project-card:hover .overlay {
  transform: translateY(0);
  opacity: 1;
}

.project-card .overlay h5 {
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.project-card .overlay p {
  font-size: 0.85rem;
  margin: 0;
  opacity: 0.9;
}

/* ============================================
   Emergency CTA Banner
   ============================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-dark) 100%);
  color: var(--white);
  padding: 60px 0;
  text-align: center;
}

.cta-banner h2 {
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.cta-banner p {
  font-size: 1.15rem;
  opacity: 0.95;
  margin-bottom: 2rem;
}

.cta-banner .btn-cta {
  background: var(--white);
  color: var(--primary-red);
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
}

.cta-banner .btn-cta:hover {
  background: #ffd54f;
  color: var(--primary-red-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.cta-banner .cta-phone {
  font-size: 2rem;
  font-weight: 900;
  display: block;
  margin-top: 1rem;
}

.cta-banner .cta-phone a {
  color: #ffd54f;
}

.cta-banner .cta-phone a:hover {
  color: var(--white);
}

/* Blue CTA variant */
.cta-banner-blue {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
}

.cta-banner-blue .btn-cta:hover {
  background: #ffd54f;
  color: var(--primary-blue-dark);
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--dark-gray);
  color: #ced4da;
  padding: 60px 0 0;
}

.footer h5 {
  color: var(--white);
  font-weight: 700;
  margin-bottom: 1.2rem;
  font-size: 1.1rem;
}

.footer a {
  color: #adb5bd;
  transition: var(--transition);
}

.footer a:hover {
  color: #ffd54f;
}

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

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

.footer ul li a {
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer .contact-info p {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer .contact-info svg {
  flex-shrink: 0;
  margin-top: 3px;
}

.footer .social-links {
  display: flex;
  gap: 12px;
  margin-top: 1rem;
}

.footer .social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer .social-links a:hover {
  background: var(--primary-blue);
  color: var(--white);
  transform: translateY(-3px);
}

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

/* ============================================
   Floating Call Button (Mobile)
   ============================================ */
.floating-call {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  display: none;
}

.floating-call a {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary-red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(211, 47, 47, 0.5);
  animation: pulse-float 2s infinite;
  font-size: 1.5rem;
}

.floating-call a:hover {
  background: var(--primary-red-dark);
  color: var(--white);
}

@keyframes pulse-float {
  0%, 100% { box-shadow: 0 4px 20px rgba(211, 47, 47, 0.5); }
  50% { box-shadow: 0 4px 30px rgba(211, 47, 47, 0.8); }
}

@media (max-width: 991px) {
  .floating-call {
    display: block;
  }
}

/* ============================================
   Contact Form
   ============================================ */
.contact-form {
  background: var(--white);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}

.contact-form .form-control,
.contact-form .form-select {
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid var(--border-gray);
  font-size: 0.95rem;
  transition: var(--transition);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 0.2rem rgba(13, 71, 161, 0.15);
}

.contact-form .btn-submit {
  background: var(--primary-red);
  color: var(--white);
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.05rem;
  border: none;
  width: 100%;
  transition: var(--transition);
}

.contact-form .btn-submit:hover {
  background: var(--primary-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(211, 47, 47, 0.4);
}

/* ============================================
   FAQ Section
   ============================================ */
.faq-section .accordion-item {
  border: 1px solid var(--border-gray);
  border-radius: 10px !important;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-section .accordion-button {
  font-weight: 600;
  color: var(--dark-gray);
  padding: 1.2rem 1.5rem;
  font-size: 1rem;
}

.faq-section .accordion-button:not(.collapsed) {
  background: var(--primary-blue);
  color: var(--white);
}

.faq-section .accordion-button:focus {
  box-shadow: none;
}

.faq-section .accordion-body {
  padding: 1.2rem 1.5rem;
  color: var(--medium-gray);
  line-height: 1.8;
}

/* ============================================
   Process Section
   ============================================ */
.process-step {
  text-align: center;
  padding: 2rem 1.5rem;
  position: relative;
}

.process-step .step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-blue), #1565c0);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
  margin: 0 auto 1.2rem;
}

.process-step h5 {
  font-weight: 700;
  color: var(--primary-blue-dark);
  margin-bottom: 0.8rem;
}

.process-step p {
  color: var(--medium-gray);
  font-size: 0.95rem;
}

.process-step::after {
  content: '';
  position: absolute;
  top: 50px;
  right: -20px;
  width: 40px;
  height: 2px;
  background: var(--primary-blue);
  display: none;
}

@media (min-width: 768px) {
  .process-step::after {
    display: block;
  }
  .process-step:last-child::after {
    display: none;
  }
}

/* ============================================
   Blog Cards
   ============================================ */
.blog-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
}

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

.blog-card .card-img-wrapper {
  height: 200px;
  overflow: hidden;
}

.blog-card .card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.blog-card .card-body {
  padding: 1.5rem;
}

.blog-card .card-meta {
  font-size: 0.8rem;
  color: var(--medium-gray);
  margin-bottom: 0.5rem;
}

.blog-card h5 {
  font-weight: 700;
  color: var(--primary-blue-dark);
}

.blog-card .read-more {
  color: var(--primary-blue);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.blog-card .read-more:hover {
  color: var(--primary-red);
  gap: 10px;
}

/* ============================================
   Locations
   ============================================ */
.location-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
  border-top: 4px solid var(--primary-blue);
}

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

.location-card h4 {
  font-weight: 700;
  color: var(--primary-blue-dark);
  margin-bottom: 1rem;
}

.location-card p {
  color: var(--medium-gray);
  font-size: 0.95rem;
}

/* ============================================
   Partners / Logos
   ============================================ */
.partners {
  background: var(--light-gray);
  padding: 40px 0;
}

.partner-logo {
  height: 50px;
  opacity: 0.5;
  transition: var(--transition);
  filter: grayscale(100%);
}

.partner-logo:hover {
  opacity: 1;
  filter: grayscale(0);
}

/* ============================================
   About Page
   ============================================ */
.about-stats .stat-card {
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.about-stats .stat-card .number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary-blue);
}

.about-stats .stat-card .label {
  color: var(--medium-gray);
  font-weight: 600;
}

/* ============================================
   Maintenance Program
   ============================================ */
.maintenance-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--primary-blue);
  text-align: center;
}

.maintenance-card h4 {
  color: var(--primary-blue-dark);
  font-weight: 700;
}

.maintenance-card .price {
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary-red);
}

.maintenance-card ul {
  text-align: left;
  list-style: none;
  padding: 0;
}

.maintenance-card ul li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border-gray);
  display: flex;
  align-items: center;
  gap: 8px;
}

.maintenance-card ul li svg {
  color: #4caf50;
  flex-shrink: 0;
}

/* ============================================
   Responsive Overrides
   ============================================ */
@media (max-width: 1199px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  .hero-phone {
    font-size: 2rem;
  }
}

@media (max-width: 991px) {
  section {
    padding: 60px 0;
  }
  .hero {
    padding: 100px 0 60px;
    min-height: auto;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .hero-phone {
    font-size: 1.8rem;
  }
  .hero-stats {
    gap: 20px;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .top-bar .d-flex {
    flex-direction: column;
    text-align: center;
    gap: 5px;
  }
}

@media (max-width: 767px) {
  .hero h1 {
    font-size: 1.7rem;
  }
  .hero-phone {
    font-size: 1.5rem;
  }
  .hero-stats {
    flex-wrap: wrap;
    gap: 15px;
  }
  .hero-stat .number {
    font-size: 1.6rem;
  }
  .section-title {
    font-size: 1.5rem;
  }
  .cta-banner h2 {
    font-size: 1.6rem;
  }
  .page-hero h1 {
    font-size: 1.8rem;
  }
  .contact-form {
    padding: 1.5rem;
  }
}

/* ============================================
   Utility Classes
   ============================================ */
.bg-gradient-blue {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
}

.text-blue {
  color: var(--primary-blue) !important;
}

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

.btn-red {
  background: var(--primary-red);
  color: var(--white);
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  transition: var(--transition);
}

.btn-red:hover {
  background: var(--primary-red-dark);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-blue {
  background: var(--primary-blue);
  color: var(--white);
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  transition: var(--transition);
}

.btn-blue:hover {
  background: var(--primary-blue-dark);
  color: var(--white);
  transform: translateY(-2px);
}

/* Check list styles */
.check-list {
  list-style: none;
  padding: 0;
}

.check-list li {
  padding: 8px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--medium-gray);
}

.check-list li svg {
  color: #4caf50;
  flex-shrink: 0;
  margin-top: 3px;
}

/* Scroll to top */
.scroll-top {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--primary-blue);
  color: var(--white);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9998;
  cursor: pointer;
  border: none;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.scroll-top:hover {
  background: var(--primary-blue-dark);
  transform: translateY(-3px);
}

.scroll-top.show {
  display: flex;
}

/* Loading placeholder for images */
.img-placeholder {
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  font-weight: 600;
  font-size: 0.9rem;
}
