/* =========================================
   Express Locksmith & Car Keys - Main Styles
   ========================================= */

/* ---- Google Fonts & Variables ---- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Poppins:wght@400;500;600;700;800&display=swap');

:root {
  --red: #c8102e;
  --red-dark: #a00d24;
  --red-light: #e8192e;
  --black: #111111;
  --dark: #1a1a1a;
  --gray: #555555;
  --light-gray: #f7f7f7;
  --white: #ffffff;
  --border: #e0e0e0;
  --shadow: 0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
  --radius: 8px;
  --radius-lg: 16px;
  --transition: all 0.3s ease;
  --font-main: 'Inter', sans-serif;
  --font-heading: 'Poppins', sans-serif;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-main);
  color: var(--black);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; }
p { margin-bottom: 1rem; color: var(--gray); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ---- Utility ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 30px; border-radius: 50px;
  font-weight: 700; font-size: 1rem; cursor: pointer;
  border: none; transition: var(--transition); text-transform: uppercase;
  letter-spacing: 0.5px;
}
.btn-red { background: var(--red); color: var(--white); }
.btn-red:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(200,16,46,0.4); }
.btn-white { background: var(--white); color: var(--red); }
.btn-white:hover { background: var(--light-gray); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline:hover { background: var(--white); color: var(--red); }
.section { padding: 80px 0; }
.section-red { background: var(--red); }
.section-gray { background: var(--light-gray); }
.section-dark { background: var(--dark); color: var(--white); }
.section-title {
  font-size: 2rem; font-weight: 800; margin-bottom: 1rem;
  color: var(--black); font-family: var(--font-heading);
}
.section-title span { color: var(--red); }
.section-title-white { color: var(--white); }
.section-subtitle { font-size: 1.1rem; color: var(--gray); margin-bottom: 2.5rem; max-width: 650px; }
.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.text-red { color: var(--red); }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mt-2 { margin-top: 2rem; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.gap-1 { gap: 1rem; }
.gap-2 { gap: 2rem; }
.divider { width: 60px; height: 4px; background: var(--red); margin-bottom: 1.5rem; border-radius: 2px; }
.divider-center { margin: 0 auto 1.5rem; }
.badge {
  display: inline-block; background: var(--red); color: var(--white);
  padding: 4px 14px; border-radius: 50px; font-size: 0.8rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.8rem;
}

/* ---- Top Bar ---- */
.top-bar {
  background: var(--dark);
  padding: 9px 0;
  font-size: 0.88rem;
  color: #ccc;
}
.top-bar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.top-bar a { color: #ccc; display: flex; align-items: center; gap: 6px; }
.top-bar a:hover { color: var(--red); }
.top-bar-left, .top-bar-right { display: flex; align-items: center; gap: 20px; }
.top-bar i { color: var(--red); font-size: 0.9rem; }

/* ---- Header ---- */
.site-header {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  position: sticky; top: 0; z-index: 1000;
}
.header-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 20px;
}
.logo img { height: 60px; width: auto; object-fit: contain; }

/* ---- Navigation ---- */
.main-nav ul { display: flex; align-items: center; gap: 6px; }
.main-nav li { position: relative; }
.main-nav a {
  display: block; padding: 8px 14px;
  font-weight: 600; font-size: 0.93rem;
  color: var(--dark); border-radius: var(--radius);
  transition: var(--transition);
}
.main-nav a:hover, .main-nav a.active { color: var(--red); }
.main-nav .dropdown { position: relative; }
.main-nav .dropdown-menu {
  display: none; position: absolute; top: 100%; left: 0;
  background: var(--white); min-width: 230px;
  box-shadow: var(--shadow-lg); border-radius: var(--radius);
  border-top: 3px solid var(--red); z-index: 100; padding: 8px 0;
}
.main-nav .dropdown:hover .dropdown-menu { display: block; }
.main-nav .dropdown-menu li a {
  padding: 10px 20px; font-size: 0.9rem; border-radius: 0;
  border-bottom: 1px solid var(--border);
}
.main-nav .dropdown-menu li:last-child a { border-bottom: none; }
.main-nav .dropdown-menu li a:hover { background: var(--light-gray); color: var(--red); padding-left: 26px; }
.nav-cta {
  display: flex; align-items: center; gap: 8px;
  background: var(--red); color: var(--white);
  padding: 12px 22px; border-radius: 50px; font-weight: 700; font-size: 0.93rem;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--red-dark); color: var(--white); }
.nav-cta i { font-size: 1rem; }

/* ---- Mobile Menu ---- */
.hamburger {
  display: none; flex-direction: column; justify-content: space-between;
  width: 28px; height: 20px; cursor: pointer; background: none; border: none;
}
.hamburger span {
  width: 100%; height: 3px; background: var(--dark);
  border-radius: 3px; transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
.mobile-menu {
  display: none; background: var(--white);
  box-shadow: var(--shadow); border-top: 1px solid var(--border);
}
.mobile-menu.open { display: block; }
.mobile-menu ul { padding: 10px 0; }
.mobile-menu a {
  display: block; padding: 12px 20px; font-weight: 600;
  font-size: 0.95rem; border-bottom: 1px solid var(--border); color: var(--dark);
}
.mobile-menu a:hover { color: var(--red); background: var(--light-gray); }
.mobile-menu .mobile-cta {
  margin: 16px 20px;
  display: block; text-align: center; background: var(--red);
  color: var(--white); padding: 14px; border-radius: 50px; font-weight: 700;
}

/* ---- Hero Section ---- */
.hero {
  position: relative;
  background: linear-gradient(135deg, rgba(0,0,0,0.82) 0%, rgba(180,10,30,0.65) 100%),
              url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1400&q=80') center/cover no-repeat;
  min-height: 600px;
  display: flex; align-items: center; padding: 80px 0;
  color: var(--white);
}
.hero-inner { display: grid; grid-template-columns: 1fr 400px; gap: 60px; align-items: center; }
.hero-badge {
  display: inline-block; background: var(--red); color: var(--white);
  padding: 6px 18px; border-radius: 50px; font-size: 0.85rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1.2rem;
}
.hero h1 {
  font-size: 2.8rem; font-weight: 900; line-height: 1.15;
  color: var(--white); margin-bottom: 1.2rem;
}
.hero h1 span { color: #f87171; }
.hero p { font-size: 1.1rem; color: rgba(255,255,255,0.88); margin-bottom: 2rem; max-width: 520px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-form {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px 28px; box-shadow: var(--shadow-lg);
}
.hero-form h3 {
  font-size: 1.3rem; font-weight: 800; color: var(--dark);
  margin-bottom: 0.3rem; font-family: var(--font-heading);
}
.hero-form p { font-size: 0.9rem; color: var(--gray); margin-bottom: 1.5rem; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 5px; color: var(--dark); }
.form-control {
  width: 100%; padding: 12px 16px; border: 1.5px solid var(--border);
  border-radius: var(--radius); font-size: 0.93rem; font-family: var(--font-main);
  transition: var(--transition); background: var(--white); color: var(--dark);
}
.form-control:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(200,16,46,0.12); }
textarea.form-control { resize: vertical; min-height: 90px; }
.form-btn { width: 100%; padding: 14px; font-size: 1rem; font-weight: 700; }

/* ---- Trust Bar ---- */
.trust-bar { background: var(--dark); padding: 30px 0; }
.trust-bar .container { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 20px; }
.trust-item { display: flex; align-items: center; gap: 14px; }
.trust-item i { font-size: 2rem; color: var(--red); }
.trust-item h4 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 2px; }
.trust-item p { font-size: 0.85rem; color: #aaa; margin: 0; }

/* ---- Services Grid ---- */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px,1fr)); gap: 24px; margin-top: 2.5rem; }
.service-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow);
  transition: var(--transition); border-bottom: 4px solid transparent;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-bottom-color: var(--red); }
.service-card-img { height: 200px; overflow: hidden; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.service-card:hover .service-card-img img { transform: scale(1.07); }
.service-card-body { padding: 24px 22px; }
.service-card-body h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.6rem; color: var(--dark); }
.service-card-body p { font-size: 0.9rem; color: var(--gray); margin-bottom: 1rem; }
.service-link {
  color: var(--red); font-weight: 700; font-size: 0.9rem;
  display: flex; align-items: center; gap: 6px;
}
.service-link:hover { gap: 10px; }

/* ---- Why Choose Us ---- */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why-list { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 18px; }
.why-item { display: flex; gap: 16px; align-items: flex-start; }
.why-icon {
  width: 52px; height: 52px; min-width: 52px;
  background: var(--red); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.3rem;
}
.why-text h4 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; color: var(--dark); }
.why-text p { font-size: 0.9rem; margin: 0; }
.why-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.why-img img { width: 100%; height: 480px; object-fit: cover; }

/* ---- CTA Banner ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  padding: 70px 0; text-align: center;
}
.cta-banner h2 { font-size: 2.2rem; color: var(--white); margin-bottom: 0.8rem; }
.cta-banner p { color: rgba(255,255,255,0.88); font-size: 1.1rem; margin-bottom: 2rem; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---- Content + Image Sections ---- */
.content-section { padding: 80px 0; }
.content-section:nth-child(even) { background: var(--light-gray); }
.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.content-grid.reverse { direction: rtl; }
.content-grid.reverse > * { direction: ltr; }
.content-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.content-image img { width: 100%; height: 380px; object-fit: cover; }
.content-text .section-title { font-size: 1.75rem; }
.content-text p { color: var(--gray); }
.feature-list { margin: 1.2rem 0 1.5rem; display: flex; flex-direction: column; gap: 10px; }
.feature-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.95rem; color: var(--dark); }
.feature-list li i { color: var(--red); margin-top: 3px; min-width: 16px; }

/* ---- Stats ---- */
.stats-section { background: var(--red); padding: 60px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.stat-number { font-size: 2.8rem; font-weight: 900; color: var(--white); line-height: 1; margin-bottom: 0.3rem; font-family: var(--font-heading); }
.stat-label { color: rgba(255,255,255,0.82); font-size: 0.95rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }

/* ---- Testimonials ---- */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 24px; margin-top: 2.5rem; }
.testimonial-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 28px 26px; box-shadow: var(--shadow);
  border-top: 4px solid var(--red); transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.stars { color: #fbbf24; font-size: 1rem; margin-bottom: 1rem; }
.testimonial-card p { font-size: 0.95rem; color: var(--gray); font-style: italic; margin-bottom: 1.2rem; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--red); display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 700; font-size: 1.1rem;
}
.author-info h5 { font-size: 0.93rem; font-weight: 700; color: var(--dark); }
.author-info span { font-size: 0.8rem; color: var(--gray); }

/* ---- Service Page Hero ---- */
.page-hero {
  background: linear-gradient(135deg, rgba(0,0,0,0.82) 0%, rgba(180,10,30,0.7) 100%),
              url('') center/cover no-repeat;
  padding: 80px 0 60px;
  color: var(--white);
  text-align: center;
}
.page-hero h1 { font-size: 2.5rem; font-weight: 900; margin-bottom: 1rem; color: var(--white); }
.page-hero p { font-size: 1.1rem; color: rgba(255,255,255,0.88); max-width: 650px; margin: 0 auto 1.5rem; }
.breadcrumb { display: flex; justify-content: center; gap: 8px; margin-bottom: 1.5rem; font-size: 0.9rem; }
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,0.5); }

/* ---- Service Content Page ---- */
.service-content-grid { display: grid; grid-template-columns: 1fr 340px; gap: 48px; align-items: start; }
.service-main p { font-size: 0.97rem; color: var(--gray); }
.service-main h2 { font-size: 1.6rem; color: var(--dark); margin: 2rem 0 0.8rem; }
.service-main h3 { font-size: 1.25rem; color: var(--dark); margin: 1.5rem 0 0.6rem; }
.service-sidebar { position: sticky; top: 100px; }
.sidebar-card {
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); padding: 28px 24px; margin-bottom: 24px;
  border-top: 4px solid var(--red);
}
.sidebar-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 1.2rem; color: var(--dark); }
.sidebar-services a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 0; border-bottom: 1px solid var(--border);
  font-size: 0.93rem; font-weight: 600; color: var(--dark);
}
.sidebar-services a:hover { color: var(--red); padding-left: 6px; }
.sidebar-services a:last-child { border-bottom: none; }
.sidebar-services i { color: var(--red); font-size: 0.85rem; }
.contact-card { background: var(--red); border-radius: var(--radius-lg); padding: 28px 24px; color: var(--white); }
.contact-card h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 0.5rem; }
.contact-card p { color: rgba(255,255,255,0.85); font-size: 0.9rem; margin-bottom: 1.2rem; }
.contact-card .phone-link {
  display: flex; align-items: center; gap: 10px;
  background: var(--white); color: var(--red);
  padding: 12px 20px; border-radius: 50px; font-weight: 800; font-size: 1rem;
  justify-content: center; margin-bottom: 12px;
}
.contact-card .phone-link:hover { background: var(--light-gray); }
.hours-list { display: flex; flex-direction: column; gap: 6px; margin-top: 0.8rem; }
.hours-list li { display: flex; justify-content: space-between; font-size: 0.87rem; padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.9); }

/* ---- About Page ---- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-bottom: 3rem; }
.about-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-img img { width: 100%; height: 420px; object-fit: cover; }
.team-values { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 24px; margin-top: 2rem; }
.value-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 28px 22px; text-align: center; box-shadow: var(--shadow);
  transition: var(--transition); border-bottom: 4px solid transparent;
}
.value-card:hover { transform: translateY(-4px); border-bottom-color: var(--red); }
.value-icon {
  width: 64px; height: 64px; background: var(--red); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem; color: var(--white); font-size: 1.6rem;
}
.value-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--dark); }
.value-card p { font-size: 0.88rem; color: var(--gray); margin: 0; }

/* ---- Contact Page ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-info-item { display: flex; gap: 18px; align-items: flex-start; }
.contact-info-icon {
  width: 52px; height: 52px; min-width: 52px; background: var(--red);
  border-radius: var(--radius); display: flex; align-items: center;
  justify-content: center; color: var(--white); font-size: 1.3rem;
}
.contact-info-text h4 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.contact-info-text p, .contact-info-text a { font-size: 0.95rem; color: var(--gray); margin: 0; }
.contact-info-text a:hover { color: var(--red); }
.map-container { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); margin-top: 2rem; }
.map-container iframe { width: 100%; height: 380px; border: none; }
.contact-form-box {
  background: var(--white); padding: 36px; border-radius: var(--radius-lg);
  box-shadow: var(--shadow); border-top: 4px solid var(--red);
}
.contact-form-box h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 0.5rem; color: var(--dark); }
.contact-form-box p { font-size: 0.93rem; color: var(--gray); margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.social-links-contact { display: flex; gap: 12px; margin-top: 1.5rem; }
.social-links-contact a {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--light-gray); color: var(--dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; transition: var(--transition);
}
.social-links-contact a:hover { background: var(--red); color: var(--white); }

/* ---- Footer ---- */
.site-footer {
  background: var(--dark); color: #ccc;
  padding-top: 70px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 50px; }
.footer-about .footer-logo img { height: 56px; width: auto; margin-bottom: 1.2rem; filter: brightness(0) invert(1); }
.footer-about p { font-size: 0.9rem; color: #aaa; line-height: 1.7; margin-bottom: 1.2rem; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.08); color: #ccc;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; transition: var(--transition);
}
.footer-social a:hover { background: var(--red); color: var(--white); }
.footer-col h4 {
  font-size: 1rem; font-weight: 700; color: var(--white);
  margin-bottom: 1.2rem; position: relative; padding-bottom: 10px;
}
.footer-col h4::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 36px; height: 3px; background: var(--red); border-radius: 2px;
}
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 0.9rem; color: #aaa; display: flex; align-items: center; gap: 8px; }
.footer-links a:hover { color: var(--red); padding-left: 6px; }
.footer-links i { font-size: 0.8rem; color: var(--red); }
.footer-contact-list { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-item { display: flex; gap: 12px; align-items: flex-start; }
.footer-contact-item i { color: var(--red); font-size: 1rem; margin-top: 3px; min-width: 16px; }
.footer-contact-item p { font-size: 0.88rem; color: #aaa; margin: 0; line-height: 1.5; }
.footer-contact-item a { color: #aaa; }
.footer-contact-item a:hover { color: var(--red); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0; display: flex;
  justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.85rem; color: #777; margin: 0; }
.footer-bottom a { color: var(--red); }
.footer-bottom a:hover { text-decoration: underline; }
.footer-hours p { font-size: 0.88rem; color: #aaa; margin-bottom: 6px; display: flex; align-items: center; gap: 8px; }
.footer-hours p i { color: var(--red); }

/* ---- Scroll to Top ---- */
.scroll-top {
  position: fixed; bottom: 28px; right: 28px;
  width: 46px; height: 46px; background: var(--red);
  color: var(--white); border-radius: 50%; border: none;
  cursor: pointer; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg); opacity: 0; pointer-events: none;
  transition: var(--transition); z-index: 999;
}
.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { background: var(--red-dark); transform: translateY(-3px); }

/* ---- Emergency Float Button ---- */
.float-call {
  position: fixed; bottom: 28px; left: 28px;
  background: var(--red); color: var(--white);
  padding: 14px 22px; border-radius: 50px;
  font-weight: 700; font-size: 0.95rem;
  display: flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow-lg); z-index: 999;
  animation: pulse 2.5s infinite;
}
.float-call:hover { background: var(--red-dark); color: var(--white); }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200,16,46,0.4); }
  50% { box-shadow: 0 0 0 14px rgba(200,16,46,0); }
}

/* ---- Checklist Boxes ---- */
.check-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 18px; margin-top: 2rem; }
.check-item {
  background: var(--white); border-radius: var(--radius);
  padding: 18px 16px; display: flex; align-items: flex-start; gap: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}
.check-item i { color: var(--red); font-size: 1.1rem; margin-top: 2px; }
.check-item span { font-size: 0.93rem; font-weight: 600; color: var(--dark); }

/* ---- FAQ Section ---- */
.faq-list { max-width: 800px; margin: 2rem auto 0; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow); border-left: 4px solid var(--red); overflow: hidden;
}
.faq-question {
  padding: 18px 22px; font-weight: 700; font-size: 0.97rem;
  cursor: pointer; display: flex; justify-content: space-between;
  align-items: center; color: var(--dark); user-select: none;
}
.faq-question i { color: var(--red); transition: var(--transition); font-size: 0.9rem; }
.faq-answer { padding: 0 22px; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; }
.faq-answer.open { max-height: 300px; padding: 0 22px 18px; }
.faq-answer p { font-size: 0.93rem; color: var(--gray); margin: 0; }
.faq-question.active i { transform: rotate(180deg); }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-form { max-width: 500px; }
  .hero { text-align: center; }
  .hero p { margin: 0 auto 2rem; }
  .hero-btns { justify-content: center; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 900px) {
  .why-grid, .content-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .why-img, .content-image, .about-img { order: -1; }
  .service-content-grid { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
}
@media (max-width: 768px) {
  .main-nav, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .section { padding: 60px 0; }
  .hero h1 { font-size: 2rem; }
  .section-title { font-size: 1.6rem; }
  .page-hero h1 { font-size: 1.9rem; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .top-bar .container { flex-direction: column; gap: 4px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .cta-banner h2 { font-size: 1.7rem; }
  .float-call { padding: 12px 16px; font-size: 0.88rem; }
}
@media (max-width: 480px) {
  .hero { padding: 60px 0; }
  .hero h1 { font-size: 1.7rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .stat-number { font-size: 2rem; }
  .trust-bar .container { flex-direction: column; align-items: flex-start; }
  .hero-btns { flex-direction: column; width: 100%; }
  .hero-btns .btn { justify-content: center; }
}
