/* Page-specific styles for #home-page */

/* Badge animation */
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

body.home-page .badge-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

/* Trust Indicators */
body.home-page .trust-indicators {
  background: linear-gradient(180deg, #ffffff 0%, var(--surface) 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

body.home-page .trust-indicators::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--primary) 50%, transparent 100%);
}

body.home-page .trust-indicators::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--primary) 50%, transparent 100%);
}

body.home-page .trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

body.home-page .trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  cursor: default;
}

body.home-page .trust-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

body.home-page .trust-icon-box {
  width: 50px;
  height: 50px;
  background: var(--gradient-warm);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}

body.home-page .trust-icon-box::after {
  content: "";
  position: absolute;
  inset: -2px;
  background: var(--gradient-1);
  border-radius: 14px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

body.home-page .trust-item:hover .trust-icon-box::after {
  opacity: 0.3;
}

body.home-page .trust-icon-box svg {
  width: 26px;
  height: 26px;
  color: var(--primary-dark);
}

body.home-page .trust-item span {
  font-weight: 600;
  color: var(--text);
  font-size: 15px;
  line-height: 1.3;
}

/* Why Choose Section */
body.home-page .why-choose {
  padding: 100px 0;
  background: linear-gradient(180deg, #ffffff 0%, var(--surface) 100%);
}

body.home-page .section-header {
  text-align: center;
  margin-bottom: 60px;
}

body.home-page .section-label {
  display: inline-block;
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

body.home-page .section-header h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(36px, 5vw, 48px);
  margin: 0 0 16px;
  color: var(--text);
}

body.home-page .section-desc {
  font-size: 18px;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

body.home-page .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

body.home-page .feature-card {
  text-align: center;
  padding: 40px;
}

body.home-page .feature-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-warm);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

body.home-page .feature-icon svg {
  width: 40px;
  height: 40px;
  color: var(--primary-dark);
}

body.home-page .feature-card h3 {
  font-size: 24px;
  margin: 0 0 12px;
  color: var(--text);
}

body.home-page .feature-card p {
  color: var(--text-light);
  line-height: 1.7;
}

/* Split section */
body.home-page .split { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 80px; 
  margin: 100px auto; 
  align-items: center; 
}

body.home-page .split-media {
  position: relative;
}

body.home-page .split-media img { 
  width: 100%; 
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover; 
  border-radius: 24px; 
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

body.home-page .split-media::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  background: var(--gradient-1);
  border-radius: 24px;
  z-index: -1;
  opacity: 0.1;
}

body.home-page .split-copy h2 { 
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 4vw, 42px);
  margin: 0 0 20px;
  color: var(--text);
}

body.home-page .split-copy p {
  font-size: 18px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 24px;
}

body.home-page .checklist {
  list-style: none;
  padding: 0;
}

body.home-page .checklist li {
  padding: 12px 0;
  padding-left: 32px;
  position: relative;
  color: var(--text);
  font-size: 16px;
}

body.home-page .checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 12px;
  width: 20px;
  height: 20px;
  background: var(--gradient-1);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
}

/* Media cards */
body.home-page .media-cards {
  margin: 60px auto 40px;
}

body.home-page .media-cards .media-card { 
  padding: 0; 
  overflow: hidden;
  background: white;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

body.home-page .media-cards .media-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

body.home-page .media-card img { 
  width: 100%; 
  height: 240px; 
  object-fit: cover; 
  display: block;
  transition: transform 0.3s ease;
}

body.home-page .media-card:hover img {
  transform: scale(1.05);
}

body.home-page .media-card-body { 
  padding: 32px;
}

body.home-page .media-card-body h3 {
  font-size: 22px;
  margin: 0 0 12px;
  color: var(--text);
}

body.home-page .media-card-body p {
  color: var(--text-light);
  line-height: 1.7;
}

/* Image grid */
body.home-page .image-grid { 
  display: grid; 
  grid-template-columns: repeat(4, 1fr); 
  gap: 16px; 
  margin: 40px auto 70px; 
  max-width: 1200px;
}

body.home-page .image-grid figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

body.home-page .image-grid figure:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

body.home-page .image-grid img { 
  width: 100%; 
  height: 200px; 
  object-fit: cover; 
  display: block;
  transition: transform 0.3s ease;
}

body.home-page .image-grid figure:hover img {
  transform: scale(1.05);
}

/* Process Section */
body.home-page .process-section { 
  padding: 100px 0;
  background: linear-gradient(180deg, var(--surface) 0%, white 100%);
}

body.home-page .process-section h2 { 
  text-align: center; 
  font-family: "Playfair Display", serif;
  font-size: clamp(36px, 5vw, 48px);
  margin-bottom: 60px;
  color: var(--text);
}

body.home-page .process-steps { 
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

body.home-page .process-step { 
  flex: 0 1 300px;
  text-align: center;
  padding: 0 20px;
}

body.home-page .step-number {
  width: 60px;
  height: 60px;
  background: var(--gradient-1);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 24px;
  margin: 0 auto 24px;
  box-shadow: 0 4px 15px rgba(0,184,148,0.3);
}

body.home-page .process-step h4 {
  font-size: 22px;
  margin: 0 0 12px;
  color: var(--text);
}

body.home-page .process-step p {
  color: var(--text-light);
  line-height: 1.7;
  max-width: 280px;
  margin: 0 auto;
}

body.home-page .process-connector {
  flex: 0 0 80px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  margin-top: 30px;
  position: relative;
}

body.home-page .process-cta { 
  text-align: center; 
}

@media (max-width: 768px) {
  body.home-page .process-steps {
    flex-direction: column;
    align-items: center;
  }
  body.home-page .process-connector {
    width: 2px;
    height: 40px;
    flex: 0 0 40px;
    margin: 20px 0;
  }
}

/* Testimonials */
body.home-page .testimonials { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); 
  gap: 32px; 
  margin: 100px auto;
}

body.home-page .testimonial {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  position: relative;
}

body.home-page .testimonial::before {
  content: "“";
  position: absolute;
  top: 20px;
  left: 32px;
  font-size: 80px;
  color: var(--primary);
  opacity: 0.1;
  font-family: Georgia, serif;
}

body.home-page .testimonial .quote { 
  font-size: 18px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

body.home-page .testimonial .attrib { 
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

body.home-page .testimonial .attrib::before {
  content: "";
  width: 40px;
  height: 2px;
  background: var(--gradient-1);
}

/* CTA Section */
body.home-page .cta-section {
  padding: 80px 0;
  background: var(--surface);
}

body.home-page .cta-card-large {
  background: white;
  border-radius: 24px;
  padding: 60px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  border: 1px solid var(--border);
}

body.home-page .cta-card-large h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 4vw, 42px);
  margin: 0 0 16px;
  color: var(--text);
}

body.home-page .cta-card-large p {
  font-size: 20px;
  color: var(--text-light);
  margin: 0 0 32px;
}

/* Mobile tweaks for homepage only */
@media (max-width: 768px) {
  body.home-page .split { grid-template-columns: 1fr; }
  body.home-page .stepper ol { grid-template-columns: 1fr; }
  body.home-page .testimonials { grid-template-columns: 1fr; }
  body.home-page .trust-grid { grid-template-columns: 1fr; }
  
  body.home-page .cta-card-large {
    padding: 40px 24px;
  }
}


