/* ===============================
   Fayetteville Concrete Pros
   Redesigned CSS - WordPress Style + CRO
   =============================== */

:root {
  --primary-orange: #f97316;
  --primary-orange-dark: #ea580c;
  --primary-dark: #1e3a5f;
  --primary-dark-light: #2d4a6c;
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --text-muted: #9ca3af;
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  --bg-dark: #111827;
  --success-green: #22c55e;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
  --radius: 8px;
  --radius-lg: 12px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--bg-white);
}

a {
  color: var(--primary-orange);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--primary-orange-dark);
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===============================
   HEADER - Clean with Logo Left, Nav Right
   =============================== */
header {
  background: var(--bg-white);
  padding: 12px 0;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #e5e7eb;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 65px;
  width: auto;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 30px;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 28px;
}

nav a {
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 0;
  position: relative;
  transition: color 0.2s;
}

nav a:hover {
  color: var(--primary-orange);
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-orange);
  color: white !important;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s;
}

.header-phone:hover {
  background: var(--primary-orange-dark);
  color: white !important;
  transform: translateY(-1px);
}

.header-phone svg {
  width: 18px;
  height: 18px;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  margin: 5px 0;
  transition: 0.3s;
  border-radius: 2px;
}

/* ===============================
   HERO SECTION - Form Above Fold
   =============================== */
.hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #0f2744 100%);
  padding: 50px 0 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 55%;
  background: url('../images/hero-bg.webp') center/cover no-repeat;
  opacity: 0.15;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  color: white;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(249, 115, 22, 0.15);
  border: 1px solid rgba(249, 115, 22, 0.3);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--primary-orange);
  font-weight: 500;
  margin-bottom: 20px;
}

.hero-badge svg {
  width: 16px;
  height: 16px;
  fill: var(--primary-orange);
}

.hero h1 {
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 18px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero h1 span {
  color: var(--primary-orange);
}

.hero-subtitle {
  font-size: 1.15rem;
  opacity: 0.9;
  margin-bottom: 25px;
  line-height: 1.7;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  opacity: 0.95;
}

.hero-trust-item svg {
  width: 20px;
  height: 20px;
  fill: var(--success-green);
}

.hero-phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--primary-orange);
  color: white !important;
  padding: 16px 28px;
  border-radius: var(--radius);
  font-size: 1.25rem;
  font-weight: 700;
  transition: all 0.2s;
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.4);
}

.hero-phone:hover {
  background: var(--primary-orange-dark);
  color: white !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.5);
}

.hero-phone svg {
  width: 24px;
  height: 24px;
}

/* Hero Form Card */
.hero-form-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-xl);
}

.hero-form-card h3 {
  font-size: 1.4rem;
  text-align: center;
  margin-bottom: 5px;
  color: var(--text-dark);
}

.hero-form-card .form-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.hero-form-card iframe {
  border: none;
  width: 100%;
  min-height: 380px;
}

.form-urgency {
  background: linear-gradient(90deg, #fef3c7, #fde68a);
  border: 1px solid #f59e0b;
  border-radius: 6px;
  padding: 10px 14px;
  text-align: center;
  font-size: 0.85rem;
  color: #92400e;
  font-weight: 500;
  margin-top: 15px;
}

.form-urgency strong {
  color: #b45309;
}

/* ===============================
   TRUST BADGES BAR
   =============================== */
.trust-bar {
  background: var(--bg-light);
  padding: 25px 0;
  border-bottom: 1px solid #e5e7eb;
}

.trust-bar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-dark);
}

.trust-badge-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-badge-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--primary-orange);
}

.trust-badge-text {
  font-weight: 600;
  font-size: 0.95rem;
}

.trust-badge-text span {
  display: block;
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-light);
}

/* ===============================
   ANIMATED COUNTER SECTION
   =============================== */
.counter-section {
  background: var(--primary-dark);
  padding: 50px 0;
  color: white;
  text-align: center;
}

.counter-section h2 {
  font-size: 1rem;
  font-weight: 400;
  opacity: 0.8;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.counter-number {
  font-size: 5rem;
  font-weight: 800;
  color: var(--primary-orange);
  line-height: 1;
  margin-bottom: 10px;
}

.counter-label {
  font-size: 1.5rem;
  font-weight: 600;
  opacity: 0.9;
}

/* ===============================
   SECTIONS COMMON
   =============================== */
section {
  padding: 70px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

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

/* ===============================
   PROCESS SECTION
   =============================== */
.process-section {
  background: var(--bg-white);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.process-step {
  text-align: center;
  padding: 35px 25px;
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  transition: all 0.3s;
}

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

.step-number {
  width: 60px;
  height: 60px;
  background: var(--primary-orange);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 20px;
}

.process-step h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--text-dark);
}

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

/* ===============================
   SERVICES SECTION
   =============================== */
.services-section {
  background: var(--bg-light);
}

.services-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 50px;
}

.services-list h3 {
  font-size: 1.5rem;
  color: var(--primary-dark);
  margin-bottom: 20px;
}

.services-list ul {
  list-style: none;
}

.services-list li {
  padding: 12px 0;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  gap: 12px;
}

.services-list li:last-child {
  border-bottom: none;
}

.services-list li svg {
  width: 20px;
  height: 20px;
  fill: var(--primary-orange);
  flex-shrink: 0;
}

.services-list a {
  color: var(--text-dark);
  font-weight: 500;
}

.services-list a:hover {
  color: var(--primary-orange);
}

.areas-list h3 {
  font-size: 1.5rem;
  color: var(--primary-dark);
  margin-bottom: 20px;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.areas-grid a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: var(--bg-white);
  border-radius: 6px;
  color: var(--text-dark);
  font-weight: 500;
  transition: all 0.2s;
}

.areas-grid a:hover {
  background: var(--primary-orange);
  color: white;
}

.areas-grid a svg {
  width: 16px;
  height: 16px;
  fill: var(--primary-orange);
}

.areas-grid a:hover svg {
  fill: white;
}

/* ===============================
   GALLERY SECTION
   =============================== */
.gallery-section {
  background: var(--bg-white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  box-shadow: var(--shadow-sm);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* ===============================
   REVIEWS SECTION - 3 Column Grid
   =============================== */
.reviews-section {
  background: var(--bg-light);
}

.reviews-header {
  text-align: center;
  margin-bottom: 40px;
}

.reviews-header .rating-display {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-white);
  padding: 12px 24px;
  border-radius: 50px;
  box-shadow: var(--shadow-sm);
  margin-top: 15px;
}

.rating-display .stars {
  color: #f97316;
  font-size: 1.2rem;
  letter-spacing: 2px;
}

.rating-display span {
  font-weight: 600;
  color: var(--text-dark);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.review-card {
  background: var(--bg-white);
  padding: 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid #e5e7eb;
  transition: all 0.3s;
}

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

.review-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.reviewer-info {
  flex: 1;
}

.reviewer-info strong {
  display: block;
  font-size: 1rem;
  color: var(--text-dark);
}

.reviewer-info .stars {
  color: #f97316;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.reviewer-info .review-date {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.review-text {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

.google-badge {
  width: 20px;
  height: 20px;
}

/* ===============================
   FEATURES BAR
   =============================== */
.features-bar {
  background: var(--primary-dark);
  padding: 40px 0;
  color: white;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.feature-item {
  padding: 10px;
}

.feature-icon {
  width: 65px;
  height: 65px;
  margin: 0 auto 15px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  width: 32px;
  height: 32px;
  fill: var(--primary-orange);
}

.feature-item h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.feature-item p {
  font-size: 0.85rem;
  opacity: 0.7;
}

/* ===============================
   ABOUT SECTION
   =============================== */
.about-section {
  background: var(--bg-white);
}

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

.about-content h2 {
  font-size: 2rem;
  color: var(--primary-dark);
  margin-bottom: 20px;
}

.about-content p {
  margin-bottom: 16px;
  color: var(--text-light);
}

.about-content strong {
  color: var(--text-dark);
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* ===============================
   CTA SECTION
   =============================== */
/* CTA Section - Homepage version */
.cta-section {
  background: linear-gradient(135deg, var(--primary-orange) 0%, #dc6316 100%);
  padding: 60px 0;
  text-align: center;
  color: white;
}

/* CTA Section - Sub-pages version */
.cta {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #0f2744 100%);
  padding: 60px 0;
  text-align: center;
  color: white;
}

.cta h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.cta p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 25px;
}

.cta .btn {
  background: var(--primary-orange);
  color: white;
  padding: 16px 32px;
  font-size: 1.1rem;
}

.cta .btn:hover {
  background: var(--primary-orange-dark);
  transform: translateY(-2px);
}

.cta-section h2 {
  font-size: 2.25rem;
  margin-bottom: 15px;
}

.cta-section p {
  font-size: 1.15rem;
  opacity: 0.95;
  margin-bottom: 30px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}

.btn-white {
  background: white;
  color: var(--primary-orange);
}

.btn-white:hover {
  background: var(--bg-light);
  color: var(--primary-orange);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  border: 2px solid white;
  color: white;
}

.btn-outline-white:hover {
  background: white;
  color: var(--primary-orange);
}

.btn-primary {
  background: var(--primary-orange);
  color: white;
}

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

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

.btn-outline:hover {
  background: var(--primary-orange);
  color: white;
}

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

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

/* ===============================
   FOOTER
   =============================== */
footer {
  background: var(--bg-dark);
  color: white;
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 40px;
  padding: 0 20px;
}

.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--primary-orange);
}

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

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--primary-orange);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: rgba(255,255,255,0.75);
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  fill: var(--primary-orange);
  flex-shrink: 0;
}

.footer-map {
  margin: 40px auto 0;
  max-width: 1200px;
  padding: 0 20px;
}

.footer-map iframe {
  border-radius: var(--radius);
  width: 100%;
}

.footer-bottom {
  max-width: 1200px;
  margin: 40px auto 0;
  padding: 20px 20px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
}

.footer-bottom a {
  color: rgba(255,255,255,0.5);
  margin-left: 20px;
}

.footer-bottom a:hover {
  color: var(--primary-orange);
}

/* ===============================
   STICKY MOBILE CTA
   =============================== */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary-orange);
  padding: 12px 20px;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

.sticky-mobile-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: white !important;
  font-size: 1.2rem;
  font-weight: 700;
}

.sticky-mobile-cta svg {
  width: 24px;
  height: 24px;
  animation: phone-ring 1s ease infinite;
}

@keyframes phone-ring {
  0%, 100% { transform: rotate(0); }
  25% { transform: rotate(-10deg); }
  75% { transform: rotate(10deg); }
}

/* ===============================
   EXIT INTENT POPUP
   =============================== */
.exit-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.7);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.exit-popup.active {
  display: flex;
}

.exit-popup-content {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 500px;
  width: 100%;
  text-align: center;
  position: relative;
  animation: popup-in 0.3s ease;
}

@keyframes popup-in {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.exit-popup-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-light);
}

.exit-popup-content h3 {
  font-size: 1.75rem;
  color: var(--primary-dark);
  margin-bottom: 15px;
}

.exit-popup-content p {
  color: var(--text-light);
  margin-bottom: 25px;
}

.exit-popup-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--primary-orange);
  color: white !important;
  padding: 16px 32px;
  border-radius: var(--radius);
  font-size: 1.2rem;
  font-weight: 700;
  transition: all 0.2s;
}

.exit-popup-cta:hover {
  background: var(--primary-orange-dark);
  color: white !important;
  transform: scale(1.02);
}

/* ===============================
   SERVICE PAGES
   =============================== */
.service-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #0f2744 100%);
  padding: 80px 20px;
  text-align: center;
  color: white;
}

.service-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.service-hero p {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 25px;
}

.service-content {
  padding: 60px 20px;
}

.service-content h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--primary-dark);
}

.service-content h3 {
  font-size: 1.4rem;
  margin: 30px 0 15px;
  color: var(--text-dark);
}

.service-content p {
  margin-bottom: 15px;
  color: var(--text-light);
}

.service-content ul {
  margin: 15px 0 25px 25px;
}

.service-content li {
  margin-bottom: 10px;
  color: var(--text-light);
}

.service-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin: 30px 0;
}

.service-images img {
  border-radius: 8px;
  height: 200px;
  object-fit: cover;
}

/* Thank You Page */
.thankyou-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--bg-light);
}

.thankyou-content h1 {
  font-size: 2.5rem;
  color: var(--primary-dark);
  margin-bottom: 20px;
}

.thankyou-content p {
  font-size: 1.3rem;
  color: var(--text-light);
  margin-bottom: 30px;
}

/* Contact Form Embed */
.contact-form {
  background: var(--bg-white);
  padding: 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.intro {
  background: var(--bg-light);
  padding: 60px 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.intro-content h3 {
  font-size: 1.5rem;
  color: var(--primary-dark);
  margin-bottom: 15px;
}

.intro-content p {
  margin-bottom: 15px;
  color: var(--text-light);
}

.intro-content strong {
  color: var(--text-dark);
}

/* Top Bar - Hidden on Desktop, Alternative Mobile */
.top-bar {
  display: none;
}

/* ===============================
   RESPONSIVE
   =============================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero h1 {
    font-size: 2.25rem;
  }
  
  .hero-form-card {
    max-width: 100%;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  /* Show sticky mobile CTA */
  .sticky-mobile-cta {
    display: block;
  }
  
  body {
    padding-bottom: 70px;
  }
  
  /* Header mobile */
  .header-right {
    display: none;
  }
  
  .header-right.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    padding: 20px;
    box-shadow: var(--shadow-lg);
    gap: 15px;
  }
  
  .header-right.active nav ul {
    flex-direction: column;
    gap: 15px;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .header-phone {
    display: none;
  }
  
  /* Hero mobile */
  .hero {
    padding: 40px 0 50px;
  }
  
  .hero h1 {
    font-size: 1.85rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-trust {
    flex-direction: column;
    gap: 10px;
  }
  
  .hero-phone {
    width: 100%;
    justify-content: center;
  }
  
  /* Trust bar mobile */
  .trust-bar-inner {
    flex-direction: column;
    gap: 25px;
  }
  
  /* Process mobile */
  .process-steps {
    grid-template-columns: 1fr;
  }
  
  /* Services mobile */
  .services-intro {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  /* Gallery mobile */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Reviews mobile */
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  
  /* Features mobile */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  /* About mobile */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  /* CTA mobile */
  .cta-buttons {
    flex-direction: column;
  }
  
  .cta-buttons .btn {
    width: 100%;
    justify-content: center;
  }
  
  /* Footer mobile */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  /* Why List */
.why-list {
  list-style: none;
  margin: 20px 0;
  padding: 0;
}

.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: var(--bg-light);
  border-radius: var(--radius);
  margin-bottom: 12px;
  border-left: 4px solid var(--primary-orange);
}

.why-list li div strong {
  display: block;
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.why-list li div {
  color: var(--text-light);
}

/* Services Grid (About page) */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.service-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s;
}

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

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card-content {
  padding: 25px;
}

.service-card-content h3 {
  font-size: 1.25rem;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.service-card-content p {
  color: var(--text-light);
  margin-bottom: 15px;
  font-size: 0.95rem;
}

/* Contact page styles */
.contact-section {
  padding: 60px 0;
}

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

.contact-info h2 {
  font-size: 1.75rem;
  color: var(--primary-dark);
  margin-bottom: 20px;
}

.contact-info p {
  margin-bottom: 15px;
  color: var(--text-light);
}

.contact-details {
  margin-top: 30px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.contact-item svg {
  width: 24px;
  height: 24px;
  fill: var(--primary-orange);
  flex-shrink: 0;
  margin-top: 4px;
}

.contact-item strong {
  display: block;
  color: var(--text-dark);
}

.contact-form h3 {
  font-size: 1.5rem;
  color: var(--primary-dark);
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Service pages mobile */
  .service-images {
    grid-template-columns: 1fr;
  }
  
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  /* Section padding mobile */
  section {
    padding: 50px 0;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
}

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

/* LP Styles */
.lp-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #1a3a52 100%);
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.lp-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.lp-hero .subtitle {
  font-size: 1.3rem;
  opacity: 0.9;
  margin-bottom: 30px;
}

.lp-hero .phone-cta {
  font-size: 2rem;
  font-weight: bold;
  background: var(--primary-orange);
  padding: 15px 40px;
  border-radius: 50px;
  display: inline-block;
  color: white;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.lp-hero .phone-cta:hover {
  transform: scale(1.05);
  color: white;
}


/* ===============================
   OVERFLOW FIXES (Mobile Responsive)
   Added to prevent horizontal scroll
   =============================== */
html, body {
  overflow-x: hidden;
  max-width: 100vw;
}

/* Ensure all images respect container width */
img {
  max-width: 100%;
  height: auto;
}

/* Fix tables that might overflow */
table {
  max-width: 100%;
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* Responsive table wrapper */
.table-wrapper {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* Fix any inline elements that might cause overflow */
pre, code {
  max-width: 100%;
  overflow-x: auto;
  word-wrap: break-word;
  white-space: pre-wrap;
}

/* Prevent long words/URLs from breaking layout */
p, li, td, th, a, span {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Fix iframes (like forms) */
iframe {
  max-width: 100%;
}

/* Hero section fixes */
.hero::before {
  max-width: 100%;
}

/* Ensure container doesn't overflow */
.container {
  max-width: 100%;
  overflow-x: hidden;
}

/* Fix inline styles on tables in homepage */
@media (max-width: 768px) {
  table[style*="min-width"] {
    min-width: 100% !important;
  }
  
  td, th {
    padding: 8px !important;
    font-size: 0.85rem !important;
  }
  
  /* Make comparison table scrollable on mobile */
  section table {
    font-size: 0.8rem;
  }
}

/* Ensure footer grid doesn't overflow */
.footer-grid {
  max-width: 100%;
}

/* Fix any absolute positioned elements */
.hero, .cta-section, .features-bar {
  max-width: 100vw;
  overflow: hidden;
}
