/* ===== INDEX PAGE STYLES ===== */

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.35) saturate(1.2);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(5,8,16,0.95) 0%,
    rgba(5,8,16,0.6) 50%,
    rgba(10,15,30,0.85) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 140px 5% 100px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(232,93,10,0.1);
  border: 1px solid rgba(232,93,10,0.4);
  border-radius: 50px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  animation: fadeInDown 0.8s ease forwards;
}

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

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.5; }
}

.hero-title {
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
  color: #fff;
  margin-bottom: 24px;
  animation: fadeInUp 0.9s ease 0.2s both;
}

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(232,234,240,0.75);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 40px;
  animation: fadeInUp 0.9s ease 0.4s both;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  animation: fadeInUp 0.9s ease 0.6s both;
  margin-bottom: 60px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  animation: fadeInUp 0.9s ease 0.8s both;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  backdrop-filter: blur(20px);
  padding: 20px 30px;
  width: fit-content;
}

.stat-item { text-align: center; padding: 0 20px; }

.stat-num {
  font-size: 32px;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-label {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}

.stat-divider {
  width: 1px; height: 40px;
  background: var(--glass-border);
}

/* SCROLL INDICATOR */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 2;
  animation: fadeIn 1s ease 1.2s both;
}

.scroll-indicator {
  width: 28px; height: 46px;
  border: 2px solid rgba(232,93,10,0.4);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.scroll-dot {
  width: 4px; height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollAnim 2s infinite;
}

@keyframes scrollAnim {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(16px); opacity: 0; }
}

/* MARQUEE */
.marquee-wrap {
  overflow: hidden;
  background: rgba(232,93,10,0.06);
  border-top: 1px solid rgba(232,93,10,0.15);
  border-bottom: 1px solid rgba(232,93,10,0.15);
  padding: 14px 0;
  position: relative;
  z-index: 1;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 30px;
  white-space: nowrap;
  animation: marquee 25s linear infinite;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}

.marquee-track .dot { color: rgba(232,93,10,0.5); font-size: 8px; }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* HOME SERVICES */
.home-services { padding: 100px 0; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}

.service-card {
  padding: 36px 30px;
  transition-delay: var(--delay, 0s);
}

.service-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(232,93,10,0.12);
  border: 1px solid rgba(232,93,10,0.25);
  border-radius: 14px;
  padding: 12px;
  transition: all 0.3s ease;
}

.service-icon svg {
  width: 100%;
  height: 100%;
  color: #E85D0A;
  stroke: #E85D0A;
  filter: drop-shadow(0 0 6px rgba(232,93,10,0.4));
}

.service-card:hover .service-icon {
  background: rgba(232,93,10,0.2);
  border-color: rgba(232,93,10,0.5);
  transform: scale(1.08);
}

.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-link {
  color: var(--gold);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: gap 0.3s ease, color 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.service-link:hover { color: var(--gold-light); letter-spacing: 1px; }

.center-btn { text-align: center; }

/* WHY US */
.why-us { padding: 80px 5%; }

.why-us-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px;
}

.feature-list { display: flex; flex-direction: column; gap: 20px; }

.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-check {
  width: 28px; height: 28px;
  background: rgba(232,93,10,0.15);
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

.feature-item strong {
  display: block;
  color: var(--text);
  font-size: 15px;
  margin-bottom: 4px;
}

.feature-item p {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.6;
}

.image-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.image-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.image-badge {
  position: absolute;
  bottom: 20px; left: 20px;
  padding: 16px 24px;
  text-align: center;
}

.badge-num {
  font-size: 28px;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.badge-text { font-size: 12px; color: var(--text-muted); }

/* CTA */
.cta-section {
  padding: 100px 5%;
  position: relative;
  overflow: hidden;
  text-align: center;
  z-index: 1;
}

.cta-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(232,93,10,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.cta-content h2 { font-size: clamp(32px, 4vw, 52px); font-weight: 800; margin-bottom: 16px; }
.cta-content p { color: var(--text-muted); font-size: 17px; margin-bottom: 36px; }

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.reveal { transition-delay: var(--delay, 0s); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-us-inner { grid-template-columns: 1fr; padding: 40px; }
  .image-frame { max-width: 500px; margin: 0 auto; }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; width: 100%; }
  .stat-divider { width: 80px; height: 1px; }
  .hero-actions { flex-direction: column; }
  .why-us-inner { padding: 30px 20px; }
}

