﻿/* ===== Base ===== */
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; }
::selection { background: #ff7a2f; color: #fff; }

/* ===== Reusable ===== */
.section-tag {
  display: inline-block;
  color: #ff7a2f;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: 2rem;
  line-height: 1.15;
  font-weight: 900;
  color: #0f172a;
  max-width: 760px;
}

.section-text {
  font-size: 1.05rem;
  color: #64748b;
  margin-top: 1rem;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .section-title { font-size: 3rem; }
}

/* ===== Header ===== */
.nav-link { position: relative; transition: 0.3s ease; }
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 3px;
  border-radius: 50px;
  background: #ff7a2f;
  transition: 0.3s ease;
}

.nav-link:hover,
.nav-link.active { color: #ff7a2f; }

.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

.mobile-link {
  padding: 0.85rem 1rem;
  border-radius: 0.9rem;
  transition: 0.3s ease;
}

.mobile-link:hover { background: #fff7ed; color: #ff7a2f; }

/* ===== Hero ===== */
.hero-section { background: #020617; }
.hero-gradient {
  background:
    radial-gradient(circle at top left, rgba(255, 122, 47, 0.18), transparent 36%),
    linear-gradient(90deg, rgba(2, 6, 23, 0.62) 0%, rgba(2, 6, 23, 0.42) 45%, rgba(2, 6, 23, 0.16) 100%);
}
.hero-gradient-light {
  background: linear-gradient(90deg, rgba(2,6,23,.68) 0%, rgba(2,6,23,.50) 50%, rgba(2,6,23,.35) 100%);
}

.glass-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-slide { opacity: 0; transition: opacity 1000ms ease; }
.hero-slide.active { opacity: 1; z-index: 2; }

.hero-bg {
  transform: scale(1.02);
  filter: saturate(1.02);
}

.hero-caption { opacity: 1; transform: none; }
.hero-caption *:not(.pulse-dot) { transition: none; }

@keyframes heroTextIn {
  from { opacity: 0; transform: translateX(-24px); }
  to { opacity: 1; transform: translateX(0); }
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.45);
  border: 1px solid rgba(255,255,255,.7);
  transition: all .3s ease;
}
.hero-dot.active {
  width: 28px;
  background: #ff7a2f;
  border-color: #ff7a2f;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .65);
  color: #fff;
  background: rgba(15, 23, 42, .25);
  font-size: 30px;
  line-height: 1;
  display: grid;
  place-items: center;
  transition: all .25s ease;
}
.hero-arrow:hover {
  background: #ff7a2f;
  border-color: #ff7a2f;
}
.hero-prev { left: 18px; }
.hero-next { right: 18px; }

.floating-orb { animation: floatY 6s ease-in-out infinite; }
.floating-orb-delay { animation: floatY 7.5s ease-in-out infinite; }
@keyframes floatY {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-24px); }
}

.pulse-dot { animation: pulseDot 1.8s infinite; }
@keyframes pulseDot {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.5; }
  100% { transform: scale(1); opacity: 1; }
}

/* ===== Entrance animations ===== */
.fade-up {
  opacity: 0;
  transform: translateY(35px);
  animation: fadeUp 0.9s ease forwards;
}
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slide-in-right {
  opacity: 0;
  transform: translateX(40px);
  animation: slideInRight 1s ease 0.3s forwards;
}
@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.bounce-soft { animation: bounceSoft 4s ease-in-out infinite; }
@keyframes bounceSoft {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.spin-slow { animation: spinSlow 18s linear infinite; }
@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.rotate-soft { animation: rotateSoft 5s ease-in-out infinite alternate; }
@keyframes rotateSoft {
  from { transform: rotate(-3deg); }
  to { transform: rotate(3deg); }
}

/* ===== Trust ===== */
.trust-item {
  text-align: center;
  padding: 1rem;
  border: 1px dashed #cbd5e1;
  border-radius: 999px;
  font-weight: 700;
  color: #334155;
  background: #fff;
  transition: 0.35s ease;
}
.trust-item:hover {
  transform: translateY(-4px);
  border-color: #ff7a2f;
  color: #ff7a2f;
  box-shadow: 0 10px 20px rgba(0,0,0,0.06);
}

/* ===== Cards ===== */
.service-card, .blog-card {
  background: #fff;
  border-radius: 1.75rem;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
  transition: 0.4s ease;
  position: relative;
}
.service-card:hover, .blog-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 28px 50px rgba(15, 23, 42, 0.13);
}

.service-img, .blog-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: 0.6s ease;
}
.service-card:hover .service-img,
.blog-card:hover .blog-img { transform: scale(1.08); }

.service-body, .blog-body { padding: 1.8rem; }
.service-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #ff7a2f, #fb923c);
  color: white;
  font-size: 1.5rem;
  border-radius: 1.2rem;
  margin-top: -3.5rem;
  position: relative;
  z-index: 2;
  box-shadow: 0 10px 30px rgba(255,122,47,0.35);
}

.service-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #0f172a;
  margin-top: 1rem;
  margin-bottom: 0.75rem;
}
.service-text, .blog-text { color: #64748b; line-height: 1.8; }

.service-link {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 800;
  color: #ff7a2f;
  transition: 0.3s ease;
}
.service-link:hover { letter-spacing: 0.03em; }

/* ===== Features ===== */
.feature-box {
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: 1.25rem;
  padding: 1.25rem;
  transition: 0.35s ease;
}
.feature-box:hover {
  transform: translateY(-5px);
  background: #fff;
  box-shadow: 0 18px 30px rgba(255,122,47,0.10);
}
.feature-box h3 { font-weight: 800; color: #0f172a; margin-bottom: 0.45rem; }
.feature-box p { color: #64748b; line-height: 1.7; }

/* ===== Process ===== */
.process-card {
  position: relative;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(12px);
  border-radius: 1.75rem;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: 0.35s ease;
  overflow: hidden;
}
.process-card:hover { transform: translateY(-8px); background: rgba(255,122,47,0.14); }
.process-number {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-weight: 900;
  font-size: 0.95rem;
  color: #fb923c;
}
.process-icon {
  width: 88px;
  height: 88px;
  border-radius: 999px;
  background: #fff;
  color: #0f172a;
  display: grid;
  place-items: center;
  font-size: 2rem;
  margin: 0 auto 1.2rem;
  box-shadow: 0 10px 30px rgba(255,255,255,0.1);
}
.process-card h3 { font-size: 1.25rem; font-weight: 800; margin-bottom: 0.8rem; }
.process-card p { color: #e2e8f0; line-height: 1.8; font-size: 0.98rem; }

.stat-box {
  background: white;
  border-radius: 1.25rem;
  padding: 1.4rem;
  border: 1px solid #e2e8f0;
  transition: 0.35s ease;
}
.stat-box:hover {
  transform: translateY(-5px);
  border-color: #fdba74;
  box-shadow: 0 18px 30px rgba(15,23,42,0.07);
}
.stat-box h3 { font-weight: 800; color: #0f172a; margin-bottom: 0.5rem; }
.stat-box p { color: #64748b; line-height: 1.7; }

.blog-date {
  color: #ff7a2f;
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.blog-title {
  color: #0f172a;
  font-size: 1.35rem;
  line-height: 1.4;
  font-weight: 800;
  margin-top: 0.8rem;
}

/* ===== Forms ===== */
.form-control {
  width: 100%;
  border: 1px solid #cbd5e1;
  background: #fff;
  color: #0f172a;
  border-radius: 1rem;
  padding: 1rem 1.1rem;
  outline: none;
  transition: 0.3s ease;
}
.form-control:focus {
  border-color: #ff7a2f;
  box-shadow: 0 0 0 4px rgba(255, 122, 47, 0.14);
}

.footer-title { color: white; font-weight: 800; font-size: 1.15rem; margin-bottom: 1rem; }
.footer-link { color: #94a3b8; transition: 0.3s ease; }
.footer-link:hover { color: #ff7a2f; padding-left: 0.2rem; }

.reveal-left, .reveal-right {
  opacity: 0;
  transition: all 1s ease;
}
.reveal-left { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }
.show-element { opacity: 1 !important; transform: translateX(0) !important; }

.inner-section-card {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 14px 34px rgba(15, 23, 42, .08);
  border: 1px solid #e2e8f0;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .55rem .95rem;
  border-radius: 999px;
  border: 1px solid #fed7aa;
  background: #fff7ed;
  color: #9a3412;
  font-weight: 700;
  font-size: .86rem;
}

@media (max-width: 767px) {
  .section-title { font-size: 2rem; }
  .service-img, .blog-img { height: 220px; }
}
