﻿@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800;900&display=swap');

:root {
  --primary: #F0A500;
  --secondary: #0A0F1A;
  --accent: #E63946;
  --text-main: #E2E8F0;
  --text-muted: #94A3B8;
  --bg-main: #06090F;
  --bg-surface: #111827;
  --bg-glass: rgba(17, 24, 39, 0.7);
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Outfit', sans-serif; }
html { scroll-behavior: smooth; }
body { background-color: var(--bg-main); color: var(--text-main); line-height: 1.6; overflow-x: hidden; padding-bottom: 70px; }

/* UTILS */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }
.uppercase { text-transform: uppercase; }
.font-black { font-weight: 900; }
.font-bold { font-weight: 600; }

/* HEADER */
header { background: var(--bg-glass); backdrop-filter: blur(10px); position: sticky; top: 0; z-index: 100; border-bottom: 1px solid rgba(255,255,255,0.05); }
.header-inner { display: flex; justify-content: space-between; align-items: center; height: 80px; }
.logo { font-size: 1.5rem; font-weight: 900; color: #fff; text-decoration: none; letter-spacing: 1px; }
.logo span { color: var(--primary); }
.nav-links { display: flex; gap: 20px; }
.nav-links a { color: var(--text-main); text-decoration: none; font-weight: 600; transition: color 0.3s; }
.nav-links a:hover { color: var(--primary); }
.header-cta { display: flex; align-items: center; gap: 15px; }
.btn { display: inline-block; background: var(--primary); color: #000; padding: 12px 24px; text-decoration: none; font-weight: 800; border-radius: 8px; text-transform: uppercase; transition: all 0.3s; border: none; cursor: pointer; }
.btn:hover { background: #FFC033; transform: translateY(-2px); box-shadow: 0 10px 20px rgba(240, 165, 0, 0.3); }
.btn-outline { background: transparent; border: 2px solid var(--primary); color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: #000; }

/* HERO */
.hero { min-height: 80vh; display: flex; align-items: center; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(circle at center, rgba(240,165,0,0.1) 0%, var(--bg-main) 70%); z-index: -1; }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.hero-content h1 { font-size: 4rem; line-height: 1.1; margin-bottom: 20px; text-transform: uppercase; font-weight: 900; }
.hero-content p { font-size: 1.2rem; color: var(--text-muted); margin-bottom: 30px; }
.hero-media { position: relative; }

@media(max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-content h1 { font-size: 3rem; }
  .nav-links { display: none; }
}

/* SECTIONS */
section { padding: 100px 0; }
.section-title { font-size: 2.5rem; text-align: center; margin-bottom: 50px; font-weight: 900; text-transform: uppercase; }
.section-subtitle { text-align: center; color: var(--primary); font-weight: 800; margin-bottom: 10px; letter-spacing: 2px; text-transform: uppercase; }

/* NUMBERS / STATS */
.stats { background: var(--bg-surface); border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; text-align: center; }
.stat-item h3 { font-size: 3rem; color: var(--primary); font-weight: 900; }
.stat-item p { color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

/* GRID CARDS (Services, Features) */
.grid-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.card { background: var(--bg-surface); border-radius: 16px; border: 1px solid rgba(255,255,255,0.05); transition: transform 0.3s, border-color 0.3s; overflow: hidden; display: flex; flex-direction: column; }
.card:hover { transform: translateY(-10px); border-color: var(--primary); }
.card-content { padding: 30px; flex-grow: 1; }
.card h3 { font-size: 1.5rem; margin-bottom: 15px; font-weight: 800; }
.card p { color: var(--text-muted); }
.card-img { width: 100%; height: 200px; object-fit: cover; }

/* 3 STEPS */
.steps { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 30px; }
.step { flex: 1; min-width: 250px; text-align: center; position: relative; }
.step-num { width: 60px; height: 60px; background: var(--primary); color: #000; font-size: 1.5rem; font-weight: 900; display: flex; justify-content: center; align-items: center; border-radius: 50%; margin: 0 auto 20px; }
.step h3 { margin-bottom: 15px; }

/* CONTACT FORM */
.contact-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; background: var(--bg-surface); padding: 50px; border-radius: 24px; border: 1px solid rgba(255,255,255,0.05); }
.contact-info { display: flex; flex-direction: column; justify-content: center; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 600; color: var(--text-muted); }
.form-control { width: 100%; padding: 15px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; color: #fff; font-size: 1rem; transition: border-color 0.3s; }
.form-control:focus { outline: none; border-color: var(--primary); }
textarea.form-control { resize: vertical; min-height: 120px; }
@media(max-width: 900px) { .contact-wrap { grid-template-columns: 1fr; padding: 30px; } }

/* FAQ */
.faq-item { background: var(--bg-surface); border-radius: 8px; margin-bottom: 15px; border: 1px solid rgba(255,255,255,0.05); overflow: hidden; }
.faq-question { padding: 20px; font-weight: 800; font-size: 1.1rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-answer { padding: 0 20px; max-height: 0; overflow: hidden; transition: all 0.3s; color: var(--text-muted); }
.faq-item.active .faq-answer { padding: 0 20px 20px; max-height: 500px; }
.faq-icon { font-size: 1.5rem; color: var(--primary); transition: transform 0.3s; }
.faq-item.active .faq-icon { transform: rotate(45deg); }

/* FOOTER */
footer { background: #000; padding: 60px 0 30px; text-align: center; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-links { display: flex; justify-content: center; gap: 30px; margin: 30px 0; flex-wrap: wrap; }
.footer-links a { color: var(--text-muted); text-decoration: none; font-weight: 600; }
.footer-links a:hover { color: var(--primary); }

/* STICKY FOOTER CTA */
.sticky-footer-cta { display: block; position: fixed; bottom: 0; left: 0; right: 0; background: var(--accent); padding: 15px; text-align: center; z-index: 1000; box-shadow: 0 -5px 20px rgba(230, 57, 70, 0.4); }
.sticky-footer-cta a { color: #fff; text-decoration: none; font-weight: 900; font-size: 1.2rem; text-transform: uppercase; display: flex; justify-content: center; align-items: center; gap: 10px; }

/* Fix image rounding on about section */
.about-img { width: 100%; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.5); object-fit: cover; aspect-ratio: 4/3; }
.hero-img { width: 100%; border-radius: 20px; box-shadow: 0 20px 40px rgba(0,0,0,0.5); object-fit: cover; aspect-ratio: 16/9; }
