/* John T. Ambrose - JTA Brand Design System */
/* Official Brand Colors: Cement Green #3E5D58 | Orange #E87722 */

:root {
  /* JTA Brand Color Palette - Official Colors from JTA BRANDING.png */
  --primary: #3E5D58;
  --primary-dark: #2D4340;
  --primary-light: #4F7A73;
  --accent: #E87722;
  --accent-light: #F19A52;
  --accent-dark: #C55F15;
  --white: #ffffff;
  --gray-50: #f7fafc;
  --gray-100: #edf2f7;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e0;
  --gray-400: #a0aec0;
  --gray-500: #718096;
  --gray-600: #4a5568;
  --gray-700: #2d3748;
  --gray-800: #1a202c;
  --gray-900: #171923;
  
  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  
  /* Shadows */
  --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 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-glow: 0 0 40px rgba(232, 119, 34, 0.4);
  
  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 600ms cubic-bezier(0.34, 1.56, 0.64, 1);
  
  /* Focus Ring - JTA Orange */
  --focus-ring: 0 0 0 3px rgba(232, 119, 34, 0.5);
  
  /* Spacing Scale */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;
  
  /* Typography Scale */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;
  --text-7xl: 4.5rem;
  --text-8xl: 6rem;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: var(--gray-800);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Custom Selection */
::selection {
  background: var(--accent);
  color: var(--primary-dark);
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
  background: var(--gray-400);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gray-500);
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Focus States */
*:focus {
  outline: none;
}

*:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

@media (min-width: 768px) {
  .container {
    padding: 0 var(--space-8);
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 var(--space-12);
  }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

/* Section Labels */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: 'Inter', sans-serif;
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: var(--space-4);
}

.section-label::before {
  content: '';
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.section-label.light {
  color: var(--accent-light);
}

.section-label.light::before {
  background: linear-gradient(90deg, var(--accent-light), transparent);
}

/* Top Bar - Premium Glass Effect */
.top-bar {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: var(--white);
  padding: var(--space-3) 0;
  font-size: var(--text-sm);
  position: relative;
  z-index: 1001;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--glass-border);
}

.top-bar .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-6);
  flex-wrap: wrap;
}

.top-bar span {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  opacity: 0.9;
}

.top-bar .separator {
  opacity: 0.3;
  font-weight: 300;
}

.phone-link {
  color: var(--accent-light);
  text-decoration: none;
  font-weight: 600;
  padding: var(--space-1) var(--space-3);
  border-radius: 6px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  position: relative;
  overflow: hidden;
}

.phone-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform: translateX(-100%);
  transition: transform var(--transition);
  z-index: -1;
}

.phone-link:hover {
  color: var(--primary-dark);
}

.phone-link:hover::before {
  transform: translateX(0);
}

/* Icons */
.icon {
  width: 20px;
  height: 20px;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

.icon-sm {
  width: 16px;
  height: 16px;
}

.icon-lg {
  width: 24px;
  height: 24px;
}

/* Header - Floating Glass */
.header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

/* Logo - JTA Brand Logo Image */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: opacity var(--transition);
}

.logo:hover {
  opacity: 0.85;
}

.logo img {
  height: 50px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

@media (max-width: 768px) {
  .logo img {
    height: 40px;
  }
}

/* Footer Logo */
.footer-brand .logo img {
  height: 45px;
  margin-bottom: var(--space-4);
}

@media (max-width: 768px) {
  .footer-brand .logo img {
    height: 38px;
  }
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.nav-link {
  font-family: 'Inter', sans-serif;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--gray-600);
  text-decoration: none;
  padding: var(--space-2) var(--space-3);
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition);
  transform: translateX(-50%);
}

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

.nav-link:hover::after {
  width: 60%;
}

/* Premium Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: var(--text-sm);
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.2) 100%);
  opacity: 0;
  transition: opacity var(--transition);
}

.btn:hover::before {
  opacity: 1;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg), 0 0 30px rgba(62, 93, 88, 0.3);
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: var(--primary-dark);
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

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

.btn-lg {
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-base);
}

.btn-full {
  width: 100%;
}

/* Magnetic Button Effect */
.magnetic-btn {
  transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Hero Section - Premium Parallax */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0% { transform: scale(1.1); }
  100% { transform: scale(1.15); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg, 
    rgba(45, 67, 64, 0.95) 0%, 
    rgba(62, 93, 88, 0.85) 50%, 
    rgba(62, 93, 88, 0.6) 100%
  );
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-out 0.3s forwards;
}

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

/* Animated Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  color: var(--accent-light);
  padding: var(--space-2) var(--space-5);
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-6);
  box-shadow: var(--glass-shadow);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: var(--glass-shadow); }
  50% { box-shadow: 0 8px 32px 0 rgba(214, 158, 46, 0.5); }
}

/* Premium Hero Title */
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  margin-bottom: var(--space-6);
  line-height: 1.1;
  background: linear-gradient(135deg, var(--white) 0%, var(--gray-200) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  max-width: 700px;
  margin: 0 auto var(--space-8);
  opacity: 0.9;
  font-weight: 300;
  line-height: 1.7;
}

/* Hero CTA */
.hero-cta {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  margin-bottom: var(--space-12);
  flex-wrap: wrap;
}

/* Premium Stats */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: var(--space-12);
  flex-wrap: wrap;
}

.stat {
  text-align: center;
  position: relative;
}

.stat::after {
  content: '';
  position: absolute;
  right: calc(-1 * var(--space-6));
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background: var(--glass-border);
}

.stat:last-child::after {
  display: none;
}

.stat-value {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: var(--space-1);
}

.stat-label {
  font-family: 'Inter', sans-serif;
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.8;
  font-weight: 500;
}

/* Floating Particles */
.particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.3;
  animation: float 15s infinite;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; animation-delay: 2s; }
.particle:nth-child(3) { left: 35%; animation-delay: 4s; }
.particle:nth-child(4) { left: 50%; animation-delay: 6s; }
.particle:nth-child(5) { left: 65%; animation-delay: 8s; }
.particle:nth-child(6) { left: 80%; animation-delay: 10s; }
.particle:nth-child(7) { left: 90%; animation-delay: 12s; }

@keyframes float {
  0%, 100% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 0.3;
  }
  90% {
    opacity: 0.3;
  }
  100% {
    transform: translateY(-10vh) scale(1);
    opacity: 0;
  }
}

/* Scroll Progress */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  z-index: 1002;
  transition: width 0.1s linear;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: var(--space-16);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--primary);
  margin-bottom: var(--space-4);
}

.section-header p {
  font-size: var(--text-lg);
  color: var(--gray-600);
  line-height: 1.7;
}

/* Services Section */
.services {
  padding: var(--space-32) 0;
  background: var(--gray-50);
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gray-200), transparent);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-8);
}

/* Premium Service Cards with Glassmorphism */
.service-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  padding: var(--space-8);
  position: relative;
  border: 1px solid var(--gray-100);
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(214, 158, 46, 0.05) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition);
}

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

.service-card:hover::before {
  opacity: 1;
}

.service-card.featured {
  padding: 0;
  background: linear-gradient(135deg, var(--white) 0%, var(--gray-50) 100%);
}

.service-card.featured .service-content {
  padding: var(--space-8);
}

.service-image {
  width: 100%;
  height: 240px;
  overflow: hidden;
  position: relative;
}

.service-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(62, 93, 88, 0.8) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition);
}

.service-card:hover .service-image::after {
  opacity: 1;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.service-card:hover .service-image img {
  transform: scale(1.1);
}

.service-card h3 {
  font-size: var(--text-xl);
  color: var(--primary);
  margin-bottom: var(--space-3);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.service-card h3 svg {
  color: var(--accent);
  transition: transform var(--transition-bounce);
}

.service-card:hover h3 svg {
  transform: rotate(15deg) scale(1.1);
}

.service-card p {
  color: var(--gray-600);
  margin-bottom: var(--space-5);
  line-height: 1.7;
}

.service-link {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  transition: var(--transition);
  position: relative;
}

.service-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}

.service-link:hover {
  color: var(--accent-dark);
  gap: var(--space-3);
}

.service-link:hover::after {
  width: 100%;
}

/* About Section */
.about {
  padding: var(--space-32) 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  inset: 0;
  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.03'%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");
  opacity: 0.5;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
  position: relative;
  z-index: 1;
}

.about h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: var(--space-5);
  background: linear-gradient(135deg, var(--white) 0%, var(--gray-300) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about > p {
  font-size: var(--text-lg);
  opacity: 0.9;
  margin-bottom: var(--space-8);
  line-height: 1.7;
}

.about-features {
  display: grid;
  gap: var(--space-6);
}

.feature {
  display: flex;
  gap: var(--space-4);
  padding: var(--space-5);
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  transition: var(--transition);
}

.feature:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(8px);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow);
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  color: var(--primary-dark);
}

.feature h4 {
  font-family: 'Inter', sans-serif;
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-1);
}

.feature p {
  opacity: 0.8;
  font-size: var(--text-base);
}

.about-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform var(--transition-slow);
}

.about-image:hover {
  transform: perspective(1000px) rotateY(0deg);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

.about-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  color: var(--primary-dark);
  padding: var(--space-6) var(--space-8);
  border-radius: 20px;
  font-weight: 800;
  font-size: var(--text-xl);
  text-align: center;
  line-height: 1.2;
  box-shadow: var(--shadow-xl), var(--shadow-glow);
  animation: badgeFloat 3s ease-in-out infinite;
}

@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Portfolio Section */
.portfolio {
  padding: var(--space-32) 0;
  background: var(--white);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 300px 300px;
  gap: var(--space-5);
}

.portfolio-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.portfolio-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, transparent 60%);
  z-index: 1;
  opacity: 0;
  transition: opacity var(--transition);
}

.portfolio-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-xl);
}

.portfolio-item:hover::before {
  opacity: 1;
}

.portfolio-item.large {
  grid-row: span 2;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.portfolio-item:hover img {
  transform: scale(1.1);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-8);
  color: var(--white);
  z-index: 2;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition);
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
  transform: translateY(0);
}

.portfolio-tag {
  background: var(--accent);
  color: var(--primary-dark);
  padding: var(--space-1) var(--space-4);
  border-radius: 20px;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: var(--space-3);
  width: fit-content;
  letter-spacing: 0.05em;
}

.portfolio-overlay h3 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-2);
}

.portfolio-overlay p {
  opacity: 0.9;
  font-size: var(--text-base);
  line-height: 1.6;
}

/* Testimonials */
.testimonials {
  padding: var(--space-32) 0;
  background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
  position: relative;
}

.testimonials .section-title {
  text-align: center;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--primary);
  margin-bottom: var(--space-12);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

.review-card {
  background: var(--white);
  padding: var(--space-8);
  border-radius: 24px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  border: 1px solid var(--gray-100);
}

.review-card::before {
  content: '"';
  position: absolute;
  top: var(--space-6);
  right: var(--space-8);
  font-family: 'Playfair Display', serif;
  font-size: 6rem;
  color: var(--accent);
  opacity: 0.2;
  line-height: 1;
}

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

.review-card.featured {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  transform: scale(1.05);
  border: none;
}

.review-card.featured::before {
  color: var(--accent-light);
}

.review-card.featured:hover {
  transform: scale(1.05) translateY(-8px);
}

.stars {
  color: var(--accent);
  font-size: var(--text-lg);
  margin-bottom: var(--space-5);
  letter-spacing: 0.1em;
}

.review-card.featured .stars {
  color: var(--accent-light);
}

.review-card p {
  font-size: var(--text-base);
  line-height: 1.8;
  margin-bottom: var(--space-6);
  font-style: italic;
  position: relative;
  z-index: 1;
}

.reviewer {
  font-weight: 600;
  color: var(--primary);
  font-size: var(--text-sm);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.reviewer::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--accent);
}

.review-card.featured .reviewer {
  color: var(--accent-light);
}

.review-card.featured .reviewer::before {
  background: var(--accent-light);
}

/* Service Areas */
.service-areas {
  padding: var(--space-24) 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.service-areas::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.service-areas h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: var(--space-8);
  position: relative;
  z-index: 1;
}

.areas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-4);
  position: relative;
  z-index: 1;
}

.areas span {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  padding: var(--space-3) var(--space-6);
  border-radius: 50px;
  font-weight: 500;
  transition: var(--transition);
  cursor: default;
}

.areas span:hover {
  background: rgba(214, 158, 46, 0.2);
  border-color: var(--accent);
  transform: translateY(-2px);
}

/* Contact Section */
.contact {
  padding: var(--space-32) 0;
  background: var(--gray-50);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  max-width: 1100px;
  margin: 0 auto;
}

.contact-info h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--primary);
  margin-bottom: var(--space-4);
}

.contact-info > p {
  font-size: var(--text-lg);
  color: var(--gray-600);
  margin-bottom: var(--space-10);
  line-height: 1.7;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  margin-bottom: var(--space-10);
}

.method {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  font-size: var(--text-lg);
  padding: var(--space-4);
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.method:hover {
  box-shadow: var(--shadow);
  transform: translateX(8px);
}

.method svg {
  color: var(--accent);
  transition: transform var(--transition-bounce);
}

.method:hover svg {
  transform: scale(1.2) rotate(10deg);
}

.method a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  transition: color var(--transition);
}

.method a:hover {
  color: var(--accent-dark);
}

.hours {
  padding: var(--space-6);
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--accent);
}

.hours h4 {
  color: var(--primary);
  margin-bottom: var(--space-2);
  font-family: 'Inter', sans-serif;
  font-size: var(--text-base);
  font-weight: 600;
}

.hours p {
  color: var(--gray-600);
  line-height: 1.8;
}

/* Premium Contact Form */
.contact-form {
  background: var(--white);
  padding: var(--space-10);
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
  position: relative;
}

.contact-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  border-radius: 2px;
}

.contact-form h3 {
  color: var(--primary);
  margin-bottom: var(--space-8);
  font-size: var(--text-2xl);
  text-align: center;
}

.form-group {
  margin-bottom: var(--space-5);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: var(--space-4) var(--space-5);
  border: 2px solid var(--gray-200);
  border-radius: 12px;
  font-size: var(--text-base);
  font-family: 'Inter', sans-serif;
  transition: var(--transition);
  background: var(--white);
}

.contact-form input:hover,
.contact-form select:hover,
.contact-form textarea:hover {
  border-color: var(--gray-300);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(214, 158, 46, 0.1);
}

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

/* Footer */
.footer {
  background: var(--gray-900);
  color: var(--white);
  padding: var(--space-20) 0 var(--space-8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-12);
  margin-bottom: var(--space-12);
}

.footer-brand p {
  opacity: 0.8;
  line-height: 1.8;
  font-size: var(--text-base);
}

.footer-links h4,
.footer-contact h4 {
  color: var(--accent);
  margin-bottom: var(--space-5);
  font-family: 'Inter', sans-serif;
  font-size: var(--text-base);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.footer-links li {
  margin-bottom: var(--space-3);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition);
  display: inline-block;
  padding: var(--space-1) 0;
  position: relative;
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width var(--transition);
}

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

.footer-links a:hover::after {
  width: 100%;
}

.footer-contact p {
  margin-bottom: var(--space-3);
  opacity: 0.8;
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-8);
  text-align: center;
  opacity: 0.7;
  font-size: var(--text-sm);
}

/* Service and Location Landing Pages */
.service-hero {
  min-height: 74vh;
  padding-top: var(--space-20);
}

.service-hero .hero-overlay {
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.84) 0%, rgba(62, 93, 88, 0.78) 55%, rgba(45, 67, 64, 0.92) 100%),
    radial-gradient(circle at 20% 40%, rgba(232, 119, 34, 0.28), transparent 32%);
}

.service-hero-content {
  max-width: 920px;
}

.service-hero-content h1 {
  font-size: clamp(2.35rem, 5vw, 4.75rem);
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
  color: rgba(255, 255, 255, 0.76);
  font-size: var(--text-sm);
  font-weight: 600;
}

.breadcrumb a {
  color: var(--accent-light);
  text-decoration: none;
}

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

.service-overview,
.included-section,
.post-landing-section {
  padding: var(--space-32) 0;
  background: var(--white);
}

.service-layout,
.included-grid,
.post-landing-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: var(--space-16);
  align-items: start;
}

.service-copy h2,
.included-copy h2,
.article-content h2 {
  color: var(--primary);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: var(--space-5);
}

.service-copy p,
.included-copy p,
.article-content p {
  color: var(--gray-600);
  font-size: var(--text-lg);
  line-height: 1.8;
  margin-bottom: var(--space-5);
}

.highlight-grid,
.detail-grid,
.faq-grid,
.mini-service-grid {
  display: grid;
  gap: var(--space-6);
}

.highlight-card,
.detail-card,
.faq-card,
.mini-service-card,
.sidebar-panel {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: var(--space-8);
  transition: var(--transition);
}

.highlight-card:hover,
.detail-card:hover,
.faq-card:hover,
.mini-service-card:hover,
.sidebar-panel:hover {
  border-color: var(--accent-light);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.highlight-card h3,
.detail-card h3,
.faq-card h3,
.mini-service-card h3,
.sidebar-panel h3 {
  color: var(--primary);
  font-size: var(--text-xl);
  margin-bottom: var(--space-3);
}

.highlight-card p,
.detail-card p,
.faq-card p,
.mini-service-card p,
.sidebar-panel p {
  color: var(--gray-600);
  line-height: 1.75;
}

.service-detail-band {
  padding: var(--space-32) 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.service-detail-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.05), transparent 45%, rgba(232, 119, 34, 0.08));
}

.service-detail-band .container {
  position: relative;
  z-index: 1;
}

.service-detail-band .section-header h2,
.service-detail-band .section-header p {
  color: var(--white);
}

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

.detail-card {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--white);
  box-shadow: none;
}

.detail-card h3,
.detail-card p {
  color: var(--white);
}

.detail-card p {
  opacity: 0.84;
}

.detail-number {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
  border-radius: 12px;
  background: var(--accent);
  color: var(--primary-dark);
  font-weight: 800;
}

.check-list,
.sidebar-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.check-list {
  display: grid;
  gap: var(--space-4);
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: 24px;
  padding: var(--space-8);
}

.check-list li {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
  color: var(--gray-700);
  font-weight: 600;
  line-height: 1.6;
}

.check-list li::before {
  content: '';
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  margin-top: 0.48rem;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(232, 119, 34, 0.12);
}

.faq-section,
.related-services {
  padding: var(--space-32) 0;
  background: var(--gray-50);
}

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

.post-landing-grid {
  grid-template-columns: minmax(0, 1fr) 360px;
}

.article-content {
  min-width: 0;
}

.article-content h3,
.article-content h4 {
  color: var(--primary);
  margin: var(--space-8) 0 var(--space-3);
}

.article-content ul,
.article-content ol {
  color: var(--gray-700);
  margin: 0 0 var(--space-6) var(--space-6);
  line-height: 1.8;
}

.article-content li {
  margin-bottom: var(--space-2);
}

.article-content a {
  color: var(--primary);
  font-weight: 700;
}

.article-content img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.article-sidebar {
  position: sticky;
  top: 110px;
  display: grid;
  gap: var(--space-6);
}

.sidebar-panel {
  background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
}

.sidebar-links {
  display: grid;
  gap: var(--space-3);
}

.sidebar-links a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}

.sidebar-links a:hover {
  color: var(--accent-dark);
}

.mini-service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.mini-service-card p {
  font-size: var(--text-sm);
  margin-bottom: var(--space-5);
}

/* Animations & Reveal Effects */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-scale.active {
  opacity: 1;
  transform: scale(1);
}

/* Stagger Animation Delays */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-2);
  border-radius: 8px;
  transition: var(--transition);
}

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

.mobile-menu-btn svg {
  width: 28px;
  height: 28px;
  color: var(--gray-700);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }

  .service-layout,
  .included-grid,
  .post-landing-grid {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }

  .article-sidebar {
    position: static;
  }

  .detail-grid,
  .faq-grid,
  .mini-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .portfolio-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  
  .portfolio-item.large {
    grid-row: span 1;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  
  .review-card.featured {
    transform: none;
  }
  
  .review-card.featured:hover {
    transform: translateY(-8px);
  }
  
  .about-image {
    transform: none;
    order: -1;
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: var(--space-6);
    gap: var(--space-4);
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--gray-200);
  }
  
  .nav.mobile-open {
    display: flex;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero-stats {
    gap: var(--space-6);
  }
  
  .stat::after {
    display: none;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-8);
  }
  
  .about-badge {
    left: 50%;
    transform: translateX(-50%);
    animation: none;
  }
  
  .contact-form {
    padding: var(--space-6);
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .stat-value {
    font-size: 2rem;
  }
  
  .section-header {
    margin-bottom: var(--space-10);
  }
}

/* Loading State */
.skeleton {
  background: linear-gradient(90deg, var(--gray-200) 25%, var(--gray-100) 50%, var(--gray-200) 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: 8px;
}

@keyframes skeleton-loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Success Message */
.form-success {
  text-align: center;
  padding: var(--space-10);
}

.success-icon {
  width: 80px;
  height: 80px;
  color: var(--accent);
  margin-bottom: var(--space-6);
}

/* Utility Classes */
.text-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
}

.shadow-glow {
  box-shadow: var(--shadow-glow);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Mobile-First Optimizations */
@media (max-width: 768px) {
  /* Optimize touch targets for mobile */
  .btn, .nav-link, .phone-link, .service-card, .portfolio-item, .review-card {
    min-height: 44px;
    min-width: 44px;
  }
  
  /* Reduce animation complexity on mobile */
  .hero-bg img {
    animation: none !important;
    transform: scale(1.1) !important;
  }
  
  .particle {
    display: none;
  }
  
  /* Faster transitions on mobile */
  .btn, .nav-link, .service-card, .review-card, .portfolio-item {
    transition-duration: 150ms;
  }
  
  /* Improve tap feedback */
  .btn:active, .nav-link:active, .service-card:active {
    transform: scale(0.98);
  }
  
  /* Reduce padding on mobile */
  .services, .about, .portfolio, .testimonials, .contact, .service-overview, .included-section, .post-landing-section, .service-detail-band, .faq-section, .related-services {
    padding: var(--space-16) 0;
  }

  .detail-grid,
  .faq-grid,
  .mini-service-grid {
    grid-template-columns: 1fr;
  }

  .service-hero {
    min-height: 72vh;
  }

  .service-hero-content h1 {
    font-size: clamp(2rem, 8vw, 3rem);
  }
  
  /* Optimize hero for mobile */
  .hero {
    min-height: 80vh;
  }
  
  .hero h1 {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
  }
  
  .hero-stats {
    gap: var(--space-4);
  }
  
  .stat::after {
    display: none;
  }
  
  /* Simplify about badge animation */
  .about-badge {
    animation: none;
    left: 50%;
    transform: translateX(-50%);
  }
  
  /* Optimize form for mobile */
  .contact-form {
    padding: var(--space-6);
  }
  
  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    font-size: 16px; /* Prevent zoom on iOS */
    padding: var(--space-3) var(--space-4);
  }
}

/* Tablet Optimizations */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Desktop Enhancements */
@media (min-width: 1025px) {
  /* Enable hover effects only on desktop */
  .btn:hover {
    transform: translateY(-2px);
  }
  
  .service-card:hover {
    transform: translateY(-8px);
  }
  
  .review-card:hover {
    transform: translateY(-5px);
  }
  
  .portfolio-item:hover {
    transform: translateY(-8px) scale(1.02);
  }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  .hero-overlay {
    background: rgba(15, 23, 42, 0.95);
  }
  
  .btn {
    border: 2px solid currentColor;
  }
  
  .nav-link:hover::after {
    height: 3px;
  }
}

/* Print Styles */
@media print {
  .header, .top-bar, .scroll-progress, .scroll-top-btn {
    display: none !important;
  }
  
  .hero {
    min-height: auto;
    color: #000;
  }
  
  .hero-overlay {
    display: none;
  }
  
  a {
    text-decoration: underline;
    color: #000;
  }
  
  .service-card, .review-card {
    break-inside: avoid;
    box-shadow: none;
    border: 1px solid #000;
  }
}
