:root {
    --primary: #f39c12;
    --dark: #0f172a;
    --navy: #1e293b;
    --white: #ffffff;
    --text: #94a3b8;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Outfit', sans-serif; background: var(--dark); color: var(--white); scroll-behavior: smooth; }
.container { max-width: 1300px; margin: auto; padding: 0 30px; }

/* Navbar */
header { position: fixed; width: 100%; top: 0; z-index: 1000; padding: 25px 0; }
.navbar { background: rgba(15, 23, 42, 0.9); backdrop-filter: blur(15px); padding: 15px 40px; border-radius: 100px; display: flex; justify-content: space-between; align-items: center; border: 1px solid rgba(255,255,255,0.05); }
.logo img { height: 45px; }
.nav-links { list-style: none; display: flex; align-items: center; }
.nav-links li { margin-left: 30px; }
.nav-links a { text-decoration: none; color: white; font-weight: 500; font-size: 14px; transition: 0.3s; }
.nav-cta { background: var(--primary); padding: 10px 25px; border-radius: 50px; font-weight: 700 !important; color: var(--dark) !important; }

/* Hero Section */
.hero { height: 100vh; background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.8)), url('images/1.jpg') center/cover; display: flex; align-items: center; }
.top-tag { color: var(--primary); font-weight: 800; letter-spacing: 4px; text-transform: uppercase; font-size: 12px; }
.hero h1 { font-family: 'Syncopate', sans-serif; font-size: 4.5rem; line-height: 1.1; margin: 20px 0; }
.hero h1 span { color: var(--primary); }
.hero p { max-width: 600px; font-size: 1.1rem; color: var(--text); margin-bottom: 40px; }
.btn-main { background: var(--primary); color: var(--dark); padding: 18px 40px; text-decoration: none; border-radius: 5px; font-weight: 800; display: inline-block; transition: 0.3s; border: none; }
.btn-ghost { border: 2px solid white; color: white; padding: 16px 40px; text-decoration: none; border-radius: 5px; font-weight: 800; margin-left: 20px; display: inline-block; }

/* Stats */
.stats { display: flex; justify-content: space-between; margin-top: -60px; background: var(--navy); padding: 50px; border-radius: 20px; text-align: center; border-bottom: 5px solid var(--primary); position: relative; z-index: 10; }
.stat-item h2 { font-size: 3rem; color: var(--primary); }

/* About & Services Grid */
.about { padding: 120px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img img { width: 100%; border-radius: 20px; border: 1px solid rgba(255,255,255,0.1); }
.about-text h2 span { color: var(--primary); }
.check-list { list-style: none; margin-top: 30px; }
.check-list li { margin-bottom: 15px; font-weight: 600; }
.check-list i { color: var(--primary); margin-right: 15px; }

.services { background: #080e1a; padding: 120px 0; }
.section-head { text-align: center; margin-bottom: 80px; }
.section-head h2 { font-size: 3rem; font-family: 'Syncopate', sans-serif; }
.divider { width: 80px; height: 4px; background: var(--primary); margin: 20px auto; }

.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(380px, 1fr)); gap: 30px; }
.s-card { background: var(--navy); border-radius: 20px; overflow: hidden; border: 1px solid rgba(255,255,255,0.05); transition: 0.5s; }
.s-card:hover { transform: translateY(-15px); border-color: var(--primary); }
.s-img img { width: 100%; height: 250px; object-fit: cover; }
.s-info { padding: 30px; }
.s-info h3 { color: var(--primary); margin-bottom: 10px; font-size: 1.6rem; }

/* Process */
.process { padding: 100px 0; text-align: center; }
.process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; margin-top: 60px; }
.step span { font-size: 4rem; font-weight: 900; color: rgba(255,255,255,0.05); display: block; margin-bottom: -40px; }
.step h4 { color: var(--primary); font-size: 1.5rem; margin-bottom: 10px; position: relative; }

/* Contact Area */
.contact-area { padding: 100px 0; background: var(--dark); }
.contact-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.form-container { background: var(--navy); padding: 50px; border-radius: 30px; }
.input-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
input, select, textarea { width: 100%; padding: 18px; background: #0f172a; border: 1px solid #334155; border-radius: 10px; color: white; margin-bottom: 20px; outline: none; }
input:focus { border-color: var(--primary); }
.map-box { border-radius: 30px; overflow: hidden; min-height: 400px; filter: grayscale(1) invert(0.9); opacity: 0.7; }

/* Footer */
footer { padding: 100px 0 40px; background: #070b14; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; }
.footer-brand img { height: 60px; margin-bottom: 20px; }
.footer-links a { display: block; color: var(--text); text-decoration: none; margin-bottom: 15px; }
.footer-bottom { text-align: center; margin-top: 80px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.05); font-size: 14px; color: #475569; }

@media (max-width: 768px) {
    .nav-links, .stats { display: none; }
    .hero h1 { font-size: 2.5rem; }
    .about-grid, .contact-wrapper, .footer-grid { grid-template-columns: 1fr; }
}