@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@700;800;900&display=swap');

/* ===================================
   ENHANCED DESIGN SYSTEM
   =================================== */

:root {
  /* Premium Color Palette */
  --primary: #DC2626;
  --primary-dark: #B91C1C;
  --primary-light: #FEE2E2;
  --secondary: #1F2937;
  --accent: #3B82F6;
  
  /* Neutral Colors */
  --white: #FFFFFF;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --gray-900: #111827;
  
  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  
  /* Shadows - Premium Depth */
  --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-2xl: 0 35px 60px -15px rgba(0, 0, 0, 0.3);
  
  /* Premium Gradients */
  --gradient-primary: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
  --gradient-overlay: linear-gradient(135deg, rgba(220, 38, 38, 0.95) 0%, rgba(185, 28, 28, 0.95) 100%);
  
  /* Spacing System - REDUCED */
  --spacing-xs: 0.5rem;
  --spacing-sm: 0.75rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 2.5rem;
  --spacing-3xl: 3rem;
  
  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===================================
   RESET & BASE STYLES
   =================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-800);
  background-color: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-base);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ===================================
   UTILITY CLASSES
   =================================== */

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--spacing-xl);
}

@media (max-width: 768px) {
  .container {
    padding: 0 var(--spacing-md);
  }
}

/* ===================================
   PREMIUM HEADER
   =================================== */

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  padding: var(--spacing-md) 0;
  transition: var(--transition-base);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-xl);
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  transition: var(--transition-base);
}

.logo:hover {
  transform: translateY(-2px);
}

.logo img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(220, 38, 38, 0.2));
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--spacing-xl);
  flex: 1;
  justify-content: center;
}

.nav-menu a {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--gray-700);
  padding: var(--spacing-xs) 0;
  position: relative;
  letter-spacing: 0.01em;
  transition: var(--transition-base);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transform: translateX(-50%);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu a:hover {
  color: var(--primary);
}

.nav-menu a:hover::after {
  width: 100%;
}

/* FIXED: Get a Quote Button - No Border Radius, Fully Responsive */
.cta-button {
  background: var(--gradient-primary);
  color: var(--white);
  padding: 0.75rem 1.75rem;
  border-radius: 0;
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: 0.025em;
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .cta-button {
    padding: 0.65rem 1rem;
    font-size: 0.8125rem;
    white-space: normal;
    line-height: 1.3;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .cta-button {
    padding: 0.6rem 0.75rem;
    font-size: 0.75rem;
  }
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(220, 38, 38, 0.4);
}

.cta-button:hover::before {
  left: 100%;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--spacing-xs);
}

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: var(--transition-base);
}

/* ===================================
   PREMIUM TOP CONTACT BAR
   =================================== */

.top-contact-bar {
  background: var(--gradient-primary);
  padding: var(--spacing-md) 0;
  border-bottom: 3px solid var(--primary-dark);
}

.contact-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition-base);
}

.contact-item:hover {
  transform: translateX(4px);
  opacity: 0.9;
}

.contact-item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.social-icons-center {
  display: flex;
  gap: var(--spacing-sm);
  align-items: center;
  background: rgba(255, 255, 255, 0.15);
  padding: var(--spacing-xs) var(--spacing-md);
  border-radius: var(--radius-full);
  backdrop-filter: blur(10px);
}

.social-icons-center a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--white);
  border-radius: 50%;
  transition: var(--transition-base);
}

.social-icons-center a:hover {
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.address {
  color: var(--white);
  font-weight: 600;
  font-size: 0.9375rem;
}

/* ===================================
   PREMIUM HERO SECTION
   =================================== */

.hero {
  position: relative;
  min-height: 700px;
  padding: var(--spacing-3xl) 0;
  overflow: hidden;
}

.hero-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide.active {
  opacity: 1;
  animation: kenBurns 12s ease-out forwards;
}

@keyframes kenBurns {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.12);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgb(27 44 53 / 56%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--spacing-3xl);
  align-items: center;
}

.hero-text {
  animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-title {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: var(--spacing-lg);
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  letter-spacing: -0.02em;
}

.hero-title::after {
  content: '';
  display: block;
  width: 120px;
  height: 5px;
  background: var(--gradient-primary);
  margin-top: var(--spacing-lg);
  border-radius: var(--radius-full);
}

.hero-subtitle {
  font-size: 1.375rem;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: var(--spacing-xl);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* ===================================
   PREMIUM TRUST BADGES
   =================================== */

.trust-badges {
  display: flex;
  gap: var(--spacing-md);
  flex-wrap: wrap;
  margin-top: var(--spacing-2xl);
}

.badge,
.google-badge {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: var(--spacing-md) var(--spacing-lg);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transition: var(--transition-base);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge:hover,
.google-badge:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.google-badge {
  border: 2px solid transparent;
  background-clip: padding-box;
}

.google-badge:hover {
  border-color: #4285F4;
}

.google-logo {
  display: flex;
  align-items: center;
}

.google-rating {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.rating-text {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-800);
  line-height: 1.2;
}

.rating-text strong {
  font-size: 1.125rem;
  color: var(--gray-900);
}

.stars {
  display: flex;
  gap: 2px;
}

.badge-icon {
  font-size: 1.75rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.badge-text {
  font-weight: 700;
  font-size: 1rem;
  color: var(--gray-800);
  white-space: nowrap;
}

/* ===================================
   PREMIUM BOOKING FORM
   =================================== */

.booking-form-card {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  padding: var(--spacing-2xl);
  border-radius: var(--radius-2xl);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.5);
  animation: fadeInRight 1s cubic-bezier(0.4, 0, 0.2, 1);
  transition: var(--transition-smooth);
}

.booking-form-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.3);
}

.form-title {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: var(--spacing-xl);
  color: var(--gray-900);
  position: relative;
}

.form-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gradient-primary);
  margin: var(--spacing-md) auto 0;
  border-radius: var(--radius-full);
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.booking-form input,
.booking-form select {
  padding: 1rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray-800);
  background: var(--white);
  transition: var(--transition-base);
}

.booking-form input:focus,
.booking-form select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.1);
  transform: translateY(-2px);
}

.submit-button {
  background: var(--gradient-primary);
  color: var(--white);
  padding: 1.125rem;
  border-radius: var(--radius-lg);
  font-weight: 700;
  font-size: 1.0625rem;
  letter-spacing: 0.025em;
  box-shadow: 0 8px 24px rgba(220, 38, 38, 0.3);
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
  margin-top: var(--spacing-sm);
}

.submit-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s;
}

.submit-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(220, 38, 38, 0.4);
}

.submit-button:hover::before {
  left: 100%;
}

/* ===================================
   PREMIUM SECTIONS - REDUCED MARGINS
   =================================== */

.section-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  text-align: center;
  color: var(--gray-900);
  margin-bottom: var(--spacing-2xl);
  position: relative;
  letter-spacing: -0.02em;
}

.section-title::after {
  content: '';
  display: block;
  width: 100px;
  height: 4px;
  background: var(--gradient-primary);
  margin: var(--spacing-lg) auto 0;
  border-radius: var(--radius-full);
}

.why-choose-us,
.services,
.about,
.projects,
.testimonials,
.live-work,
.areas {
  padding: var(--spacing-2xl) 0;
}

.why-choose-us {
  background: var(--white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-xl);
}

.feature-card {
  text-align: center;
  padding: var(--spacing-xl);
  border-radius: var(--radius-xl);
  background: var(--white);
  border: 2px solid var(--gray-100);
  transition: var(--transition-smooth);
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-light);
  box-shadow: var(--shadow-xl);
}

.feature-icon {
  margin-bottom: var(--spacing-md);
  transition: var(--transition-base);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(3deg);
}

.feature-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: var(--spacing-sm);
}

.feature-card:hover .feature-title {
  color: var(--primary);
}

.feature-description {
  color: var(--gray-600);
  font-size: 1rem;
  line-height: 1.7;
}

/* ===================================
   PREMIUM SERVICES GRID
   =================================== */

.services {
  background: var(--gray-50);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--spacing-xl);
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition-smooth);
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-overlay);
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 1;
  pointer-events: none;
}

.service-card:hover::before {
  opacity: 0.05;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-2xl);
}

.service-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-image {
  transform: scale(1.08);
}

.service-content {
  padding: var(--spacing-xl);
}

.service-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: var(--spacing-md);
  transition: var(--transition-base);
}

.service-card:hover .service-name {
  color: var(--primary);
}

.book-now-btn {
  background: var(--gradient-primary);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.9375rem;
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}

.book-now-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.book-now-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(220, 38, 38, 0.4);
}

.book-now-btn:hover::before {
  left: 100%;
}

/* ===================================
   IMPROVED TESTIMONIALS SECTION
   =================================== */

.testimonials {
  background: var(--gray-50);
}

.testimonials-subtitle {
  text-align: center;
  font-size: 1rem;
  color: var(--gray-700);
  margin-bottom: var(--spacing-xl);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--spacing-lg);
  flex-wrap: wrap;
  padding: 0 var(--spacing-md);
}

.google-rating {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  background: var(--white);
  padding: var(--spacing-xs) var(--spacing-md);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  font-weight: 600;
}

.google-rating svg {
  flex-shrink: 0;
}

.google-rating strong {
  color: var(--primary);
  font-size: 1.125rem;
  font-weight: 800;
}

.google-link {
  color: #4285F4;
  font-weight: 600;
  transition: var(--transition-base);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.google-link:hover {
  border-bottom-color: #4285F4;
  opacity: 0.9;
}

.testimonials-carousel-wrapper {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
}

.testimonials-carousel {
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: var(--spacing-xl);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  padding: var(--spacing-xs) 0;
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 20px);
  background: var(--white);
  padding: var(--spacing-xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  border: 2px solid var(--gray-100);
  transition: var(--transition-smooth);
  min-height: 280px;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-light);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-md);
}

.reviewer-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
  flex-shrink: 0;
}

.reviewer-name {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--gray-900);
  margin: 0;
}

.reviewer-badge {
  display: inline-block;
  background: #4285F4;
  color: var(--white);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 5px;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-top: var(--spacing-xs);
}

.star {
  color: #FBBF24;
  font-size: 1rem;
  transition: var(--transition-base);
}

.testimonial-card:hover .star {
  transform: scale(1.1);
}

.testimonial-text {
  font-style: italic;
  color: var(--gray-700);
  line-height: 1.7;
  font-size: 0.9375rem;
  margin-bottom: var(--spacing-md);
}

.testimonial-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--spacing-sm);
  border-top: 1px solid var(--gray-200);
}

.testimonial-time {
  font-size: 0.8125rem;
  color: var(--gray-500);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--white);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--gray-200);
  transition: var(--transition-base);
  z-index: 10;
}

.carousel-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-50%) scale(1.1);
  box-shadow: var(--shadow-lg);
}

.carousel-btn:hover svg {
  stroke: var(--white);
}

.carousel-btn svg {
  stroke: var(--gray-700);
  transition: var(--transition-base);
}

.carousel-btn.prev {
  left: 0;
}

.carousel-btn.next {
  right: 0;
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-xl);
}

.indicator-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray-300);
  transition: var(--transition-base);
  cursor: pointer;
}

.indicator-dot:hover {
  background: var(--gray-400);
}

.indicator-dot.active {
  width: 32px;
  border-radius: var(--radius-full);
  background: var(--gradient-primary);
}

/* ===================================
   FIXED: ABOUT US SECTION
   =================================== */

.about {
  background: var(--white);
}

.about-content {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: var(--spacing-3xl);
  align-items: start;
}

.about-image {
  animation: fadeInLeft 1s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  justify-content: center;
}

.about-image img {
  width: 100%;
  max-width: 280px;
  height: auto;
  object-fit: contain;
  transition: transform 0.5s;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
}

.about-image img:hover {
  transform: scale(1.05);
}

.about-text {
  animation: fadeInRight 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: var(--spacing-lg);
  color: var(--gray-900);
}

.about-description {
  color: var(--gray-700);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: var(--spacing-md);
  text-align: justify;
}

.about-description:last-child {
  margin-bottom: 0;
}

/* ===================================
   FIXED: COMPLETED PROJECTS
   =================================== */

.projects {
  background: var(--gray-50);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--spacing-xl);
}

.project-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition-smooth);
  background: var(--white);
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-2xl);
}

.project-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover .project-image {
  transform: scale(1.1);
}

.project-label {
  position: absolute;
  bottom: var(--spacing-lg);
  left: var(--spacing-lg);
  background: var(--gradient-primary);
  color: var(--white);
  padding: var(--spacing-sm) var(--spacing-lg);
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.9375rem;
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4);
  transition: var(--transition-base);
}

.project-card:hover .project-label {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.5);
}

/* ===================================
   FIXED: LIVE WORK SECTION
   =================================== */

.live-work {
  background: var(--white);
}

.live-work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: var(--spacing-xl);
}

.live-work-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition-smooth);
  border: 2px solid var(--gray-100);
}

.live-work-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-light);
}

.live-work-video {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: var(--transition-base);
}

.live-work-card:hover .live-work-video {
  transform: scale(1.02);
}

.live-work-name {
  padding: var(--spacing-lg);
  text-align: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--gray-800);
  transition: var(--transition-base);
  background: var(--white);
}

.live-work-card:hover .live-work-name {
  color: var(--primary);
}

/* ===================================
   FIXED: AREAS WE SERVE
   =================================== */

.areas {
  background: var(--gray-50);
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: var(--spacing-md);
}

.area-item {
  background: var(--white);
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  font-weight: 700;
  font-size: 1rem;
  color: var(--gray-800);
  text-align: center;
  border: 2px solid var(--gray-200);
  transition: var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.area-item:hover {
  background: var(--gradient-primary);
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.area-item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: var(--transition-base);
  stroke: var(--primary);
}

.area-item:hover svg {
  stroke: var(--white);
  transform: scale(1.1);
}

/* ===================================
   CALL FAB
   =================================== */

.call-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 64px;
  height: 64px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(220, 38, 38, 0.4);
  z-index: 1000;
  transition: var(--transition-base);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 8px 24px rgba(220, 38, 38, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 12px 32px rgba(220, 38, 38, 0.6);
  }
}

.call-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 36px rgba(220, 38, 38, 0.5);
  animation: none;
}

.call-fab img {
  width: 32px;
  height: 32px;
  filter: brightness(0) invert(1);
}

/* ===================================
   FOOTER - ORIGINAL STYLING PRESERVED
   =================================== */

.footer {
  background: var(--bg-light);
  color: var(--text-dark);
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 30px;
}

.footer-column {
  animation: 0.8s ease-out fadeInUp;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  transition: transform 0.4s;
}

.footer-logo:hover {
  transform: translateY(-4px);
}

.footer-logo img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.footer-logo .logo-text {
  font-size: 20px;
  font-weight: 900;
  color: #b91c1c;
}

.footer-description {
  color: var(--text-dark);
  line-height: 1.6;
  font-size: 15px;
}

.footer-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
  padding-bottom: 8px;
  position: relative;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary-color);
  transition: width 0.6s;
}

.footer-column:hover .footer-title::after {
  width: 100%;
}

.footer-links,
.footer-contact {
  list-style: none;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 10px;
  transition: 0.3s;
}

.footer-links li:hover,
.footer-contact li:hover {
  transform: translateX(5px);
}

.footer-links a,
.footer-contact a,
.footer-contact li {
  color: var(--text-dark);
  text-decoration: none;
  transition: 0.3s;
  font-size: 15px;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--primary);
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.footer-social a {
  transition: 0.4s;
  display: inline-block;
}

.footer-social a:hover {
  transform: translateY(-5px) scale(1.2);
}

.footer-social a.instagram svg {
  fill: url(#instagram-gradient);
}

.footer-social a.instagram:hover svg {
  filter: drop-shadow(0 4px 8px rgba(225, 48, 108, 0.5));
}

.footer-social a.facebook svg {
  fill: #1877f2;
}

.footer-social a.facebook:hover svg {
  filter: drop-shadow(0 4px 8px rgba(24, 119, 242, 0.5));
}

.footer-social a.whatsapp svg {
  fill: #25d366;
}

.footer-social a.whatsapp:hover svg {
  filter: drop-shadow(0 4px 8px rgba(37, 211, 102, 0.5));
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #d1d5db;
  color: var(--text-dark);
  font-size: 14px;
  animation: 0.8s ease-out 0.3s backwards fadeInUp;
}

/* ===================================
   SERVICE DETAIL PAGES
   =================================== */

.service-detail-hero {
  background: linear-gradient(135deg, #dbeafe 0%, #e0f2fe 100%);
  padding: 40px 0 60px;
  position: relative;
  overflow: hidden;
}

.service-detail-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(220, 38, 38, 0.05) 0%, transparent 70%);
  animation: 10s ease-in-out infinite pulse;
}

.service-detail-hero .container {
  position: relative;
  z-index: 1;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  font-size: 14px;
  animation: 0.8s ease-out fadeInDown;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--text-dark);
  transition: 0.3s;
  font-weight: 600;
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--primary);
}

.breadcrumb .separator {
  color: var(--text-light);
  user-select: none;
}

.breadcrumb .current {
  color: var(--primary);
  font-weight: 700;
}

.service-detail-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 32px;
  animation: 0.8s ease-out fadeInUp;
  line-height: 1.2;
}

.service-hero-image-container {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  animation: 1s ease-out 0.3s backwards fadeInUp;
  transition: 0.5s;
}

.service-hero-image-container:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.service-hero-image {
  width: 100%;
  height: 450px;
  object-fit: cover;
  transition: 0.5s;
}

.service-hero-image-container:hover .service-hero-image {
  transform: scale(1.05);
}

.hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  background: rgb(27 44 53 / 56%);
  transition: 0.5s;
}

.service-hero-image-container:hover .hero-overlay {
  background: rgb(27 44 53 / 56%);
}

.hero-description {
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0;
  animation: 1s ease-out 0.5s backwards fadeInUp;
}

.service-description {
  padding: var(--spacing-2xl) 0;
  background: var(--white);
}

.service-description p {
  color: var(--gray-700);
  font-size: 1.0625rem;
  line-height: 1.8;
  margin-bottom: var(--spacing-lg);
  text-align: justify;
}

.service-description p:last-child {
  margin-bottom: 0;
}

.service-gallery {
  padding: var(--spacing-2xl) 0;
  background: var(--gray-50);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--spacing-xl);
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: var(--transition-smooth);
  background: var(--white);
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.gallery-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover .gallery-image {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--spacing-lg);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  opacity: 0;
  transition: var(--transition-base);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-category {
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0;
  transform: translateY(20px);
  transition: var(--transition-base);
}

.gallery-item:hover .gallery-category {
  transform: translateY(0);
}

.loading-spinner {
  text-align: center;
  padding: 60px 20px;
  grid-column: 1 / -1;
}

.spinner {
  width: 60px;
  height: 60px;
  border: 4px solid var(--gray-200);
  border-top: 4px solid var(--primary);
  border-radius: 50%;
  margin: 0 auto 20px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.loading-spinner p {
  color: var(--gray-700);
  font-size: 1rem;
  font-weight: 600;
}

.our-process {
  padding: var(--spacing-2xl) 0;
  background: var(--white);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--spacing-xl);
}

.step {
  text-align: center;
  padding: var(--spacing-xl);
  border-radius: var(--radius-xl);
  background: var(--gray-50);
  border: 2px solid var(--gray-200);
  transition: var(--transition-smooth);
}

.step:hover {
  transform: translateY(-6px);
  border-color: var(--primary-light);
  box-shadow: var(--shadow-lg);
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 800;
  margin: 0 auto var(--spacing-md);
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: var(--spacing-sm);
}

.step p {
  color: var(--gray-600);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.cta-section {
  padding: var(--spacing-3xl) 0;
  background: var(--gradient-primary);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
  opacity: 0.3;
}

.cta-section .container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-section .section-title {
  color: var(--white);
  margin-bottom: var(--spacing-lg);
}

.cta-section .section-title::after {
  background: var(--white);
}

.cta-section p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.125rem;
  margin-bottom: var(--spacing-xl);
}

.cta-buttons {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  padding: 1rem 2rem;
  border-radius: var(--radius-lg);
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition-base);
  cursor: pointer;
}

.btn-primary {
  background: var(--white);
  color: var(--primary);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-4px);
}

.feature-item {
  padding: var(--spacing-xl);
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  border: 2px solid var(--gray-200);
  transition: var(--transition-smooth);
}

.feature-item:hover {
  transform: translateY(-6px);
  border-color: var(--primary-light);
  box-shadow: var(--shadow-lg);
}

.feature-item h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: var(--spacing-sm);
}

.feature-item p {
  color: var(--gray-600);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.areas ul {
  list-style-position: inside;
  color: var(--gray-700);
  font-size: 1rem;
  line-height: 1.8;
  margin: var(--spacing-lg) 0;
}

.areas ul li {
  margin-bottom: var(--spacing-xs);
}

.areas p {
  color: var(--gray-700);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: var(--spacing-md);
  text-align: justify;
}

/* ===================================
   ANIMATIONS
   =================================== */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-2xl);
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--spacing-xl);
  }
  
  .about-image {
    justify-content: center;
  }
  
  .about-description {
    text-align: justify;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }
  
  .testimonial-card {
    flex: 0 0 calc(50% - 15px);
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .nav-menu.active {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--white);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-lg);
  }
  
  .cta-button {
    padding: 0.65rem 1.25rem;
    font-size: 0.875rem;
  }
  
  .hero {
    min-height: 600px;
    padding: var(--spacing-2xl) 0;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.125rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .testimonial-card {
    flex: 0 0 100%;
  }
  
  .testimonials-carousel-wrapper {
    padding: 0 48px;
  }
  
  .contact-info {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .service-detail-title {
    font-size: 2rem;
  }
  
  .service-hero-image {
    height: 350px;
  }
  
  .projects-grid,
  .live-work-grid,
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
}

@media (max-width: 480px) {
  .cta-button {
    padding: 0.6rem 1rem;
    font-size: 0.8125rem;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .booking-form-card {
    padding: var(--spacing-xl);
  }
  
  .trust-badges {
    flex-direction: column;
  }
  
  .call-fab {
    width: 56px;
    height: 56px;
    bottom: 20px;
    right: 20px;
  }
  
  .call-fab img {
    width: 28px;
    height: 28px;
  }
  
  .service-detail-title {
    font-size: 1.75rem;
  }
  
  .service-hero-image {
    height: 280px;
  }
  
  .projects-grid,
  .live-work-grid,
  .services-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* ===================================
   PERFORMANCE OPTIMIZATIONS
   =================================== */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}