/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* CSS Custom Properties */
:root {
  /* Color Palette */
  --navy: #0F172A;
  --gold: #C8A64E;
  --gold-light: #E7C873;
  --ivory: #FAF7F0;
  --ink: #111827;
  --ui: #E5E7EB;
  
  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  
  /* Spacing */
  --section-padding: 5rem 0;
  --container-padding: 0 1.5rem;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  
  /* Transitions */
  --transition-fast: 200ms ease-in-out;
  --transition-normal: 300ms ease-in-out;
}

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

html {
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  line-height: 1.6;
  color: var(--ink);
  background-color: var(--ivory);
  font-size: 16px;
  margin: 0;
  margin-bottom: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  color: var(--ink);
}

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

/* Enhanced Luxury Header */
.header {
  background: linear-gradient(135deg, var(--navy) 0%, rgba(15, 23, 42, 0.98) 100%);
  height: 5rem; /* Increased header size */
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--gold);
  transition: all var(--transition-fast);
}



.header.scrolled {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.header.scrolled .logo img {
  transform: scale(0.92); /* -8% brand size */
}

.header.scrolled .logo-wordmark {
  font-size: clamp(20px, 1.84vw, 26px); /* -8% from clamp(22px,2vw,28px) */
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-link {
  text-decoration: none;
  color: inherit;
  transition: all var(--transition-fast);
}

.logo-link:hover {
  transform: scale(1.02);
}

.logo img {
  height: 72px; /* Adjusted for new header height */
  width: auto;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
  transition: transform var(--transition-fast);
}

.logo:hover img {
  transform: scale(1.05);
}

.logo-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.125rem;
}

.logo-wordmark {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 600;
  color: var(--ivory);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.03em; /* tracking-tight */
  line-height: 1;
}

.logo-tagline {
  font-size: 0.625rem; /* tiny */
  font-weight: 500;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  line-height: 1;
}

.nav {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.nav-links {
  display: flex;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  height: 100%;
}

.nav-links a {
  color: var(--ivory);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: all var(--transition-fast);
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  height: 3rem; /* h-12 */
  padding: 0 0.75rem; /* px-3 */
  line-height: 1;
  vertical-align: middle;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--gold);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition-fast);
  border-radius: 0;
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  width: 100%;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.hamburger-line {
  width: 100%;
  height: 3px;
  background-color: var(--ivory);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Services Dropdown */
.services-dropdown {
  position: relative;
}

.services-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  height: 3rem; /* h-12 */
  padding: 0 0.75rem; /* px-3 */
  line-height: 1;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  appearance: none;
  background: transparent;
  border: 0;
  color: var(--ivory);
  font-weight: 500;
  font-size: 1rem;
  transition: all var(--transition-fast);
  position: relative;
}

.services-dropdown-toggle:hover {
  color: var(--gold);
}

.services-dropdown-toggle::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition-fast);
  border-radius: 0;
}

.services-dropdown-toggle:hover::after {
  width: 100%;
}

.services-dropdown-toggle .caret {
  font-size: 0.8rem;
  transition: transform var(--transition-fast);
  margin-left: 0.25rem; /* ml-1 */
  display: inline-block;
}

.services-dropdown-toggle .caret.rotated {
  transform: rotate(180deg);
}

.services-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--navy);
  border: 2px solid var(--gold);
  border-radius: 0.75rem;
  padding: 1rem 0;
  min-width: 280px;
  box-shadow: var(--shadow-xl);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all var(--transition-fast);
  z-index: 1001;
  list-style: none;
  margin: 0;
}

.services-dropdown-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Hover fallback for desktop */
@media (min-width: 768px) {
  .services-dropdown:hover .services-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  .services-dropdown:hover .caret {
    transform: rotate(180deg);
  }
}

.services-dropdown-menu li {
  list-style: none;
}

.services-dropdown-menu a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--ivory);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: all var(--transition-fast);
  border-left: 3px solid transparent;
}

.services-dropdown-menu a:hover,
.services-dropdown-menu a:focus {
  background: rgba(200, 166, 78, 0.1);
  color: var(--gold);
  border-left-color: var(--gold);
  transform: translateX(5px);
  outline: none;
}

.services-dropdown-toggle:focus {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-radius: 0.25rem;
}

.header-cta {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.header-cta .btn {
  min-height: 60px;
  padding: 1rem 1.5rem;
  font-size: 0.95rem;
  line-height: 1.2;
  white-space: normal !important;
  text-align: center !important;
  word-wrap: break-word !important;
  overflow: visible !important;
  height: auto !important;
  max-width: none !important;
}

/* Clean header CTA button styling */
.header-cta .btn {
  min-height: 60px;
  padding: 1rem 1.5rem;
  font-size: 0.95rem;
  line-height: 1.2;
  white-space: normal;
  text-align: center;
  overflow: visible;
}

/* Phone button specific styling */
.header-cta .btn.btn-phone {
  white-space: nowrap;
  text-align: center;
}

/* BOOK ONLINE button specific styling */
.header-cta .btn.btn-secondary {
  white-space: normal;
  text-align: center;
  min-height: 60px;
  padding: 0.75rem 1.5rem;
  line-height: 1.2;
}

/* Enhanced Luxury Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-fast);
  border: none;
  cursor: pointer;
  font-size: 1rem;
  min-height: 60px;
  position: relative;
  overflow: visible;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: var(--font-body);
  white-space: normal;
}

/* Removed white/gray fade effect */

.btn-primary {
  background: linear-gradient(135deg, var(--navy) 0%, rgba(15, 23, 42, 0.9) 100%);
  color: var(--ivory);
  border: 2px solid var(--navy);
  box-shadow: 0 8px 25px rgba(15, 23, 42, 0.4);
}

.btn-primary:hover {
  background: var(--ivory);
  color: var(--navy);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(15, 23, 42, 0.6);
  border-color: var(--gold);
}

.btn-secondary {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  box-shadow: 0 8px 25px rgba(200, 166, 78, 0.3);
  white-space: normal !important;
  text-align: center !important;
  word-wrap: break-word !important;
  overflow: visible !important;
}

.btn-secondary:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(200, 166, 78, 0.5);
}

.btn-phone {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy);
  border: 2px solid var(--gold);
  box-shadow: 0 8px 25px rgba(200, 166, 78, 0.4);
  font-weight: 700;
}

.btn-phone:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  border-color: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(200, 166, 78, 0.6);
}

/* Additional Button Styles for Services Pages */
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  box-shadow: 0 8px 25px rgba(200, 166, 78, 0.3);
  font-weight: 600;
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(200, 166, 78, 0.5);
}

.btn-lg {
  padding: 1.25rem 3rem;
  font-size: 1.1rem;
  min-height: 70px;
}

.btn-lg:hover {
  transform: translateY(-3px);
}

/* CTA Section Styling */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, rgba(15, 23, 42, 0.95) 100%);
  color: var(--ivory);
  padding: 5rem 0;
  text-align: center;
}

.cta-content h2 {
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
  font-weight: 700;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

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

/* Service Card Button Styling */
.service-card .btn-outline {
  margin-top: 1.5rem;
  width: 100%;
  justify-content: center;
}

/* Luxury Service Cards */
.services {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--ivory) 0%, #f8f9fa 100%);
}

/* Center-align ALL text in service pages */
.services,
.services *,
.luxury-card,
.luxury-card *,
.service-card,
.service-card * {
  text-align: center !important;
}

/* Ensure specific elements are center-aligned */
.services .section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.services .section-header h2 {
  color: var(--navy);
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  text-align: center;
}

.services .section-header h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
}

.services .section-header p {
  color: var(--ink);
  font-size: 1.3rem;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.8;
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.luxury-card {
  background: var(--ivory);
  border-radius: 1.5rem;
  padding: 2.5rem;
  box-shadow: 
    0 20px 40px rgba(15, 23, 42, 0.1),
    0 0 0 1px rgba(200, 166, 78, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(200, 166, 78, 0.1);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.luxury-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 1.5rem 1.5rem 0 0;
}

.luxury-card:hover {
  transform: translateY(-10px);
  box-shadow: 
    0 30px 60px rgba(15, 23, 42, 0.15),
    0 0 0 2px rgba(200, 166, 78, 0.2);
}

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

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 25px rgba(200, 166, 78, 0.3);
}

.service-icon i {
  font-size: 2rem;
  color: var(--navy);
}

.service-card-header h3 {
  color: var(--navy);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
  text-align: center;
}

.service-card-content {
  margin-bottom: 2rem;
  text-align: center;
}

.service-card-content p {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  opacity: 0.8;
  text-align: center;
}

.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
  justify-content: center;
}

.feature-tag {
  background: linear-gradient(135deg, rgba(200, 166, 78, 0.1) 0%, rgba(200, 166, 78, 0.05) 100%);
  color: var(--navy);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(200, 166, 78, 0.2);
  transition: all 0.3s ease;
  text-align: center;
}

.feature-tag:hover {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy);
  transform: translateY(-2px);
}

.service-card-footer {
  text-align: center;
}

/* Responsive Design for Service Cards */
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .services {
    padding: 4rem 0;
  }
  
  .services .section-header h2 {
    font-size: 2.5rem;
  }
  
  .services .section-header p {
    font-size: 1.1rem;
  }
  
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    padding: 0 1rem;
  }
  
  .luxury-card {
    padding: 2rem;
  }
  
  .service-icon {
    width: 70px;
    height: 70px;
  }
  
  .service-icon i {
    font-size: 1.75rem;
  }
}

@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .luxury-card {
    padding: 1.5rem;
  }
  
  .service-features {
    justify-content: center;
  }
}

/* Luxury Feature Cards for Garage Door Repair Page */
.features-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--ivory) 0%, #f8f9fa 100%);
}

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

.features-section .section-header h2 {
  color: var(--navy);
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
}

.features-section .section-header h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
}

.features-section .section-header p {
  color: var(--ink);
  font-size: 1.3rem;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.8;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.luxury-feature-card {
  background: var(--ivory);
  border-radius: 1.5rem;
  padding: 2.5rem;
  box-shadow: 
    0 20px 40px rgba(15, 23, 42, 0.1),
    0 0 0 1px rgba(200, 166, 78, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(200, 166, 78, 0.1);
  position: relative;
  overflow: hidden;
}

.luxury-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 1.5rem 1.5rem 0 0;
}

.luxury-feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 
    0 30px 60px rgba(15, 23, 42, 0.15),
    0 0 0 2px rgba(200, 166, 78, 0.2);
}

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

.feature-card-header .feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 25px rgba(200, 166, 78, 0.3);
}

.feature-card-header .feature-icon i {
  font-size: 2rem;
  color: var(--navy);
}

.feature-card-header h3 {
  color: var(--navy);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
}

.feature-card-content {
  text-align: center;
}

.feature-card-content p {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  opacity: 0.8;
}

.feature-details {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.detail-tag {
  background: linear-gradient(135deg, rgba(200, 166, 78, 0.1) 0%, rgba(200, 166, 78, 0.05) 100%);
  color: var(--navy);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(200, 166, 78, 0.2);
  transition: all 0.3s ease;
}

.detail-tag:hover {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy);
  transform: translateY(-2px);
}

/* Luxury Process Steps */
.process-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--navy) 0%, rgba(15, 23, 42, 0.95) 100%);
  color: var(--ivory);
}

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

.process-section .section-header h2 {
  color: var(--gold);
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
}

.process-section .section-header h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
}

.process-section .section-header p {
  color: var(--ivory);
  font-size: 1.3rem;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.9;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.luxury-process-step {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 1.5rem;
  padding: 2.5rem;
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(200, 166, 78, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(200, 166, 78, 0.1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.luxury-process-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 1.5rem 1.5rem 0 0;
}

.luxury-process-step:hover {
  transform: translateY(-10px);
  box-shadow: 
    0 30px 60px rgba(0, 0, 0, 0.3),
    0 0 0 2px rgba(200, 166, 78, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

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

.process-step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 25px rgba(200, 166, 78, 0.3);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
}

.process-step-header h4 {
  color: var(--gold);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
}

.process-step-content {
  text-align: center;
}

.process-step-content p {
  color: var(--ivory);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.process-details {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.process-tag {
  background: linear-gradient(135deg, rgba(200, 166, 78, 0.2) 0%, rgba(200, 166, 78, 0.1) 100%);
  color: var(--gold);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(200, 166, 78, 0.3);
  transition: all 0.3s ease;
}

.process-tag:hover {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy);
  transform: translateY(-2px);
}

/* Responsive Design for Feature and Process Cards */
@media (max-width: 1200px) {
  .features-grid,
  .process-steps {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .features-section,
  .process-section {
    padding: 4rem 0;
  }
  
  .features-section .section-header h2,
  .process-section .section-header h2 {
    font-size: 2.5rem;
  }
  
  .features-section .section-header p,
  .process-section .section-header p {
    font-size: 1.1rem;
  }
  
  .features-grid,
  .process-steps {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    padding: 0 1rem;
  }
  
  .luxury-feature-card,
  .luxury-process-step {
    padding: 2rem;
  }
  
  .feature-card-header .feature-icon,
  .process-step-number {
    width: 70px;
    height: 70px;
  }
  
  .feature-card-header .feature-icon i {
    font-size: 1.75rem;
  }
  
  .process-step-number {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .features-grid,
  .process-steps {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .luxury-feature-card,
  .luxury-process-step {
    padding: 1.5rem;
  }
  
  .feature-details,
  .process-details {
    justify-content: center;
  }
}

/* Luxury Why Choose Us Section */
.why-choose-us {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--navy) 0%, rgba(15, 23, 42, 0.95) 100%);
  color: var(--ivory);
}
.why-choose-us .section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.why-choose-us .section-header h2 {
  color: var(--gold);
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
}
.why-choose-us .section-header h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
}
.why-choose-us .section-header p {
  color: var(--ivory);
  font-size: 1.3rem;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.9;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.luxury-benefit-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 1.5rem;
  padding: 2.5rem;
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(200, 166, 78, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(200, 166, 78, 0.1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.luxury-benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 1.5rem 1.5rem 0 0;
}

.luxury-benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 
    0 30px 60px rgba(0, 0, 0, 0.3),
    0 0 0 2px rgba(200, 166, 78, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

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

.benefit-card-header .benefit-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 25px rgba(200, 166, 78, 0.3);
}

.benefit-card-header .benefit-icon i {
  font-size: 2rem;
  color: var(--navy);
}

.benefit-card-header h4 {
  color: var(--gold);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
}

.benefit-card-content {
  text-align: center;
}

.benefit-card-content p {
  color: var(--ivory);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.benefit-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.benefit-tag {
  background: linear-gradient(135deg, rgba(200, 166, 78, 0.2) 0%, rgba(200, 166, 78, 0.1) 100%);
  color: var(--gold);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(200, 166, 78, 0.3);
  transition: all 0.3s ease;
}

.benefit-tag:hover {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy);
  transform: translateY(-2px);
}

/* Responsive Design for Why Choose Us Section */
@media (max-width: 1200px) {
  .benefits-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .why-choose-us {
    padding: 4rem 0;
  }
  
  .why-choose-us .section-header h2 {
    font-size: 2.5rem;
  }
  
  .why-choose-us .section-header p {
    font-size: 1.1rem;
  }
  
  .benefits-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    padding: 0 1rem;
  }
  
  .luxury-benefit-card {
    padding: 2rem;
  }
  
  .benefit-card-header .benefit-icon {
    width: 70px;
    height: 70px;
  }
  
  .benefit-card-header .benefit-icon i {
    font-size: 1.75rem;
  }
}

@media (max-width: 480px) {
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .luxury-benefit-card {
    padding: 1.5rem;
  }
  
  .benefit-features {
    justify-content: center;
  }
}

/* Hero Section Center Alignment */
.hero {
  text-align: center;
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, rgba(15, 23, 42, 0.6) 100%);
  color: var(--ivory);
}

.hero:not(.hero-with-bg) {
  background: linear-gradient(135deg, var(--navy) 0%, rgba(15, 23, 42, 0.6) 100%);
}

.hero-with-bg {
  background: transparent;
}

.hero-background-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

.hero-background-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.5) 0%, rgba(15, 23, 42, 0.7) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
  background: linear-gradient(135deg, #ffffff 0%, var(--gold-light) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  letter-spacing: 0.02em;
  font-family: var(--font-heading);
  line-height: 1.2;
  text-shadow: none;
}



.hero h1::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, #ffffff, var(--gold));
  border-radius: 0;
}

.hero p {
  font-size: 1.3rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: #ffffff;
  text-align: center;
}

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

.hero-cta {
  text-align: center;
  margin-top: 2rem;
}

.hero-cta .btn {
  display: inline-block;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-align: center;
}

.hero-cta .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(200, 166, 78, 0.3);
}

/* Service Hero Styles */
.service-hero {
  text-align: center;
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, rgba(15, 23, 42, 0.6) 100%);
  color: var(--ivory);
}

.service-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.service-hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
  background: linear-gradient(135deg, #ffffff 0%, var(--gold-light) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  letter-spacing: 0.02em;
  font-family: var(--font-heading);
  line-height: 1.2;
  text-shadow: none;
}



.service-hero-content h1::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, #ffffff, var(--gold));
  border-radius: 0;
}

.service-hero-content p {
  font-size: 1.3rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: #ffffff;
  text-align: center;
}

.service-hero-cta {
  text-align: center;
  margin-top: 2rem;
}

.service-hero-cta .btn {
  display: inline-block;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-align: center;
  margin: 0 0.5rem;
}

.service-hero-cta .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(200, 166, 78, 0.3);
}

/* Sections */
.section {
  padding: var(--section-padding);
  background: white;
  position: relative;
}

.section:nth-child(even) {
  background: var(--ivory);
}

.section:nth-child(odd) {
  background: white;
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  padding: 0 1rem;
}

.section-title h2 {
  color: var(--navy);
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
}

.section-title p {
  color: var(--ink);
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.8;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
}

/* Enhanced Cards */
.card {
  background: white;
  border-radius: 1.5rem;
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  border: 1px solid var(--ui);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--gold);
}

.card h3 {
  color: var(--navy);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.card p {
  color: var(--ink);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

/* Service Grid */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
  justify-items: center;
}

/* Contact Form */
.contact-form {
  background: white;
  padding: 3.5rem;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-lg);
  max-width: 700px;
  margin: 0 auto;
  border: 2px solid var(--ui);
}

.form-group {
  margin-bottom: 2rem;
}

.form-label {
  display: block;
  margin-bottom: 0.75rem;
  font-weight: 600;
  color: var(--navy);
  font-size: 1.1rem;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--ui);
  border-radius: 0.75rem;
  font-size: 1rem;
  transition: all var(--transition-fast);
  font-family: var(--font-body);
  background: var(--ivory);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 166, 78, 0.1);
  background: white;
}

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

/* Floating CTA Button */
.floating-cta-button {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
}

.floating-cta-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  padding: 1rem 1.5rem;
  border-radius: 2rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 8px 25px rgba(200, 166, 78, 0.4);
  transition: all var(--transition-fast);
  border: 2px solid var(--gold);
}

.floating-cta-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(200, 166, 78, 0.6);
  background: var(--ivory);
  color: var(--navy);
}

.floating-cta-text {
  display: none;
}

@media (min-width: 768px) {
  .floating-cta-text {
    display: inline;
  }
}

/* Enhanced Footer */
.footer {
  background: linear-gradient(135deg, var(--navy) 0%, rgba(15, 23, 42, 0.95) 100%);
  color: var(--ivory);
  padding: 4rem 0 2rem;
  border-top: 3px solid var(--gold);
  width: 100%;
  margin: 0;
  margin-bottom: 0;
  margin-top: auto;
  position: relative;
  left: 0;
  right: 0;
  bottom: 0;
}

/* Footer Full Width Fix */
.footer {
  min-width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  box-sizing: border-box;
}

.footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Ensure footer sections are properly sized */
.footer-section {
  min-width: 0;
  flex: 1;
}

/* Fix grid layout for better responsiveness */
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
  width: 100%;
}

.footer-section h3 {
  color: var(--ivory);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  position: relative;
}

.footer-section h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
}

.footer-section p,
.footer-section a {
  color: var(--ui);
  text-decoration: none;
  margin-bottom: 0.75rem;
  display: block;
  transition: color var(--transition-fast);
  line-height: 1.6;
}

.footer-section a:hover {
  color: var(--gold);
  transform: translateX(5px);
}

.footer-bottom {
  border-top: 2px solid rgba(200, 166, 78, 0.3);
  padding-top: 2rem;
  text-align: center;
  color: white !important;
  margin-bottom: 0;
}

.footer-bottom p {
  color: white !important;
}

.footer-bottom * {
  color: white !important;
}

/* Ensure copyright text is white */
.footer-bottom p,
.footer-bottom span,
.footer-bottom div {
  color: white !important;
}

/* Target the specific copyright text */
.footer-bottom p:first-child {
  color: white !important;
}

/* Override any inherited colors */
.footer-bottom,
.footer-bottom * {
  color: white !important;
}

/* Footer Extension */
.footer-extension {
  background: linear-gradient(135deg, var(--navy) 0%, rgba(15, 23, 42, 0.95) 100%);
  height: 2rem;
  width: 100%;
  margin: 0;
  padding: 0;
}

/* Service Areas */
.service-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
}

.service-area-tag {
  background: #d69e2e;
  color: #000000;
  padding: 0.5rem 1rem;
  border-radius: 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid #ecc94b;
  transition: all var(--transition-fast);
}

.service-area-tag:hover {
  background: #b8860b;
  color: #000000;
  transform: translateY(-2px);
  border-color: #ecc94b;
}

/* Reviews */
.review {
  background: white;
  padding: 2.5rem;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-md);
  margin-bottom: 2rem;
  border-left: 5px solid var(--gold);
  transition: all var(--transition-fast);
}

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

.review-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.review-stars {
  color: var(--gold);
  font-size: 1.5rem;
}

.review-author {
  font-weight: 600;
  color: var(--navy);
  font-size: 1.1rem;
}

.review-date {
  color: var(--ink);
  font-size: 0.9rem;
}

/* Section Header Centering */
.section-header.text-center {
  text-align: center !important;
}

.section-header.text-center h2 {
  text-align: center !important;
}

.section-header.text-center p {
  text-align: center !important;
}

/* Section Separator */
.section-separator {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 166, 78, 0.3), transparent);
  margin: 3rem 0;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}

/* Enhanced Location Cards Styling */
.location-card {
  background: none !important;
  background-color: transparent !important;
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(214, 158, 46, 0.12);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.location-card * {
  background: transparent !important;
  background-color: transparent !important;
}

.location-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.location-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

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

.location-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--white);
  font-size: 1.2rem;
  box-shadow: 0 8px 25px rgba(214, 158, 46, 0.4);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.location-icon .icon-primary {
  position: absolute;
  font-size: 1.1rem;
  opacity: 1;
  transition: all 0.3s ease;
}

.location-icon .icon-secondary {
  position: absolute;
  font-size: 0.9rem;
  opacity: 0.8;
  transition: all 0.3s ease;
}

/* Address card - Map marker + Home */
.location-card:nth-child(1) .icon-primary {
  transform: translateY(-4px);
}

.location-card:nth-child(1) .icon-secondary {
  transform: translateY(4px);
}

/* Service Hours card - Clock + Tools */
.location-card:nth-child(2) .icon-primary {
  transform: translateX(-4px);
}

.location-card:nth-child(2) .icon-secondary {
  transform: translateX(4px);
}

/* Contact card - Phone + Envelope */
.location-card:nth-child(3) .icon-primary {
  transform: translateY(-3px) translateX(-2px);
}

.location-card:nth-child(3) .icon-secondary {
  transform: translateY(3px) translateX(2px);
}

/* Hover effects for dual icons */
.location-card:hover .icon-primary {
  transform: scale(1.1) translateY(-8px);
  opacity: 1;
}

.location-card:hover .icon-secondary {
  transform: scale(1.1) translateY(8px);
  opacity: 1;
}

.location-card:nth-child(2):hover .icon-primary {
  transform: scale(1.1) translateX(-8px);
}

.location-card:nth-child(2):hover .icon-secondary {
  transform: scale(1.1) translateX(8px);
}

.location-card:nth-child(3):hover .icon-primary {
  transform: scale(1.1) translateY(-6px) translateX(-4px);
}

.location-card:nth-child(3):hover .icon-secondary {
  transform: scale(1.1) translateY(6px) translateX(4px);
}

.location-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 1.5rem;
  position: relative;
}

.location-card h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 1px;
}

.location-details {
  text-align: center;
}

.address-line {
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.emergency-service {
  color: #dc2626;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 1rem;
  text-align: center;
  background: rgba(220, 38, 38, 0.1);
  padding: 0.5rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(220, 38, 38, 0.2);
}

.hours-grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(214, 158, 46, 0.1);
}

.hours-row:last-child {
  border-bottom: none;
}

.days {
  color: var(--navy);
  font-weight: 500;
  font-size: 0.9rem;
}

.time {
  color: var(--navy);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gold);
}

.contact-phone,
.contact-email {
  margin-bottom: 0.75rem;
}

.contact-phone a {
  color: var(--navy);
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-phone a:hover {
  color: var(--gold);
}

.contact-email a {
  color: var(--navy);
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-email a:hover {
  color: var(--gold);
}

/* Emergency CTA Section - LUXURY AF */
.emergency-cta {
  text-align: center;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.98) 100%);
  color: var(--ivory);
  border: 2px solid var(--gold);
  box-shadow: 
    0 20px 40px rgba(200, 166, 78, 0.3),
    0 0 0 1px rgba(200, 166, 78, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  padding: 4rem 3rem;
  border-radius: 2rem;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

/* Luxury background pattern */
.emergency-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(200, 166, 78, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(200, 166, 78, 0.08) 0%, transparent 50%),
    linear-gradient(45deg, transparent 30%, rgba(200, 166, 78, 0.03) 30%, rgba(200, 166, 78, 0.03) 70%, transparent 70%);
  pointer-events: none;
}

/* Override card background for emergency CTA */
.emergency-cta.card {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.98) 100%) !important;
  box-shadow: 
    0 20px 40px rgba(200, 166, 78, 0.3),
    0 0 0 1px rgba(200, 166, 78, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
  border: 2px solid var(--gold) !important;
  border-radius: 2rem !important;
}

/* Remove the default card top border */
.emergency-cta.card::before {
  display: none !important;
}

/* Luxury heading styling */
.emergency-cta h2 {
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
}

/* Luxury text styling */
.emergency-cta p {
  color: var(--ivory);
  opacity: 0.95;
  margin-bottom: 2.5rem;
  font-size: 1.2rem;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

/* Luxury button container */
.emergency-cta-button {
  margin-top: 2rem;
  position: relative;
  z-index: 2;
}

/* Luxury button styling */
.emergency-cta .btn-phone {
  font-size: 1.3rem;
  padding: 1.25rem 3rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border: 2px solid var(--gold);
  box-shadow: 
    0 8px 25px rgba(200, 166, 78, 0.4),
    0 0 0 1px rgba(200, 166, 78, 0.2);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.emergency-cta .btn-phone:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  transform: translateY(-5px) scale(1.05);
  box-shadow: 
    0 15px 35px rgba(200, 166, 78, 0.6),
    0 0 0 2px rgba(200, 166, 78, 0.3);
}

/* Luxury responsive design */
@media (max-width: 768px) {
  .emergency-cta {
    padding: 3rem 2rem;
    border-radius: 1.5rem;
  }
  
  .emergency-cta h2 {
    font-size: 2rem;
  }
  
  .emergency-cta p {
    font-size: 1.1rem;
  }
  
  .emergency-cta .btn-phone {
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
  }
}



.emergency-cta-button {
  margin-top: 2rem;
}

.emergency-cta .btn-phone {
  font-size: 1.25rem;
  padding: 1rem 2rem;
}

/* Floating Emergency CTA Button */
.floating-emergency-cta {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
  animation: float 3s ease-in-out infinite;
}

.floating-emergency-cta .btn {
  min-height: 70px;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 50px;
  box-shadow: 0 8px 25px rgba(200, 166, 78, 0.4);
  transition: all var(--transition-fast);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.floating-emergency-cta .btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 35px rgba(200, 166, 78, 0.6);
}

.floating-emergency-cta .btn i {
  font-size: 1.2rem;
}

/* Floating animation */
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .floating-emergency-cta {
    bottom: 1rem;
    right: 1rem;
  }
  
  .floating-emergency-cta .btn {
    min-height: 60px;
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .floating-emergency-cta .btn {
    min-height: 55px;
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .header {
    padding: 1rem 0;
    height: auto;
    min-height: 5rem;
  }
  
  .header-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
  }
  
  .logo img {
    height: 60px; /* Smaller for mobile */
  }
  
  .logo-text {
    font-size: 1.2rem;
  }
  
  /* Show mobile menu button */
  .mobile-menu-btn {
    display: flex;
  }
  
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--navy) 0%, rgba(15, 23, 42, 0.98) 100%);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    flex-direction: column;
    gap: 0;
    padding: 2rem 0;
    border-top: 2px solid var(--gold);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  }
  
  .nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .nav-links {
    flex-direction: column;
    text-align: center;
    gap: 0;
    height: auto;
    width: 100%;
  }
  
  .nav-links a,
  .services-dropdown-toggle {
    height: auto;
    padding: 1rem 1.5rem;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(200, 166, 78, 0.1);
  }
  
  .nav-links li:last-child a {
    border-bottom: none;
  }
  
  /* Mobile Services Dropdown */
  .services-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid var(--gold);
    border-radius: 8px;
    box-shadow: none;
    padding: 1rem 0;
    margin-top: 1rem;
    min-width: auto;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  
  .services-dropdown-menu a {
    padding: 0.75rem 1rem;
    color: var(--ivory);
    border-left: none;
    text-align: center;
    display: block;
    border-bottom: 1px solid rgba(200, 166, 78, 0.2);
  }
  
  .services-dropdown-menu a:last-child {
    border-bottom: none;
  }
  
  .services-dropdown-menu a:hover,
  .services-dropdown-menu a:focus {
    background: rgba(200, 166, 78, 0.1);
    color: var(--gold);
    transform: none;
  }
  
  /* Mobile dropdown toggle */
  .services-dropdown.active .services-dropdown-menu {
    display: block;
  }
  
  .services-dropdown:not(.active) .services-dropdown-menu {
    display: none;
  }
  
  .header-cta {
    flex-direction: column;
    width: 100%;
    gap: 1rem;
    margin-top: 1rem;
  }
  
  .header-cta .btn {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }
  
  .hero {
    padding: 6rem 0 3rem;
    margin-top: 5rem;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .service-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .contact-form {
    padding: 2.5rem;
    margin: 0 1rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  
  .footer-section h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus styles */
.btn:focus,
.form-input:focus,
.form-textarea:focus,
.form-select:focus,
.nav-links a:focus {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

/* Print styles */
@media print {
  .header,
  .footer,
  .btn {
    display: none;
  }
  
  body {
    color: black;
    background: white;
  }
}

/* Problems & Solutions Section */
.problems-solutions {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--ivory) 0%, #f8f9fa 100%);
}
.problems-solutions .section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.problems-solutions .section-header h2 {
  color: var(--navy);
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
}
.problems-solutions .section-header h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
}
.problems-solutions .section-header p {
  color: var(--ink);
  font-size: 1.3rem;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.8;
}
.problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
}
.problem-card {
  background: var(--ivory);
  border-radius: 1.5rem;
  padding: 2.5rem;
  box-shadow: 
    0 20px 40px rgba(15, 23, 42, 0.1),
    0 0 0 1px rgba(200, 166, 78, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(200, 166, 78, 0.1);
  position: relative;
  overflow: hidden;
}
.problem-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 1.5rem 1.5rem 0 0;
}
.problem-card:hover {
  transform: translateY(-10px);
  box-shadow: 
    0 30px 60px rgba(15, 23, 42, 0.15),
    0 0 0 2px rgba(200, 166, 78, 0.2);
}
.problem-card-header {
  text-align: center;
  margin-bottom: 2rem;
}
.problem-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 25px rgba(200, 166, 78, 0.3);
}
.problem-icon i {
  font-size: 2rem;
  color: var(--navy);
}
.problem-card-header h3 {
  color: var(--navy);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
}
.problem-card-content {
  margin-bottom: 2rem;
}
.problem-card-content p {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  opacity: 0.8;
}
.problem-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}
.problem-tag {
  background: linear-gradient(135deg, rgba(200, 166, 78, 0.1) 0%, rgba(200, 166, 78, 0.05) 100%);
  color: var(--navy);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(200, 166, 78, 0.2);
  transition: all 0.3s ease;
}
.problem-tag:hover {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy);
  transform: translateY(-2px);
}
.problem-card-footer {
  text-align: center;
}

/* Why Choose Repairs Section */
.why-choose-repairs {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--navy) 0%, rgba(15, 23, 42, 0.95) 100%);
  color: var(--ivory);
}
.why-choose-repairs .section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.why-choose-repairs .section-header h2 {
  color: var(--gold);
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
}
.why-choose-repairs .section-header h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
}
.why-choose-repairs .section-header p {
  color: var(--ivory);
  font-size: 1.3rem;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.9;
}

/* Emergency CTA Section */
.emergency-cta {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  color: white;
  padding: 3rem 0;
  margin: 2rem 0;
}

.emergency-cta-content {
  display: flex;
  align-items: center;
  gap: 2rem;
  text-align: center;
}

.emergency-icon {
  flex-shrink: 0;
}

.emergency-icon i {
  font-size: 3rem;
  color: #fbbf24;
  animation: pulse 2s infinite;
}

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

.emergency-text {
  flex: 1;
}

.emergency-text h3 {
  color: white;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

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

.emergency-cta-buttons {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.btn-emergency {
  background: #fbbf24;
  color: #1f2937;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-emergency:hover {
  background: #f59e0b;
  transform: translateY(-2px);
}

/* Service Areas Section */
.service-areas-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--ivory) 0%, #f3f4f6 100%);
}

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

.service-area-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(200, 166, 78, 0.1);
}

.service-area-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--gold);
}

.service-area-card h4 {
  color: var(--navy);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.service-area-card p {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
  opacity: 0.8;
}

/* Responsive Design for New Sections */
@media (max-width: 1200px) {
  .problems-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
  }
  
  .emergency-cta-content {
    flex-direction: column;
    text-align: center;
  }
  
  .emergency-cta-buttons {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .problems-solutions,
  .why-choose-repairs {
    padding: 4rem 0;
  }
  
  .emergency-cta {
    padding: 2rem 0;
    margin: 1rem 0;
  }
  
  .emergency-text h3 {
    font-size: 1.5rem;
  }
  
  .emergency-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .service-areas-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
  }
  
  .problems-solutions .section-header h2,
  .why-choose-repairs .section-header h2 {
    font-size: 2.5rem;
  }
  .problems-solutions .section-header p,
  .why-choose-repairs .section-header p {
    font-size: 1.1rem;
  }
  .problems-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    padding: 0 1rem;
  }
  .problem-card {
    padding: 2rem;
  }
  .problem-icon {
    width: 70px;
    height: 70px;
  }
  .problem-icon i {
    font-size: 1.75rem;
  }
}

@media (max-width: 480px) {
  .problems-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .emergency-cta-content {
    gap: 1rem;
  }
  
  .emergency-icon i {
    font-size: 2.5rem;
  }
  
  .service-areas-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .problem-card {
    padding: 1.5rem;
  }
  .problem-features {
    justify-content: center;
  }
}

/* Features Section Center Alignment */
.features-section {
  padding: 6rem 0;
  background: var(--ivory);
}

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

.features-section .section-header h2 {
  color: var(--navy);
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
}

.features-section .section-header h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
}

.features-section .section-header p {
  color: var(--ink);
  font-size: 1.3rem;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.8;
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.luxury-feature-card {
  background: white;
  padding: 2.5rem;
  border-radius: 1.5rem;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(200, 166, 78, 0.1);
}

.luxury-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-card-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 8px 25px rgba(200, 166, 78, 0.3);
}

.feature-icon i {
  font-size: 1.8rem;
  color: var(--navy);
}

.feature-card-header h3 {
  color: var(--navy);
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0;
  text-align: center;
}

.luxury-feature-card p {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  opacity: 0.8;
  text-align: center;
}

/* Process Section Center Alignment */
.process-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--ivory) 0%, #f8f9fa 100%);
}

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

.process-section .section-header h2 {
  color: var(--navy);
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
}

.process-section .section-header h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
}

.process-section .section-header p {
  color: var(--ink);
  font-size: 1.3rem;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.8;
  text-align: center;
}

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

.luxury-process-step {
  background: white;
  padding: 2rem;
  border-radius: 1.5rem;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(200, 166, 78, 0.1);
}

.luxury-process-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.process-step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
}

.luxury-process-step h3 {
  color: var(--navy);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}

.luxury-process-step p {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  opacity: 0.8;
  text-align: center;
}

/* Service Areas Section Center Alignment */
.service-areas-section {
  padding: 6rem 0;
  background: var(--ivory);
}

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

.service-areas-section .section-header h2 {
  color: var(--navy);
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
}

.service-areas-section .section-header p {
  color: var(--ink);
  font-size: 1.3rem;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.8;
  text-align: center;
}

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

.service-area-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(200, 166, 78, 0.1);
}

.service-area-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-area-card h3 {
  color: var(--navy);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}

.service-area-card p {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  opacity: 0.8;
  text-align: center;
}

/* Emergency CTA Section Center Alignment */
.emergency-cta {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  color: white;
  padding: 3rem 0;
  margin: 2rem 0;
  text-align: center;
}

.emergency-cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.emergency-icon {
  text-align: center;
  margin-bottom: 1rem;
}

.emergency-icon i {
  font-size: 3rem;
  color: #fbbf24;
  animation: pulse 2s infinite;
}

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

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

.emergency-text h2 {
  color: white;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}

.emergency-text p {
  color: white;
  font-size: 1.2rem;
  line-height: 1.6;
  margin: 0;
  opacity: 0.9;
  text-align: center;
}

.emergency-cta-buttons {
  text-align: center;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-emergency {
  background: #fbbf24;
  color: #dc2626;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-align: center;
  display: inline-block;
}

.btn-emergency:hover {
  background: #f59e0b;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(251, 191, 36, 0.3);
}

/* Benefits Section Center Alignment (using emergency-cta styling) */
.benefits-section {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy);
  padding: 3rem 0;
  margin: 2rem 0;
  text-align: center;
}

.benefits-section .emergency-cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.benefits-section .emergency-text h2 {
  color: var(--navy);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}

.benefits-section .emergency-text p {
  color: var(--navy);
  font-size: 1.2rem;
  line-height: 1.6;
  margin: 0;
  opacity: 0.9;
  text-align: center;
}

/* Safety Warning Section Center Alignment */
.safety-warning {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: white;
  padding: 3rem 0;
  margin: 2rem 0;
  text-align: center;
}

.safety-warning .emergency-cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.safety-warning .emergency-text h2 {
  color: white;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}

.safety-warning .emergency-text p {
  color: white;
  font-size: 1.2rem;
  line-height: 1.6;
  margin: 0;
  opacity: 0.9;
  text-align: center;
}

/* Final CTA Section Center Alignment */
.final-cta {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--navy) 0%, rgba(15, 23, 42, 0.95) 100%);
  text-align: center;
}

.final-cta .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.final-cta .section-header h2 {
  color: var(--ivory);
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
}

.final-cta .section-header p {
  color: var(--ivory);
  font-size: 1.3rem;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.9;
  text-align: center;
}

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

/* Universal Center Alignment for All Service Page Elements */
.services-page *,
.gate-repair-page *,
.maintenance-page *,
.emergency-page *,
.spring-page *,
.panel-page *,
.opener-page * {
  text-align: center !important;
}

/* Ensure buttons maintain center alignment */
.btn {
  text-align: center;
  display: inline-block;
}

.btn-outline,
.btn-primary,
.btn-phone,
.btn-emergency {
  text-align: center;
}

/* Ensure all headings are center-aligned */
h1, h2, h3, h4, h5, h6 {
  text-align: center;
}

/* Ensure all paragraphs are center-aligned */
p {
  text-align: center;
}

/* Ensure all list items are center-aligned */
li {
  text-align: center;
}

/* Ensure all spans and other text elements are center-aligned */
span, div, section {
  text-align: center;
}

/* Responsive Center Alignment */
@media (max-width: 768px) {
  /* Ensure center alignment on mobile devices */
  .services,
  .services *,
  .luxury-card,
  .luxury-card *,
  .service-card,
  .service-card *,
  .hero,
  .hero *,
  .features-section,
  .features-section *,
  .process-section,
  .process-section *,
  .service-areas-section,
  .service-areas-section *,
  .emergency-cta,
  .emergency-cta *,
  .benefits-section,
  .benefits-section *,
  .safety-warning,
  .safety-warning *,
  .final-cta,
  .final-cta * {
    text-align: center !important;
  }
  
  /* Ensure buttons stack properly on mobile */
  .hero-buttons,
  .emergency-cta-buttons,
  .final-cta .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  /* Ensure feature tags wrap properly */
  .service-features {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  /* Ensure process steps stack properly */
  .process-steps {
    grid-template-columns: 1fr;
  }
  
  /* Ensure service areas grid stacks properly */
  .service-areas-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  /* Extra small device optimizations */
  .hero h1 {
    font-size: 2rem;
    text-align: center;
  }
  
  .hero p {
    font-size: 1.1rem;
    text-align: center;
  }
  
  .section-header h2 {
    font-size: 2rem;
    text-align: center;
  }
  
  .section-header p {
    font-size: 1.1rem;
    text-align: center;
  }
  
  .luxury-card {
    padding: 1.5rem;
    text-align: center;
  }
  
  .service-card-header h3 {
    font-size: 1.3rem;
    text-align: center;
  }
  
  .luxury-feature-card h3 {
    font-size: 1.2rem;
    text-align: center;
  }
  
  .luxury-process-step h3 {
    font-size: 1.2rem;
    text-align: center;
  }
}

/* Ensure center alignment for all text elements across all screen sizes */
.services-page,
.gate-repair-page,
.maintenance-page,
.emergency-page,
.spring-page,
.panel-page,
.opener-page {
  text-align: center;
}

.services-page *,
.gate-repair-page *,
.maintenance-page *,
.emergency-page *,
.spring-page *,
.panel-page *,
.opener-page * {
  text-align: center !important;
}

/* Override any conflicting text-align properties */
.services-page h1,
.services-page h2,
.services-page h3,
.services-page h4,
.services-page h5,
.services-page h6,
.services-page p,
.services-page li,
.services-page span,
.services-page div,
.gate-repair-page h1,
.gate-repair-page h2,
.gate-repair-page h3,
.gate-repair-page h4,
.gate-repair-page h5,
.gate-repair-page h6,
.gate-repair-page p,
.gate-repair-page li,
.gate-repair-page span,
.gate-repair-page div,
.maintenance-page h1,
.maintenance-page h2,
.maintenance-page h3,
.maintenance-page h4,
.maintenance-page h5,
.maintenance-page h6,
.maintenance-page p,
.maintenance-page li,
.maintenance-page span,
.maintenance-page div,
.emergency-page h1,
.emergency-page h2,
.emergency-page h3,
.emergency-page h4,
.emergency-page h5,
.emergency-page h6,
.emergency-page p,
.emergency-page li,
.emergency-page span,
.emergency-page div,
.spring-page h1,
.spring-page h2,
.spring-page h3,
.spring-page h4,
.spring-page h5,
.spring-page h6,
.spring-page p,
.spring-page li,
.spring-page span,
.spring-page div,
.panel-page h1,
.panel-page h2,
.panel-page h3,
.panel-page h4,
.panel-page h5,
.panel-page h6,
.panel-page p,
.panel-page li,
.panel-page span,
.panel-page div,
.opener-page h1,
.opener-page h2,
.opener-page h3,
.opener-page h4,
.opener-page h5,
.opener-page h6,
.opener-page p,
.opener-page li,
.opener-page span,
.opener-page div {
  text-align: center !important;
}