/* ============================================
   Wash NWA - Modern Premium Stylesheet
   Version: 2.0
   Updated: March 2024
   ============================================ */

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

/* CSS Variables */
:root {
  --primary: #1e40af;
  --primary-light: #3b82f6;
  --primary-dark: #1e3a8a;
  --primary-gradient: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #0ea5e9 100%);
  --accent: #0ea5e9;
  --accent-light: #38bdf8;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-600: #475569;
  --gray-800: #1e293b;
  --gray-900: #0f172a;

  --font-primary: 'Plus Jakarta Sans', sans-serif;
  --font-secondary: 'Inter', sans-serif;

  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-glow: 0 0 40px rgba(59, 130, 246, 0.3);
  --shadow-glow-accent: 0 0 40px rgba(14, 165, 233, 0.3);

  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-secondary);
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-800);
  background-color: var(--white);
  overflow-x: hidden;
}

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

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

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

ul {
  list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  line-height: 1.2;
  color: var(--gray-900);
  letter-spacing: -0.02em;
}

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

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

h3 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  margin-bottom: 0.75rem;
}

p {
  margin-bottom: 1rem;
  color: var(--gray-600);
}

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ============================================
   Buttons - Modern Glass Style
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: var(--transition);
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--primary-gradient);
  color: var(--white);
  box-shadow: var(--shadow-md), 0 4px 20px rgba(30, 64, 175, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg), 0 8px 30px rgba(30, 64, 175, 0.4);
  color: var(--white);
}

.btn-secondary {
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--gray-200);
  box-shadow: var(--shadow);
}

.btn-secondary:hover {
  border-color: var(--primary);
  background: var(--gray-50);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--primary);
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  color: var(--white);
  box-shadow: var(--shadow-md), 0 4px 20px rgba(14, 165, 233, 0.3);
}

.btn-accent:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg), 0 8px 30px rgba(14, 165, 233, 0.4);
  color: var(--white);
}

.btn-sms {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: var(--white);
  box-shadow: var(--shadow-md), 0 4px 20px rgba(34, 197, 94, 0.3);
}

.btn-sms:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg), 0 8px 30px rgba(34, 197, 94, 0.4);
  color: var(--white);
}

/* ============================================
   Header & Navigation - Glassmorphism
   ============================================ */
.header {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

.logo-text {
  font-family: var(--font-primary);
  font-size: 1.75rem;
  font-weight: 800;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-text span {
  color: var(--accent);
  -webkit-text-fill-color: var(--accent);
}

/* Desktop Navigation */
.nav {
  display: none;
}

.nav ul {
  display: flex;
  gap: 0.5rem;
}

.nav a {
  color: var(--gray-600);
  font-family: var(--font-primary);
  font-weight: 500;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius);
  position: relative;
  transition: var(--transition-fast);
}

.nav a:hover {
  color: var(--primary);
  background: var(--gray-50);
}

.nav a.active {
  color: var(--primary);
  background: rgba(59, 130, 246, 0.1);
}

.header-cta {
  display: none;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius);
  transition: var(--transition-fast);
}

.mobile-menu-btn:hover {
  background: var(--gray-100);
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-800);
  border-radius: 2px;
  transition: var(--transition);
}

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

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

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

/* Mobile Navigation */
.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  padding: 1.5rem;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.mobile-nav.active {
  display: block;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-nav a {
  display: block;
  padding: 1rem 1.25rem;
  color: var(--gray-800);
  font-family: var(--font-primary);
  font-weight: 500;
  border-radius: var(--radius);
  transition: var(--transition-fast);
}

.mobile-nav a:hover,
.mobile-nav a.active {
  background: var(--gray-50);
  color: var(--primary);
}

.mobile-nav .btn {
  width: 100%;
  margin-top: 1rem;
}

/* ============================================
   Hero Section - Animated & Bold
   ============================================ */
.hero {
  background: var(--gray-900);
  color: var(--white);
  padding: 10rem 1.5rem 6rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(14, 165, 233, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 100%, rgba(30, 64, 175, 0.2) 0%, transparent 50%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  animation: float 30s linear infinite;
  pointer-events: none;
}

@keyframes float {
  0% { transform: translate(0, 0) rotate(0deg); }
  100% { transform: translate(-50px, -50px) rotate(10deg); }
}

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

.hero h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2.5rem;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 0.8s ease 0.1s backwards;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 3rem;
  animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-areas {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  animation: fadeInUp 0.8s ease 0.3s backwards;
}

.hero-areas strong {
  color: rgba(255, 255, 255, 0.9);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   Section Styles
   ============================================ */
.section {
  padding: 6rem 1.5rem;
}

.section-alt {
  background: var(--gray-50);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-header p {
  font-size: 1.15rem;
  color: var(--gray-600);
}

.section-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(59, 130, 246, 0.1);
  color: var(--primary);
  font-family: var(--font-primary);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 50px;
  margin-bottom: 1rem;
}

/* ============================================
   Services Grid - Modern Cards
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-gradient);
  transform: scaleX(0);
  transition: var(--transition);
}

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

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

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--gray-50) 0%, var(--gray-100) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2.25rem;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--primary-gradient);
  transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
  color: var(--gray-900);
  margin-bottom: 0.75rem;
}

.service-card p {
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

/* ============================================
   Before/After Gallery
   ============================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.gallery-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  background: var(--gray-200);
}

.comparison-image {
  position: relative;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  font-size: 0.85rem;
}

.comparison-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comparison-label {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--gray-900);
  color: var(--white);
  padding: 0.35rem 0.85rem;
  font-family: var(--font-primary);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.comparison-label.after {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

.gallery-item-content {
  padding: 1.5rem;
}

.gallery-item-content h3 {
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}

.gallery-item-content p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

.gallery-location {
  color: var(--primary);
  font-weight: 600;
}

.gallery-full-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

/* ============================================
   Why Choose Us - Feature Cards
   ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.feature {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.feature:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-glow);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: var(--primary-gradient);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.75rem;
  color: var(--white);
  box-shadow: var(--shadow-md), 0 4px 20px rgba(30, 64, 175, 0.3);
}

.feature h3 {
  margin-bottom: 0.5rem;
}

.feature p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* ============================================
   Testimonials - Modern Cards
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.testimonial {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
  position: relative;
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 5rem;
  font-family: Georgia, serif;
  color: var(--gray-100);
  line-height: 1;
}

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

.testimonial-stars {
  color: #fbbf24;
  font-size: 1.15rem;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.testimonial-text {
  font-size: 1.05rem;
  font-style: italic;
  margin-bottom: 1.5rem;
  color: var(--gray-700);
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 1.25rem;
}

.testimonial-info strong {
  display: block;
  color: var(--gray-900);
  font-family: var(--font-primary);
}

.testimonial-info span {
  font-size: 0.875rem;
  color: var(--gray-500);
}

/* ============================================
   Service Areas - Interactive Cards
   ============================================ */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.area-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  text-decoration: none;
}

.area-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
  background: linear-gradient(135deg, var(--white) 0%, rgba(59, 130, 246, 0.05) 100%);
}

.area-card h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: var(--gray-900);
}

.area-card p {
  font-size: 0.8rem;
  margin-bottom: 0;
  color: var(--gray-500);
}

/* Service Areas Page */
.area-section {
  padding: 3rem 0;
  border-bottom: 1px solid var(--gray-100);
}

.area-section:last-child {
  border-bottom: none;
}

.area-content {
  max-width: 800px;
}

.area-content h2 {
  color: var(--primary);
}

.area-content ul {
  margin: 1.5rem 0;
  padding-left: 0;
}

.area-content li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.75rem;
  color: var(--gray-600);
}

.area-content li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

/* ============================================
   CTA Section - Gradient & Bold
   ============================================ */
.cta-section {
  background: var(--gray-900);
  color: var(--white);
  padding: 6rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 30% 0%, rgba(59, 130, 246, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 100%, rgba(14, 165, 233, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.cta-section > * {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.cta-phone {
  font-size: 1.35rem;
  font-family: var(--font-primary);
  font-weight: 700;
  color: var(--white);
  margin-top: 2rem;
}

.cta-phone a {
  color: var(--accent-light);
  transition: var(--transition-fast);
}

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

/* ============================================
   Footer - Modern Dark
   ============================================ */
.footer {
  background: var(--gray-900);
  color: var(--white);
  padding: 5rem 1.5rem 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-section h4 {
  color: var(--white);
  font-family: var(--font-primary);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.footer-section p,
.footer-section li,
.footer-section a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
}

.footer-section a:hover {
  color: var(--accent-light);
}

.footer-section ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.footer-contact .icon {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.9rem;
}

/* ============================================
   Page Headers (Inner Pages)
   ============================================ */
.page-header {
  background: var(--gray-900);
  color: var(--white);
  padding: 10rem 1.5rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(59, 130, 246, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.page-header > * {
  position: relative;
  z-index: 1;
}

.page-header h1 {
  color: var(--white);
  margin-bottom: 1rem;
}

.page-header p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumb {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
}

.breadcrumb a:hover {
  color: var(--white);
}

.breadcrumb span {
  color: rgba(255, 255, 255, 0.4);
  margin: 0 0.5rem;
}

/* ============================================
   Services Page - Detail Sections
   ============================================ */
.service-detail {
  padding: 5rem 0;
  border-bottom: 1px solid var(--gray-100);
}

.service-detail:nth-child(even) {
  background: var(--gray-50);
}

.service-detail-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.service-detail-text h2 {
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.service-detail-text ul {
  margin: 1.5rem 0;
  padding-left: 0;
}

.service-detail-text li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.75rem;
  color: var(--gray-600);
}

.service-detail-text li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
  font-size: 1.1rem;
}

.service-detail-image {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  text-align: center;
  padding: 2rem;
}

.service-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

/* ============================================
   About Page
   ============================================ */
.about-intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.about-image {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  text-align: center;
  padding: 2rem;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}

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

.value-card h3 {
  color: var(--primary);
  margin-bottom: 0.75rem;
}

/* ============================================
   Quote/Contact Page
   ============================================ */
.quote-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.quote-form-container {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-family: var(--font-primary);
  font-weight: 600;
  color: var(--gray-800);
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: var(--font-secondary);
  font-size: 1rem;
  transition: var(--transition-fast);
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

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

.quote-info h3 {
  color: var(--gray-900);
  margin-bottom: 1.5rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-method-icon {
  width: 55px;
  height: 55px;
  background: var(--primary-gradient);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.35rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
}

.contact-method-text strong {
  display: block;
  color: var(--gray-900);
  font-family: var(--font-primary);
  margin-bottom: 0.25rem;
}

.contact-method-text p {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.contact-method-text a {
  font-size: 1.1rem;
  font-weight: 600;
}

.business-hours {
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--gray-200);
}

.business-hours h4 {
  font-family: var(--font-primary);
  margin-bottom: 1rem;
  color: var(--gray-900);
}

.business-hours ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.business-hours li {
  display: flex;
  justify-content: space-between;
  color: var(--gray-600);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--gray-200);
}

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

.sms-cta {
  background: linear-gradient(135deg, var(--gray-50) 0%, rgba(59, 130, 246, 0.05) 100%);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  margin-top: 2rem;
  border: 1px solid var(--gray-200);
}

.sms-cta h4 {
  font-family: var(--font-primary);
  margin-bottom: 0.5rem;
}

.sms-cta p {
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

/* ============================================
   Responsive Styles
   ============================================ */

/* Tablet */
@media (min-width: 768px) {
  .hero {
    padding: 12rem 2rem 8rem;
  }

  .hero-cta {
    flex-direction: row;
  }

  .section {
    padding: 7rem 2rem;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-full-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .areas-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .cta-buttons {
    flex-direction: row;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-detail-content {
    grid-template-columns: 1fr 1fr;
  }

  .service-detail:nth-child(even) .service-detail-content {
    direction: rtl;
  }

  .service-detail:nth-child(even) .service-detail-content > * {
    direction: ltr;
  }

  .about-intro {
    grid-template-columns: 1fr 1fr;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .quote-content {
    grid-template-columns: 1.25fr 1fr;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .mobile-menu-btn {
    display: none;
  }

  .nav {
    display: block;
  }

  .header-cta {
    display: block;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-full-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }

  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Large Desktop */
@media (min-width: 1280px) {
  .container {
    padding: 0 2rem;
  }
}

/* ============================================
   Utility Classes
   ============================================ */
.text-center {
  text-align: center;
}

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

.text-accent {
  color: var(--accent);
}

.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: 1rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mt-2 {
  margin-top: 2rem;
}

/* Skip link for accessibility */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--primary);
  color: var(--white);
  padding: 12px 20px;
  z-index: 10000;
  border-radius: 0 0 var(--radius) 0;
  font-weight: 600;
  transition: var(--transition-fast);
}

.skip-link:focus {
  top: 0;
  color: var(--white);
}

/* Image placeholder styling */
.image-placeholder {
  background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  font-size: 0.9rem;
  text-align: center;
  padding: 2rem;
}

.image-placeholder::before {
  content: '📷';
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

/* Animations for scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: var(--transition-slow);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Smooth hover lift effect */
.hover-lift {
  transition: var(--transition);
}

.hover-lift:hover {
  transform: translateY(-5px);
}
