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

:root {
  /* Colors */
  --primary: 222 84% 4.9%;
  --primary-foreground: 210 40% 98%;
  --secondary: 210 40% 96%;
  --secondary-foreground: 222.2 84% 4.9%;
  --muted: 210 40% 96%;
  --muted-foreground: 215.4 16.3% 46.9%;
  --accent: 210 40% 96%;
  --accent-foreground: 222.2 84% 4.9%;
  --destructive: 0 84.2% 60.2%;
  --destructive-foreground: 210 40% 98%;
  --border: 214.3 31.8% 91.4%;
  --input: 214.3 31.8% 91.4%;
  --ring: 222.2 84% 4.9%;
  --background: 0 0% 100%;
  --foreground: 222.2 84% 4.9%;
  --card: 0 0% 100%;
  --card-foreground: 222.2 84% 4.9%;
  --popover: 0 0% 100%;
  --popover-foreground: 222.2 84% 4.9%;
  
  /* Design Tokens */
  --radius: 0.75rem;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, hsl(var(--primary)), hsl(222 84% 8%));
  --gradient-subtle: linear-gradient(180deg, hsl(var(--background)), hsl(var(--secondary)));
  
  /* Shadows */
  --shadow-elegant: 0 10px 30px -10px hsl(var(--primary) / 0.3);
  --shadow-premium: 0 25px 50px -12px hsl(var(--primary) / 0.4);
  --shadow-glow: 0 0 40px hsl(var(--primary) / 0.2);
  
  /* Typography */
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  --font-size-5xl: 3rem;
  --font-size-6xl: 3.75rem;
  
  /* Transitions */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  line-height: 1.6;
}

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

/* Utility Classes */
.text-gradient {
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(222 84% 25%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: hsl(var(--background) / 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid hsl(var(--border) / 0.3);
  box-shadow: var(--shadow-elegant);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
}

.logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--gradient-primary);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-elegant);
  transition: var(--transition-smooth);
}

.logo-icon:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-premium);
}

.logo-icon span {
  font-size: 1.125rem;
  color: hsl(var(--primary-foreground));
}

.logo-text {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: hsl(var(--foreground));
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  background: none;
  border: none;
  color: hsl(var(--muted-foreground));
  font-size: var(--font-size-base);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.nav-link:hover {
  color: hsl(var(--foreground));
}

.header-actions {
  display: none;
  align-items: center;
  gap: 1rem;
}

.phone-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: hsl(var(--muted-foreground));
  font-size: var(--font-size-sm);
}

.mobile-menu-btn {
  display: block;
  background: none;
  border: none;
  color: hsl(var(--muted-foreground));
  cursor: pointer;
  padding: 0.5rem;
  transition: var(--transition-smooth);
}

.mobile-menu-btn:hover {
  color: hsl(var(--foreground));
}

.nav-mobile {
  display: none;
  border-top: 1px solid hsl(var(--border));
}

.nav-mobile.open {
  display: block;
}

.mobile-nav-content {
  padding: 1rem 0;
}

.mobile-nav-link {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.75rem 1rem;
  background: none;
  border: none;
  color: hsl(var(--muted-foreground));
  font-size: var(--font-size-base);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.mobile-nav-link:hover {
  color: hsl(var(--foreground));
}

.mobile-contact {
  padding: 1rem;
  border-top: 1px solid hsl(var(--border));
}

.mobile-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-size: var(--font-size-sm);
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-primary {
  background: var(--gradient-primary);
  color: hsl(var(--primary-foreground));
  box-shadow: var(--shadow-elegant);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-premium);
}

.btn-outline {
  background: transparent;
  color: hsl(var(--foreground));
  border: 1px solid hsl(var(--border));
}

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

.btn-hero {
  background: var(--gradient-primary);
  color: hsl(var(--primary-foreground));
  padding: 1rem 2rem;
  font-size: var(--font-size-base);
  box-shadow: var(--shadow-premium);
}

.btn-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 25px 50px -12px hsl(var(--primary) / 0.6);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: var(--font-size-xs);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: var(--font-size-lg);
  height: 4rem;
}

.btn-emergency {
  background: linear-gradient(135deg, #dc2626, #991b1b);
  color: white;
  width: 100%;
}

.btn-emergency:hover {
  background: linear-gradient(135deg, #991b1b, #7f1d1d);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, 
    hsl(var(--background)) 0%, 
    hsl(var(--secondary)) 50%, 
    hsl(var(--background)) 100%);
  position: relative;
  overflow: hidden;
  padding-top: 4rem;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('src/assets/buenos-aires-cityscape.jpg') center/cover;
  opacity: 0.1;
  z-index: -1;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  min-height: 80vh;
}

.hero-text {
  animation: fadeInUp 1s ease-out;
}

.urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: hsl(var(--primary) / 0.1);
  color: hsl(var(--primary));
  border-radius: 9999px;
  font-size: var(--font-size-sm);
  font-weight: 500;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: var(--font-size-4xl);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-title span {
  display: block;
}

.hero-description {
  font-size: var(--font-size-xl);
  color: hsl(var(--muted-foreground));
  margin-bottom: 2rem;
  max-width: 32rem;
  line-height: 1.6;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.feature-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  box-shadow: var(--shadow-elegant);
  transition: var(--transition-smooth);
}

.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-premium);
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  background: hsl(var(--primary) / 0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--primary));
}

.feature-text h3 {
  font-size: var(--font-size-base);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.feature-text p {
  font-size: var(--font-size-sm);
  color: hsl(var(--muted-foreground));
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: var(--font-size-sm);
  color: hsl(var(--muted-foreground));
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: hsl(var(--card));
  border-radius: var(--radius);
  border: 1px solid hsl(var(--border));
}

.hero-visual {
  position: relative;
  animation: slideInRight 1s ease-out;
}

.justice-symbol {
  position: relative;
  max-width: 32rem;
  margin: 0 auto;
}

.justice-card {
  width: 100%;
  height: 24rem;
  background: var(--gradient-primary);
  border-radius: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: hsl(var(--primary-foreground));
  box-shadow: var(--shadow-premium);
  position: relative;
  overflow: hidden;
}

.justice-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(255,255,255,0.1), transparent);
  transform: translateX(-100%);
  transition: transform 1s ease;
}

.justice-card:hover::before {
  transform: translateX(100%);
}

.justice-icon {
  font-size: 6rem;
  margin-bottom: 1.5rem;
  animation: float 3s ease-in-out infinite;
}

.justice-card h3 {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: 0.1em;
}

.justice-card p {
  font-size: var(--font-size-lg);
  opacity: 0.9;
  font-weight: 500;
}

.floating-element {
  position: absolute;
  width: 4rem;
  height: 4rem;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: var(--shadow-elegant);
  animation: float 3s ease-in-out infinite;
}

.floating-1 {
  top: 2rem;
  right: 2rem;
  animation-delay: 0s;
}

.floating-2 {
  bottom: 2rem;
  left: 2rem;
  animation-delay: 1s;
}

.floating-3 {
  top: 50%;
  left: -1rem;
  animation-delay: 2s;
}

/* Sections */
.section-padding {
  padding: 6rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  animation: fadeInUp 1s ease-out;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  background: hsl(var(--primary) / 0.1);
  color: hsl(var(--primary));
  border: 1px solid hsl(var(--primary) / 0.2);
  border-radius: 9999px;
  font-size: var(--font-size-sm);
  font-weight: 500;
  margin-bottom: 1rem;
}

.section-title {
  font-size: var(--font-size-3xl);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.section-title span {
  display: block;
}

.section-description {
  font-size: var(--font-size-xl);
  color: hsl(var(--muted-foreground));
  max-width: 48rem;
  margin: 0 auto;
}

/* Services Section */
.services {
  padding: 6rem 0;
  background: hsl(var(--muted) / 0.3);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.service-card {
  padding: 2rem;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  box-shadow: var(--shadow-elegant);
  transition: var(--transition-smooth);
  animation: slideInUp 1s ease-out;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-premium);
}

.service-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: white;
  transition: var(--transition-smooth);
}

.service-icon.penal {
  background: linear-gradient(135deg, #1f2937, #000000);
}

.service-icon.civil {
  background: linear-gradient(135deg, #4b5563, #374151);
}

.service-icon.laboral {
  background: linear-gradient(135deg, #6b7280, #4b5563);
}

.service-icon.familia {
  background: linear-gradient(135deg, #374151, #1f2937);
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(6deg);
}

.service-card h3 {
  font-size: var(--font-size-xl);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.service-card > p {
  color: hsl(var(--muted-foreground));
  margin-bottom: 1rem;
  font-size: var(--font-size-sm);
  line-height: 1.6;
}

.service-features {
  list-style: none;
}

.service-features li {
  display: flex;
  align-items: center;
  font-size: var(--font-size-sm);
  color: hsl(var(--muted-foreground));
  margin-bottom: 0.5rem;
}

.service-features li::before {
  content: '';
  width: 0.375rem;
  height: 0.375rem;
  background: hsl(var(--primary));
  border-radius: 50%;
  margin-right: 0.75rem;
}

.services-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.info-card {
  padding: 2.5rem;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  box-shadow: var(--shadow-elegant);
  text-align: center;
  transition: var(--transition-smooth);
}

.info-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-premium);
}

.info-icon {
  width: 5rem;
  height: 5rem;
  border-radius: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 2.5rem;
  transition: var(--transition-smooth);
}

.info-icon.urgencias {
  background: linear-gradient(135deg, #1f2937, #000000);
}

.info-icon.cobertura {
  background: linear-gradient(135deg, hsl(var(--accent)), hsl(var(--accent)));
}

.info-card:hover .info-icon {
  transform: scale(1.1) rotate(6deg);
}

.info-card h3 {
  font-size: var(--font-size-3xl);
  font-weight: 700;
  margin-bottom: 1rem;
}

.info-card p {
  color: hsl(var(--muted-foreground));
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.services-cta {
  text-align: center;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background: hsl(var(--accent) / 0.1);
  color: hsl(var(--accent-foreground));
  border-radius: 9999px;
  font-size: var(--font-size-sm);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.services-cta h3 {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  margin-bottom: 1rem;
}

.services-cta p {
  color: hsl(var(--muted-foreground));
  margin-bottom: 2rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* About Section */
.about {
  padding: 6rem 0;
  background: linear-gradient(135deg, 
    hsl(var(--background)) 0%, 
    hsl(var(--secondary) / 0.2) 100%);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text {
  animation: fadeInUp 1s ease-out;
}

.about-description {
  margin-bottom: 2rem;
}

.about-description p {
  color: hsl(var(--muted-foreground));
  margin-bottom: 1rem;
  line-height: 1.8;
}

.about-description .emphasis {
  font-weight: 500;
  color: hsl(var(--foreground));
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.value-card {
  padding: 1.5rem;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  box-shadow: var(--shadow-elegant);
  transition: var(--transition-smooth);
}

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

.value-icon {
  width: 3rem;
  height: 3rem;
  background: var(--gradient-primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  transition: var(--transition-smooth);
}

.value-card:hover .value-icon {
  transform: scale(1.1);
}

.value-card h4 {
  font-size: var(--font-size-lg);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.value-card p {
  font-size: var(--font-size-sm);
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
}

.about-stats {
  animation: slideInRight 1s ease-out;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.stat-card {
  padding: 2rem;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  box-shadow: var(--shadow-elegant);
  text-align: center;
  transition: var(--transition-smooth);
}

.stat-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-premium);
}

.stat-icon {
  width: 4rem;
  height: 4rem;
  background: var(--gradient-primary);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--primary-foreground));
  margin: 0 auto 1.5rem;
  transition: var(--transition-smooth);
}

.stat-card:hover .stat-icon {
  transform: scale(1.1) rotate(6deg);
}

.stat-number {
  font-size: var(--font-size-4xl);
  font-weight: 900;
  background: var(--gradient-primary);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.75rem;
}

.stat-label {
  font-size: var(--font-size-xs);
  color: hsl(var(--muted-foreground));
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.professional-image {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 1rem;
  background: linear-gradient(135deg, 
    hsl(var(--primary) / 0.1), 
    hsl(var(--accent) / 0.1));
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-content {
  text-align: center;
}

.image-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.image-content h3 {
  font-size: var(--font-size-xl);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.image-content p {
  color: hsl(var(--muted-foreground));
}

.quality-badge {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  background: hsl(var(--accent));
  color: hsl(var(--accent-foreground));
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: var(--font-size-sm);
  font-weight: 600;
  box-shadow: var(--shadow-elegant);
}

/* Contact Section */
.contact {
  padding: 6rem 0;
  background: hsl(var(--muted) / 0.3);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.contact-info h3 {
  font-size: var(--font-size-2xl);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.contact-cards {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  box-shadow: var(--shadow-elegant);
  transition: var(--transition-smooth);
}

.contact-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-premium);
}

.contact-icon {
  width: 4rem;
  height: 4rem;
  background: var(--gradient-primary);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--primary-foreground));
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.contact-card:hover .contact-icon {
  transform: scale(1.1);
}

.contact-details h4 {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.contact-details p {
  font-size: var(--font-size-sm);
  color: hsl(var(--muted-foreground));
  margin-bottom: 0.75rem;
}

.emergency-contact {
  padding: 1.5rem;
  background: linear-gradient(135deg, #fef2f2, #fee2e2);
  border: 1px solid #fca5a5;
  border-radius: var(--radius);
}

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

.emergency-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: #dc2626;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.emergency-contact h4 {
  font-weight: 600;
  color: #991b1b;
}

.emergency-contact p {
  color: #7f1d1d;
  font-size: var(--font-size-sm);
  margin-bottom: 1rem;
}

.quick-contact {
  animation: slideInUp 1s ease-out;
}

.quick-contact-card {
  padding: 2.5rem;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  box-shadow: var(--shadow-premium);
}

.quick-contact h3 {
  font-size: var(--font-size-3xl);
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
  background: var(--gradient-primary);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.quick-actions {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-guarantee {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: hsl(var(--muted) / 0.5);
  text-align: center;
}

.guarantee-title {
  font-size: var(--font-size-lg);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.guarantee-subtitle {
  font-size: var(--font-size-sm);
  color: hsl(var(--muted-foreground));
}

/* Footer */
.footer {
  background: var(--gradient-primary);
  color: hsl(var(--primary-foreground));
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, 
    rgba(255,255,255,0.05), 
    transparent, 
    rgba(255,255,255,0.05));
}

.footer-content {
  padding: 4rem 0;
  position: relative;
  z-index: 10;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-brand p {
  color: rgba(255,255,255,0.8);
  font-size: var(--font-size-sm);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-urgency {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--font-size-sm);
  color: rgba(255,255,255,0.8);
}

.footer-section h3 {
  font-size: var(--font-size-lg);
  font-weight: 600;
  margin-bottom: 1rem;
}

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

.footer-section li {
  margin-bottom: 0.5rem;
  font-size: var(--font-size-sm);
  color: rgba(255,255,255,0.8);
}

.footer-section button {
  background: none;
  border: none;
  color: rgba(255,255,255,0.8);
  cursor: pointer;
  font-size: var(--font-size-sm);
  transition: var(--transition-smooth);
}

.footer-section button:hover {
  color: white;
}

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

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: var(--font-size-sm);
}

.footer-contact-item a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.footer-contact-item a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding: 2rem 0;
  position: relative;
  z-index: 10;
}

.footer-bottom-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

.copyright {
  font-size: var(--font-size-sm);
  color: rgba(255,255,255,0.8);
}

.footer-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: var(--font-size-sm);
  color: rgba(255,255,255,0.8);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

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

/* Responsive Design */
@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
  
  .mobile-menu-btn {
    display: none;
  }
  
  .hero-content {
    grid-template-columns: 1fr 1fr;
  }
  
  .hero-title {
    font-size: var(--font-size-5xl);
  }
  
  .section-title {
    font-size: var(--font-size-4xl);
  }
  
  .about-content {
    grid-template-columns: 1fr 1fr;
  }
  
  .contact-content {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-bottom-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

@media (min-width: 1024px) {
  .header-actions {
    display: flex;
  }
  
  .hero-title {
    font-size: var(--font-size-6xl);
  }
  
  .section-title {
    font-size: var(--font-size-5xl);
  }
}