/* ============================================================
   HOME PAGE STYLES — css/home.css
   ============================================================ */

/* ===================== HERO ===================== */
.hero {
  min-height: 100vh;
  background: var(--teal-dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 20px 60px;
  position: relative;
  overflow: hidden;
  background-image: url("../assests/images/shivaro-banner.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  align-items: center;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 70% 40%, rgba(0,160,187,0.12) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(0,77,94,0.8) 0%, transparent 40%);
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

/* Eyebrow */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,160,187,0.15);
  border: 1px solid rgba(0,160,187,0.4);
  border-radius: 100px;
  padding: 6px 14px;
  margin-bottom: 28px;
}

.hero-eyebrow span {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--teal-light);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
}

.hero-dot {
  width: 6px; height: 6px;
  background: var(--teal-light);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

/* Hero Text */
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(34px, 6vw, 72px);
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 24px;
  max-width: 780px;
}

.hero h1 .accent {
  color: var(--teal-light);
  display: block;
}

.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255,255,255,0.75);
  max-width: 600px;
  line-height: 1.75;
  margin-bottom: 40px;
  font-weight: 300;
}

/* Hero Actions */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 56px;
}

/* Trust Bar */
.trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 32px;
}

.trust-item {
  flex: 1;
  min-width: 120px;
  padding: 0 24px 0 0;
  border-right: 1px solid rgba(255,255,255,0.1);
  margin-right: 24px;
}

.trust-item:last-child { border-right: none; margin-right: 0; }

.trust-number {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 700;
  color: var(--teal-light);
  line-height: 1;
}

.trust-label {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
  font-weight: 500;
}

/* Hero Animations */
.hero-inner > * {
  animation: fadeUp 0.7s ease both;
}
.hero-eyebrow  { animation-delay: 0.1s; }
.hero h1       { animation-delay: 0.2s; }
.hero-sub      { animation-delay: 0.32s; }
.hero-actions  { animation-delay: 0.42s; }
.trust-bar     { animation-delay: 0.52s; }

/* ===================== SERVICES PREVIEW ===================== */
.services-preview-section {
  background: var(--white);
}

.services-header {
  max-width: 640px;
  margin-bottom: 52px;
}

.services-intro {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--gray-dark);
  line-height: 1.75;
  margin-top: 16px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid rgba(0,100,123,0.08);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: rgba(0,100,123,0.2);
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  font-size: 32px;
  margin-bottom: 16px;
  display: block;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--black-soft);
  margin-bottom: 10px;
}

.service-desc {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--gray-dark);
  line-height: 1.7;
  margin-bottom: 16px;
}

.service-link {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
  transition: var(--transition);
  display: inline-block;
}

.service-link:hover {
  color: var(--teal-dark);
  transform: translateX(4px);
}

/* Outline Button */
.btn-outline-navy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 8px;
  border: 2px solid var(--teal);
  color: var(--teal);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  transition: var(--transition);
}

.btn-outline-navy:hover {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-2px);
}

/* ===================== PROCESS SECTION ===================== */
.process-section {
  background: var(--gray-light);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 32px;
  margin-top: 52px;
}

.process-step {
  text-align: center;
  padding: 0 20px;
}

.step-circle {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 0 0 8px rgba(0,100,123,0.08);
}

.step-number {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--teal);
}

.process-step h3 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--black-soft);
  margin-bottom: 10px;
}

.process-step p {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--gray-dark);
  line-height: 1.7;
}

/* ===================== TESTIMONIALS ===================== */
.testimonials-section {
  background: #004d5ed9;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.testimonial-card {
  background:  rgb(73 68 68 / 38%);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.quote-mark {
  font-family: var(--font-display);
  font-size: 56px;
  color: var(--teal-light);
  line-height: 0.8;
  margin-bottom: 16px;
  display: block;
  opacity: 0.7;
}

.testimonial-text {
  font-family: var(--font-display);
  font-size: 16px;
  color: white;
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author strong {
  font-family: var(--font-body);
  display: block;
  color: var(--teal-light);
  font-size: 14px;
  font-weight: 600;
}

.testimonial-author span {
  font-family: var(--font-body);
  color: rgba(255,255,255,0.45);
  font-size: 12px;
}

/* ===================== WHY WE WORK ===================== */
.why-section {
  background: var(--teal-dark);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 20px 60px;
  position: relative;
  overflow: hidden;
  background-image: url("../assests/images/shivaro-logo.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  align-items: center;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 52px;
}

.why-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}

.why-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(0,160,187,0.4);
  transform: translateY(-3px);
}

.why-num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  color: rgba(0,160,187,0.25);
  line-height: 1;
  margin-bottom: 10px;
}

.why-card h3 {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--teal-light);
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.why-card p {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

/* ===================== RESPONSIVE — HOME ===================== */
@media (max-width: 600px) {
  .hero { padding: 90px 16px 48px; }

  .trust-bar { gap: 16px; flex-wrap: wrap; }

  .trust-item {
    flex: 0 0 calc(50% - 8px);
    min-width: unset;
    border-right: none;
    margin-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding-bottom: 16px;
  }

  .trust-item:nth-child(odd) {
    border-right: 1px solid rgba(255,255,255,0.08);
  }

  .trust-item:last-child,
  .trust-item:nth-last-child(2):nth-child(odd) {
    border-bottom: none;
  }

  .services-grid,
  .testimonials-grid,
  .process-steps,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }
}