 /* public/css/hero.css */

/* ===== HERO SECTION ===== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 90px; /* Account for fixed nav */
  padding-bottom: var(--space-4xl);
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--warm-white) 0%, var(--warm-beige) 100%);
  z-index: -2;
}

.hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(244, 208, 63, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(156, 175, 136, 0.1) 0%, transparent 50%);
  z-index: -1;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3xl);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== HERO TEXT CONTENT ===== */
.hero-text {
  text-align: center;
  order: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  background: var(--sage-green);
  color: var(--warm-white);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--space-lg);
  animation: slideInDown 0.8s ease-out;
}

.hero-badge i {
  font-size: 0.9em;
}

.hero-title {
  margin-bottom: var(--space-lg);
  animation: slideInUp 0.8s ease-out 0.2s both;
}

.hero-title-main {
  display: block;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: var(--weight-bold);
  line-height: 1.1;
  color: var(--charcoal);
  margin-bottom: var(--space-sm);
}

.hero-subtitle {
  font-size: var(--text-xl);
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: var(--space-2xl);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  animation: slideInUp 0.8s ease-out 0.4s both;
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
  animation: slideInUp 0.8s ease-out 0.6s both;
}

.hero-feature {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--gray-700);
}

.feature-icon {
  color: var(--honey-gold);
  font-size: 1.1em;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
  animation: slideInUp 0.8s ease-out 0.8s both;
}

/* ===== HERO IMAGE ===== */
.hero-image {
  order: 1;
  display: flex;
  justify-content: center;
  animation: slideInUp 0.8s ease-out 1s both;
}

.hero-image-container {
  position: relative;
  width: 280px;
  height: 350px;
  max-width: 100%;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
  position: relative;
  z-index: 2;
}

.hero-image-decoration {
  position: absolute;
  top: -15px;
  left: -15px;
  right: 15px;
  bottom: 15px;
  background: var(--honey-gold);
  border-radius: var(--radius-2xl);
  z-index: 1;
  opacity: 0.8;
}

/* ===== SERVICES PREVIEW SECTION ===== */
.services-preview-section {
  background: var(--warm-white);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-4xl);
}

.section-title {
  font-size: var(--text-3xl);
  font-weight: var(--weight-bold);
  color: var(--charcoal);
  margin-bottom: var(--space-md);
}

.section-subtitle {
  font-size: var(--text-lg);
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-3xl);
}

.service-card {
  background: var(--warm-white);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  border: 1px solid rgba(244, 208, 63, 0.1);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: var(--honey-gold);
}

.service-card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--honey-gold), #F1C40F);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
}

.service-icon {
  font-size: 2rem;
  color: var(--charcoal);
}

.service-card-content {
  flex: 1;
}

.service-card-title {
  font-size: var(--text-xl);
  font-weight: var(--weight-semibold);
  color: var(--charcoal);
  margin-bottom: var(--space-md);
}

.service-card-description {
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
}

.service-card-meta {
  margin-bottom: var(--space-lg);
}

.service-duration {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  background: var(--sage-green);
  color: var(--warm-white);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--honey-gold);
  font-weight: var(--weight-semibold);
  text-decoration: none;
  transition: var(--transition-normal);
}

.service-card-link:hover {
  color: var(--soft-brown);
  gap: var(--space-md);
  text-decoration: none;
}

.services-cta {
  text-align: center;
}

/* ===== ABOUT PREVIEW SECTION ===== */
.about-preview-section {
  background: var(--warm-beige);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.about-image {
  order: 1;
  display: flex;
  justify-content: center;
}

.about-image-container {
  position: relative;
  width: 300px;
  height: 400px;
  max-width: 100%;
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}

.about-image-decoration {
  position: absolute;
  top: 20px;
  right: -20px;
  bottom: -20px;
  left: 20px;
  background: var(--sage-green);
  border-radius: var(--radius-2xl);
  z-index: 1;
  opacity: 0.7;
}

.about-text {
  order: 2;
  text-align: center;
}

.about-title {
  font-size: var(--text-3xl);
  font-weight: var(--weight-bold);
  color: var(--charcoal);
  margin-bottom: var(--space-lg);
}

.about-description {
  font-size: var(--text-lg);
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
}

.about-credential {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: var(--warm-white);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-xl);
  box-shadow: var(--shadow-sm);
}

.credential-icon {
  color: var(--honey-gold);
  font-size: 1.2em;
}

.credential-text {
  font-weight: var(--weight-semibold);
  color: var(--charcoal);
}

/* ===== TRUST SECTION ===== */
.trust-section {
  background: var(--warm-white);
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
}

.trust-card {
  text-align: center;
  padding: var(--space-xl);
}

.trust-card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--sage-green), #7A9471);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
}

.trust-icon {
  font-size: 1.75rem;
  color: var(--warm-white);
}

.trust-card-title {
  font-size: var(--text-xl);
  font-weight: var(--weight-semibold);
  color: var(--charcoal);
  margin-bottom: var(--space-md);
}

.trust-card-description {
  color: var(--gray-600);
  line-height: 1.6;
}

/* ===== FINAL CTA SECTION ===== */
.final-cta-section {
  background: var(--honey-gold);
}

.final-cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xl);
  text-align: center;
}

.final-cta-title {
  font-size: var(--text-3xl);
  font-weight: var(--weight-bold);
  color: var(--charcoal);
  margin-bottom: var(--space-md);
}

.final-cta-subtitle {
  font-size: var(--text-lg);
  color: var(--charcoal);
  opacity: 0.8;
  max-width: 500px;
  line-height: 1.6;
}

.final-cta-btn.whatsapp-btn-secondary {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: var(--warm-white);
}

.final-cta-btn.whatsapp-btn-secondary:hover {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}

/* ===== ANIMATIONS ===== */
@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== RESPONSIVE DESIGN ===== */

/* Small Mobile */
@media (max-width: 480px) {
  .hero-section {
    padding-top: 80px;
    padding-bottom: var(--space-2xl);
  }
  
  .hero-actions {
    width: 100%;
  }
  
  .hero-actions .btn {
    width: 100%;
    max-width: 280px;
  }
  
  .hero-image-container {
    width: 240px;
    height: 300px;
  }
}

/* Tablet */
@media (min-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr 400px;
    gap: var(--space-4xl);
  }
  
  .hero-text {
    text-align: left;
    order: 1;
  }
  
  .hero-image {
    order: 2;
  }
  
  .hero-features {
    flex-direction: row;
    justify-content: flex-start;
    gap: var(--space-xl);
  }
  
  .hero-actions {
    flex-direction: row;
    justify-content: flex-start;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about-content {
    grid-template-columns: 400px 1fr;
    gap: var(--space-4xl);
  }
  
  .about-text {
    text-align: left;
    order: 1;
  }
  
  .about-image {
    order: 2;
  }
  
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .final-cta-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr 450px;
  }
  
  .hero-image-container {
    width: 350px;
    height: 450px;
  }
  
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .about-content {
    grid-template-columns: 450px 1fr;
  }
  
  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Large Desktop */
@media (min-width: 1280px) {
  .hero-section {
    min-height: 90vh;
  }
  
  .section-title {
    font-size: var(--text-4xl);
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .hero-badge,
  .hero-title,
  .hero-subtitle,
  .hero-features,
  .hero-actions,
  .hero-image {
    animation: none;
  }
  
  .service-card:hover,
  .service-card-link:hover {
    transform: none;
  }
}

/* Print Styles */
@media print {
  .hero-section {
    min-height: auto;
    padding: var(--space-lg) 0;
  }
  
  .hero-actions,
  .services-cta,
  .final-cta-section {
    display: none !important;
  }
}
