/* Modern Premium Design - Express Garage Door & Gate Repair */

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Prevent horizontal overflow on mobile */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

/* Root Variables - Garage Door Professional Theme */
:root {
  /* Header & Navigation */
  --header-bg: #F8F9FA; /* Light Gray */
  --header-alt: #FFFFFF; /* Clean White */
  
  /* Brand & Logo */
  --brand-gradient: linear-gradient(135deg, #E53935 0%, #C62828 100%);
  --brand-primary: #E53935;
  --brand-secondary: #C62828;
  
  /* Call-to-Action */
  --cta-primary: #C62828; /* Speed Red */
  --cta-hover: #E53935;
  
  /* Backgrounds */
  --primary-color: #FFFFFF; /* Clean white */
  --secondary-color: #FAFAFA; /* Soft off-white */
  --light-bg: #FAFAFA;
  --card-bg: #FFFFFF;
  
  /* Text Colors */
  --text-dark: #2E2E2E; /* Main text */
  --text-light: #757575; /* Subtext/Labels */
  --text-muted: #757575;
  --text-inverted: #FFFFFF; /* Button text */
  --white: #FFFFFF;
  
  /* Legacy colors for compatibility */
  --accent-color: #C62828;
  --accent-hover: #E53935;
  --success-color: #10B981;
  --border-color: #D1D5DB;
  
  /* Shadows & Effects */
  --shadow: 0 4px 20px rgba(46, 46, 46, 0.08);
  --shadow-lg: 0 8px 30px rgba(46, 46, 46, 0.12);
  --shadow-xl: 0 20px 40px rgba(46, 46, 46, 0.15);
  --border-radius: 12px;
  --border-radius-lg: 16px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s ease-out;
  
  /* Gradients */
  --gradient-primary: var(--brand-gradient);
  --gradient-accent: linear-gradient(135deg, var(--cta-primary) 0%, var(--cta-hover) 100%);
  --gradient-light: linear-gradient(135deg, var(--text-light) 0%, var(--cta-primary) 100%);
  --gradient-gold: linear-gradient(135deg, #FFB300 0%, #FF8F00 100%);
}

/* Typography - Modern Professional Fonts */
html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', 'Montserrat', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--primary-color);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  width: 100%;
  overflow-x: hidden;
}

/* Typography Hierarchy */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.25rem;
  color: var(--text-dark);
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.02em;
}

h1 { 
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
}

h2 { 
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
}

h3 { 
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
}

h4 { 
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 600;
}

h5 { 
  font-size: 1.125rem;
  font-weight: 500;
}

h6 { 
  font-size: 1rem;
  font-weight: 500;
}

p {
  margin-bottom: 1.25rem;
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 400;
}

/* Modern Button System */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 16px 32px;
  border: none;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  text-align: center;
  white-space: nowrap;
  min-height: 52px;
  box-shadow: var(--shadow);
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.01em;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn:active {
  transform: translateY(0);
}

/* Primary CTA Button */
.btn-primary {
  background: var(--cta-primary);
  color: var(--text-inverted);
  border: 2px solid transparent;
}

.btn-primary:hover {
  background: var(--cta-hover);
  color: var(--text-inverted);
}

/* Secondary Button */
.btn-secondary {
  background: var(--gradient-accent);
  color: var(--text-inverted);
  border: 2px solid transparent;
}

.btn-secondary:hover {
  background: var(--cta-hover);
  color: var(--text-inverted);
}

/* Outline CTA Button */
.btn-outline {
  background: transparent;
  color: var(--cta-primary);
  border: 2px solid var(--cta-primary);
}

.btn-outline:hover {
  background: var(--cta-primary);
  color: var(--text-inverted);
  border-color: var(--cta-primary);
}

/* Large Button Variant */
.btn-lg {
  padding: 20px 40px;
  font-size: 1.125rem;
  min-height: 60px;
  border-radius: var(--border-radius-lg);
}

/* Emergency CTA Button */
.btn-emergency {
  background: linear-gradient(135deg, #DC2626 0%, #991B1B 100%);
  color: var(--white);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
  animation: pulse 2s infinite;
}

.btn-emergency:hover {
  background: linear-gradient(135deg, #991B1B 0%, #DC2626 100%);
  box-shadow: 0 12px 35px rgba(220, 38, 38, 0.4);
  color: var(--white);
}

/* Coupon Button */
.btn-coupon {
  background: var(--gradient-accent);
  color: var(--text-inverted);
  font-weight: 700;
  box-shadow: 0 8px 25px rgba(198, 40, 40, 0.3);
}

.btn-coupon:hover {
  background: var(--cta-hover);
  box-shadow: 0 12px 35px rgba(229, 57, 53, 0.4);
  color: var(--text-inverted);
}

/* Fast Service Button */
.btn-fast {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  color: var(--white);
  font-weight: 700;
  box-shadow: 0 8px 25px rgba(5, 150, 105, 0.3);
}

.btn-fast:hover {
  background: linear-gradient(135deg, #047857 0%, #059669 100%);
  box-shadow: 0 12px 35px rgba(5, 150, 105, 0.4);
  color: var(--white);
}

/* Modern Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--header-bg);
  border-bottom: 3px solid var(--white);
  z-index: 1000;
  transition: var(--transition);
  box-shadow: 0 0 20px rgba(46, 46, 46, 0.3);
}

.header.scrolled {
  background: var(--header-bg);
  box-shadow: var(--shadow);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 88px;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  display: flex;
  align-items: center;
  letter-spacing: -0.02em;
}

.logo-img {
  height: 72px;
  width: auto;
  max-width: 300px;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
  position: relative;
  padding: 8px 0;
}

.nav-link:hover {
  color: var(--brand-primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-gold);
  transition: var(--transition);
}

.nav-link:hover::after {
  width: 100%;
}

/* Modern Dropdown */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
}

.dropdown-toggle i {
  font-size: 0.75rem;
  transition: var(--transition);
}

.dropdown:hover .dropdown-toggle i {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  box-shadow: var(--shadow-xl);
  border-radius: var(--border-radius);
  min-width: 280px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
  z-index: 1001;
  list-style: none;
  padding: 12px 0;
  margin-top: 12px;
  border: 1px solid var(--border-color);
}

@media (hover: hover) and (min-width: 1024px) {
  .dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
  }

  .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

.dropdown.active .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown.active .dropdown-toggle i {
  transform: rotate(180deg);
}

.dropdown-link {
  display: block;
  padding: 12px 24px;
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: var(--transition-fast);
  border-bottom: 1px solid var(--border-color);
}

.dropdown-link:last-child {
  border-bottom: none;
}

.dropdown-link:hover {
  background: var(--secondary-color);
  color: var(--accent-color);
  padding-left: 32px;
}

.nav-cta {
  background: var(--cta-primary);
  color: var(--text-inverted);
  padding: 12px 24px;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  border: 2px solid transparent;
}

.nav-cta:hover {
  background: var(--cta-hover);
  transform: translateY(-1px);
  color: var(--text-inverted);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-dark);
  padding: 8px;
  border-radius: var(--border-radius);
  transition: var(--transition-fast);
}

.mobile-menu-btn:hover {
  background: rgba(46, 46, 46, 0.1);
}

/* Premium Hero Section */
.hero {
  background-image: url('/media/WhatsApp Image 2025-07-31 at 14.11.56 (1).jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: var(--white);
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(30, 30, 30, 0.8) 0%, rgba(30, 30, 30, 0.6) 50%, rgba(30, 30, 30, 0.9) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}

.hero-text {
  max-width: 900px;
  margin: 0 auto;
  animation: fadeInUp 1s ease 0.2s both;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 2rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--white);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero h2 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  margin-bottom: 1.5rem;
  font-weight: 600;
  color: var(--accent-color);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.5rem;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.4s both;
}

/* Modern Section Styling */
.section {
  padding: 80px 0;
}

.section:nth-child(even) {
  background: var(--secondary-color);
}

.section:nth-child(odd) {
  background: var(--white);
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Trust Icons Section */
.trust-icons {
  background: var(--white);
  padding: 60px 0;
  border-top: 1px solid var(--border-color);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1rem;
  background: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.trust-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.trust-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.trust-item h4 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
  font-weight: 600;
}

.trust-item p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.5;
}

/* Services Section */
.services {
  padding: 80px 0;
  background: var(--secondary-color);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 1.5rem;
  color: var(--text-dark);
  font-weight: 700;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 32px;
}

.service-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 4px;
  background: var(--gradient-gold);
  transition: var(--transition);
}

.service-card:hover::before {
  left: 0;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--accent-color);
}

.service-icon {
  width: 90px;
  height: 90px;
  background: var(--gradient-gold);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2.25rem;
  margin-bottom: 2rem;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.service-card h3 {
  margin-bottom: 1.25rem;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 1.5rem;
}

.service-card p {
  margin-bottom: 2rem;
  color: var(--text-light);
  line-height: 1.6;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-color);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: var(--transition-fast);
}

.service-link:hover {
  color: var(--accent-hover);
  gap: 0.75rem;
}

/* Why Choose Us Section */
.why-choose-us {
  padding: 80px 0;
  background: var(--white);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 32px;
}

.benefit-item {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.benefit-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-color);
}

.benefit-icon {
  width: 90px;
  height: 90px;
  background: var(--secondary-color);
  border: 3px solid var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 2.25rem;
  color: var(--accent-color);
  transition: var(--transition);
}

.benefit-item:hover .benefit-icon {
  background: var(--accent-color);
  color: var(--white);
}

.benefit-item h4 {
  margin-bottom: 1rem;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 1.25rem;
}

.benefit-item p {
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

/* Testimonials Section */
.testimonials {
  padding: 80px 0;
  background: var(--secondary-color);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 32px;
}

.testimonial-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
  position: relative;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -15px;
  left: 30px;
  font-size: 5rem;
  color: var(--accent-color);
  font-family: serif;
  font-weight: 700;
  opacity: 0.8;
}

.testimonial-content {
  margin-bottom: 2rem;
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-dark);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.25rem;
}

.author-info h4 {
  margin: 0 0 0.25rem 0;
  font-size: 1.1rem;
  color: var(--text-dark);
  font-weight: 600;
}

.author-info p {
  margin: 0 0 0.5rem 0;
  font-size: 0.9rem;
  color: var(--text-light);
}

.stars {
  color: var(--accent-color);
  font-size: 1.1rem;
  font-weight: 700;
}

/* Micro CTA Sections */
.micro-cta {
  background: var(--gradient-light);
  border: 2px solid var(--accent-color);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
  margin: 3rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.micro-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
  transition: left 0.8s ease;
}

.micro-cta:hover::before {
  left: 100%;
}

.micro-cta h4 {
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 700;
}

.micro-cta p {
  color: var(--text-light);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.cta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

/* CTA Section */
.cta-section {
  background: var(--gradient-primary);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::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="1" fill="rgba(212,175,55,0.3)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
  opacity: 0.4;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 32px;
}

.cta-content h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 1.5rem;
  color: var(--white);
  font-weight: 700;
}

.cta-content p {
  font-size: 1.125rem;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Modern Footer */
.footer {
  background: var(--header-bg);
  color: var(--text-dark);
  padding: 80px 0 40px;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-gold);
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h3 {
  margin-bottom: 1.5rem;
  color: var(--accent-color);
  font-weight: 600;
  font-size: 1.25rem;
}

.footer-section p,
.footer-section a {
  color: var(--text-light);
  text-decoration: none;
  margin-bottom: 0.75rem;
  display: block;
  transition: var(--transition-fast);
  line-height: 1.6;
}

.footer-section a:hover {
  color: var(--accent-color);
  padding-left: 4px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section li {
  margin-bottom: 0.5rem;
}

.footer-logo {
  height: 64px;
  width: auto;
  max-width: 240px;
  margin-bottom: 1.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(46, 46, 46, 0.1);
  padding: 2rem 32px 0;
  text-align: center;
  color: var(--text-light);
  max-width: 1400px;
  margin: 0 auto;
}

.footer-bottom a {
  color: var(--accent-color);
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-bottom a:hover {
  color: var(--text-dark);
}

/* Floating CTA */
.floating-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.floating-btn {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  text-decoration: none;
  box-shadow: var(--shadow-xl);
  transition: var(--transition);
  animation: pulse 2s infinite;
  border: 3px solid var(--white);
}

.floating-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.floating-btn.phone {
  background: var(--gradient-accent);
}

.floating-btn-text {
  position: absolute;
  right: 85px;
  background: var(--white);
  color: var(--text-dark);
  padding: 12px 16px;
  border-radius: var(--border-radius);
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translateX(15px);
  transition: var(--transition);
}

.floating-btn:hover .floating-btn-text {
  opacity: 1;
  transform: translateX(0);
}

/* Mobile Sticky CTA */
.mobile-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  padding: 16px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  z-index: 999;
  display: none;
  gap: 12px;
  border-top: 1px solid var(--border-color);
}

.mobile-sticky-cta .btn {
  flex: 1;
  padding: 14px 12px;
  font-size: 0.875rem;
  font-weight: 700;
  min-height: 48px;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% { 
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.4);
  }
  70% { 
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(220, 38, 38, 0);
  }
  100% { 
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(220, 38, 38, 0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Content Layout System */
.content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}

.main-content {
  background: var(--white);
  padding: 3rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
}

.main-content h2 {
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.main-content h3 {
  color: var(--text-dark);
  margin-bottom: 1.25rem;
  margin-top: 2rem;
  font-weight: 600;
}

.main-content ul {
  margin-bottom: 2rem;
  padding-left: 0;
  list-style: none;
}

.main-content li {
  padding: 0.5rem 0;
  color: var(--text-light);
  position: relative;
  padding-left: 2rem;
  line-height: 1.6;
}

.main-content li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
  font-size: 1.1rem;
}

.sidebar {
  background: var(--secondary-color);
  padding: 3rem;
  border-radius: var(--border-radius-lg);
  height: fit-content;
  position: sticky;
  top: 120px;
  border: 1px solid var(--border-color);
}

/* Contact Page Styling */
.contact-content {
  padding: 80px 0;
  background: var(--white);
}

.contact-split-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.contact-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-color);
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-details h4 {
  margin-bottom: 0.75rem;
  color: var(--text-dark);
  font-weight: 600;
}

.contact-details p {
  margin-bottom: 0.5rem;
  color: var(--accent-color);
  font-weight: 600;
  font-size: 1.05rem;
}

.contact-details small {
  color: var(--text-light);
  font-size: 0.9rem;
}

.contact-cta-section {
  background: var(--gradient-light);
  padding: 3rem;
  border-radius: var(--border-radius-lg);
  border: 2px solid var(--accent-color);
  height: fit-content;
  position: sticky;
  top: 120px;
}

.contact-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0 0;
}

.benefits-list li {
  padding: 0.75rem 0;
  color: var(--text-dark);
  font-weight: 500;
  position: relative;
  padding-left: 2rem;
}

.benefits-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
  font-size: 1.1rem;
}

/* Page-Specific Hero Variants */
.hero.garage-door-repair {
  background-image: url('/media/WhatsApp Image 2025-07-31 at 14.11.57.jpeg');
}

.hero.garage-door-installation {
  background-image: url('/media/WhatsApp Image 2025-07-31 at 14.11.57 (1).jpeg');
}

.hero.emergency-services {
  background-image: url('/media/WhatsApp Image 2025-07-31 at 14.11.57 (2).jpeg');
}

.hero.coupons {
  background-image: url('/media/WhatsApp Image 2025-07-31 at 14.14.13 (2).jpeg');
}

.hero.reviews {
  background-image: url('/media/WhatsApp Image 2025-07-31 at 14.14.13 (3).jpeg');
}

.hero.about {
  background-image: url('/media/WhatsApp Image 2025-07-31 at 14.14.13 (1).jpeg');
}

.hero.contact {
  background-image: url('/media/WhatsApp Image 2025-07-31 at 14.14.13.jpeg');
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* Mobile-first responsive images and media */
img, video, iframe {
  max-width: 100%;
  height: auto;
}

/* Ensure all containers are mobile-friendly */
.container, .nav-container, .hero-content {
  max-width: 100%;
}

/* Responsive Design - Mobile First */
@media (max-width: 768px) {
  /* Mobile Header */
  .nav-container {
    padding: 0 20px;
    height: 80px;
    width: 100%;
    max-width: 100%;
  }

  .logo-img {
    height: 60px;
  }

  .nav-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow-xl);
    padding: 20px;
    z-index: 999;
    flex-direction: column;
    gap: 1rem;
    max-height: calc(100vh - 80px);
  }

  .nav-menu.active {
    display: flex;
  }

  .mobile-menu-btn {
    display: block;
    min-height: 44px;
    min-width: 44px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }

  /* Mobile Hero */
  .hero {
    background-attachment: scroll;
    min-height: 100vh;
    padding: 100px 20px 60px;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .hero-content {
    padding: 0 20px;
  }

  .hero h1 {
    font-size: clamp(2rem, 8vw, 3rem);
    margin-bottom: 1.5rem;
  }

  .hero h2 {
    font-size: clamp(1.125rem, 4vw, 1.5rem);
  }

  .hero p {
    font-size: clamp(1rem, 4vw, 1.125rem);
    margin-bottom: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  /* Mobile Buttons */
  .btn {
    width: 100%;
    max-width: 320px;
    min-height: 52px;
    font-size: 1rem;
    padding: 16px 24px;
    margin: 0 auto;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }

  .btn-lg {
    min-height: 60px;
    font-size: 1.125rem;
  }

  /* Mobile Sections */
  .section {
    padding: 60px 0;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .container {
    padding: 0 20px;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .section-header {
    margin-bottom: 3rem;
  }

  .section-header h2 {
    font-size: clamp(1.75rem, 6vw, 2.25rem);
  }

  /* Mobile Grids */
  .services-grid,
  .benefits-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 20px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 0 20px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  /* Mobile Cards */
  .service-card,
  .benefit-item,
  .testimonial-card {
    padding: 2rem 1.5rem;
  }

  .trust-item {
    padding: 1.5rem 1rem;
  }

  .trust-icon {
    width: 70px;
    height: 70px;
    font-size: 1.75rem;
  }

  .service-icon,
  .benefit-icon {
    width: 80px;
    height: 80px;
    font-size: 2rem;
  }

  /* Mobile Content Layout */
  .content-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 20px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .main-content,
  .sidebar {
    padding: 2rem 1.5rem;
  }

  .sidebar {
    position: static;
    order: -1;
  }

  /* Mobile Contact */
  .contact-split-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 20px;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact-item {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }

  .contact-cta-section {
    padding: 2rem 1.5rem;
    position: static;
    order: -1;
  }

  .contact-cta-buttons {
    flex-direction: column;
  }

  /* Mobile Footer */
  .footer {
    padding: 60px 0 30px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 20px;
    text-align: center;
  }

  .footer-bottom {
    padding: 1.5rem 20px 0;
  }

  /* Mobile Floating Elements */
  .floating-cta {
    bottom: 90px;
    right: 20px;
  }

  .floating-btn {
    width: 60px;
    height: 60px;
    font-size: 1.25rem;
  }

  .floating-btn-text {
    display: none;
  }

  .mobile-sticky-cta {
    display: flex;
    width: 100%;
    max-width: 100%;
    left: 0;
    right: 0;
    box-sizing: border-box;
  }

  /* Mobile CTAs */
  .cta-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .micro-cta {
    padding: 2rem 1.5rem;
    margin: 2rem 0;
  }

  /* Mobile Dropdown */
  .dropdown-menu {
    position: static;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    transform: none;
    box-shadow: none;
    border: 1px solid var(--border-color);
    margin-top: 0;
    transition: all 0.3s ease;
  }

  .dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    max-height: 500px;
    margin-top: 0.5rem;
  }

  .dropdown-menu::before {
    display: none;
  }
}

@media (max-width: 480px) {
  /* Extra small mobile devices */
  body {
    font-size: 14px;
  }
  
  .hero {
    padding: 80px 15px 50px;
    width: 100%;
    max-width: 100%;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .container,
  .footer-content,
  .contact-split-layout {
    padding: 0 15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  
  /* Ensure text is readable on small screens */
  h1 {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
  }
  
  h2 {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }
  
  /* Better button sizing for small screens */
  .btn {
    padding: 14px 20px;
    font-size: 0.9rem;
  }

  .section {
    padding: 50px 0;
  }

  .footer {
    padding: 50px 0 25px;
  }
}

/* Desktop Specific Enhancements */
@media (min-width: 1024px) {
  .nav-container {
    padding: 0 40px;
  }

  .container {
    padding: 0 40px;
  }

  .services-grid,
  .benefits-grid,
  .testimonials-grid {
    padding: 0 40px;
  }

  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
    padding: 0 40px;
  }

  .footer-content {
    grid-template-columns: repeat(4, 1fr);
    padding: 0 40px;
  }

  .content-grid {
    padding: 0 40px;
  }

  .contact-split-layout {
    grid-template-columns: 2fr 1fr;
    padding: 0 40px;
  }

  .contact-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-item {
    flex-direction: row;
    text-align: left;
  }

  .contact-cta-buttons {
    flex-direction: row;
  }
}

/* Large Screen Optimizations */
@media (min-width: 1440px) {
  .nav-container,
  .container,
  .footer-content,
  .content-grid,
  .contact-split-layout {
    padding-left: 60px;
    padding-right: 60px;
  }

  .services-grid,
  .benefits-grid,
  .testimonials-grid,
  .trust-grid {
    padding-left: 60px;
    padding-right: 60px;
  }

  .hero-content {
    padding: 0 60px;
  }
}

/* Zip Codes Grid Styling */
.zip-codes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.zip-area {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.zip-area:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-color);
}

.zip-area h4 {
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: 1.1rem;
}

.zip-area p {
  color: var(--accent-color);
  font-weight: 600;
  margin: 0;
  font-size: 1rem;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .zip-codes-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
  }
  
  .zip-area {
    padding: 1rem;
  }
}

/* Coupons Section Styling */
.coupons-section {
  padding: 80px 0;
  background: var(--secondary-color);
}

.coupons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}

.coupon-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transition: var(--transition);
  border: 2px solid transparent;
  position: relative;
}

.coupon-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--accent-color);
}

.coupon-card.featured {
  border-color: #D4AF37;
  position: relative;
}

.coupon-card.featured::before {
  content: 'FEATURED';
  position: absolute;
  top: 15px;
  right: -30px;
  background: linear-gradient(135deg, #D4AF37 0%, #B8941F 100%);
  color: var(--white);
  padding: 8px 40px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  transform: rotate(45deg);
  z-index: 10;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.coupon-header {
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-hover) 100%);
  color: var(--white);
  padding: 2rem;
  text-align: center;
  position: relative;
}

.coupon-header h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.discount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  margin: 0;
}

.coupon-content {
  padding: 2rem;
}

.coupon-content p {
  color: var(--text-dark);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.coupon-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.coupon-content li {
  padding: 0.5rem 0;
  color: var(--text-light);
  position: relative;
  padding-left: 2rem;
  line-height: 1.5;
}

.coupon-content li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success-color);
  font-weight: bold;
  font-size: 1.1rem;
}

.coupon-code {
  background: var(--secondary-color);
  border: 2px dashed var(--accent-color);
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
  font-family: 'Courier New', monospace;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

.coupon-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.coupon-btn {
  background: var(--accent-color);
  color: var(--white);
  border: none;
  padding: 1rem 2rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.coupon-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(198, 40, 40, 0.3);
  color: var(--white);
}

.coupon-btn.btn-outline {
  background: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
}

.coupon-btn.btn-outline:hover {
  background: var(--accent-color);
  color: var(--white);
}

.terms {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin: 1rem 0 0 0;
  text-align: center;
}

.offer-expires {
  background: linear-gradient(135deg, #FFA726 0%, #FF9800 100%);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
  margin-top: 1rem;
  display: inline-block;
  width: 100%;
  box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
}

.limited-time {
  background: linear-gradient(135deg, #FF7043 0%, #FF5722 100%);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
  margin-top: 1rem;
  display: inline-block;
  width: 100%;
  box-shadow: 0 4px 15px rgba(255, 87, 34, 0.3);
}

.valid-with-service {
  background: linear-gradient(135deg, #66BB6A 0%, #4CAF50 100%);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
  margin-top: 1rem;
  display: inline-block;
  width: 100%;
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.new-customers-only {
  background: linear-gradient(135deg, #42A5F5 0%, #2196F3 100%);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
  margin-top: 1rem;
  display: inline-block;
  width: 100%;
  box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
}

.service-area-badge {
  background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
  margin-top: 1rem;
  display: inline-block;
  width: 100%;
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

/* Mobile Coupon Styling */
@media (max-width: 768px) {
  .coupons-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 20px;
  }
  
  .coupon-card {
    margin-bottom: 1rem;
  }
  
  .coupon-header {
    padding: 1.5rem;
  }
  
  .coupon-content {
    padding: 1.5rem;
  }
  
  .discount {
    font-size: 2rem;
  }
  
  .coupon-actions {
    gap: 0.75rem;
  }
  
  .coupon-btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
  }
}