/* Premium Enhancements - Direction pro, base bleue avec touches logo subtiles */

.hero h1 {
  background: linear-gradient(135deg, #0f172a 0%, #005fc0 62%, #0066cc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.eyebrow {
  letter-spacing: 0.8px;
  text-transform: uppercase;
  font-size: 0.82rem;
  font-weight: 700;
}

.btn {
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.22) 45%, transparent 100%);
  transform: translateX(-120%);
  transition: transform 0.35s ease;
  pointer-events: none;
}

.btn:hover::before {
  transform: translateX(120%);
}

.btn-primary {
  box-shadow: 0 12px 30px rgba(0, 102, 204, 0.24);
}

.btn-primary:hover {
  box-shadow: 0 18px 44px rgba(0, 102, 204, 0.32);
}

.btn-outline {
  border-color: var(--brand);
  color: var(--brand);
}

.btn-outline:hover {
  background: rgba(0, 102, 204, 0.07);
}

.card {
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(0, 61, 122, 0.13);
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--brand), transparent);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.card:hover::before {
  opacity: 1;
}

.service-card {
  border-top: 4px solid var(--brand);
}

.hero-panel {
  border: 1px solid rgba(212, 175, 55, 0.35);
  box-shadow: 0 20px 45px rgba(0, 61, 122, 0.12);
}

.hero-panel h2 {
  color: var(--brand-dark);
}

.section h2 {
  position: relative;
  padding-bottom: 0.9rem;
}

.section h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 64px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand), #2ea6ff 78%, rgba(212, 175, 55, 0.65) 100%);
}

.testimonials .card {
  border-left: 4px solid rgba(212, 175, 55, 0.9);
}

.stars {
  color: #d1af3a;
  letter-spacing: 2px;
}

.project-card img {
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.320, 1);
}

.project-card:hover img {
  transform: scale(1.08);
}

.project-card div {
  flex-grow: 1;
}

/* Testimonial Cards */
.quote {
  border-left: 4px solid var(--brand);
  font-style: italic;
}

.quote p {
  color: var(--text-light);
}

.quote strong {
  color: var(--brand);
  font-style: normal;
}

/* Contact Details */
.contact-details {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(224, 238, 255, 0.3));
}

.contact-details h4 {
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
  font-weight: 700;
}

/* Social Links Enhancement */
.social-links a {
  position: relative;
  padding-bottom: 0.3rem;
}

.social-links a:hover {
  color: var(--accent);
}

/* Reveal Animation Enhancement */
.reveal {
  animation-timeline: view();
  animation-range: entry 0% cover 30%;
}

@supports (animation-timeline: view()) {
  .reveal {
    opacity: 1;
    transform: translateY(0);
    animation: revealOnScroll 0.75s cubic-bezier(0.23, 1, 0.320, 1) forwards;
    animation-timeline: view();
    animation-range: entry 0% cover 30%;
  }

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

/* Responsive Premium */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .section h2::after {
    width: 50px;
  }

  .quick-points li {
    padding: 0.7rem 0.9rem;
  }

  .hero-cta {
    gap: 0.7rem;
  }

  .hero-cta .btn {
    padding: 0.8rem 1.2rem;
    font-size: 0.9rem;
  }
}
