:root {
    --bg-dark: #08090b;
    --bg-card: #11141a;
    --accent: #00d2ff;
    --text-white: #ffffff;
    --text-dim: #94a3b8;
    --glass: rgba(255, 255, 255, 0.05);
}

* { margin:0; padding:0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; background: var(--bg-dark); color: var(--text-white); line-height: 1.6; overflow-x: hidden; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Navbar */
.navbar { height: 90px; display: flex; align-items: center; border-bottom: 1px solid var(--glass); position: sticky; top: 0; background: rgba(8, 9, 11, 0.95); z-index: 1001; backdrop-filter: blur(10px); }
.navbar .container { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.logo { font-size: 2rem; font-weight: 800; text-decoration: none; color: #fff !important; }
.logo span { color: var(--accent); }

.nav-links { display: flex; list-style: none; }
.nav-links a { color: var(--text-dim); text-decoration: none; margin-left: 30px; font-weight: 600; transition: 0.3s; font-size: 0.85rem; text-transform: uppercase; }
.nav-links a.active, .nav-links a:hover { color: var(--accent); }

.menu-toggle { display: none; font-size: 1.5rem; color: #fff; cursor: pointer; }

/* Hero */
.hero { 
    height: 80vh; 
    display: flex; 
    align-items: center; 
    background: linear-gradient(rgba(8, 9, 11, 0.75), rgba(8, 9, 11, 0.85)), 
                url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?auto=format&fit=crop&w=1920&q=80');
    background-size: cover; background-position: center;
}
.hero h1 { font-size: clamp(2.5rem, 6vw, 4rem); font-weight: 800; line-height: 1.1; margin-bottom: 20px; }
.hero p { font-size: 1.1rem; color: #cbd5e1; margin-bottom: 35px; max-width: 700px; }

/* Sections */
.section-padding { padding: 100px 0; }
.section-title { text-align: center; font-size: 2.5rem; margin-bottom: 50px; }
.reveal { opacity: 0; transform: translateY(30px); transition: 0.8s ease-out; }

/* Cards & Grid */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.home-card { height: 380px; border-radius: 20px; overflow: hidden; position: relative; border: 1px solid var(--glass); }
.home-card img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.card-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.7); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 30px; }
.card-overlay i { font-size: 3rem; color: var(--accent); margin-bottom: 20px; }
.home-card:hover img { transform: scale(1.1); }

/* Testimonials */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.testimonial-card { background: var(--bg-card); padding: 40px 30px; border-radius: 20px; text-align: center; border: 1px solid var(--glass); }
.testimonial-card img { width: 75px; height: 75px; border-radius: 50%; object-fit: cover; margin-bottom: 20px; border: 2px solid var(--accent); }
.testimonial-card p { font-style: italic; color: var(--text-dim); margin-bottom: 15px; font-size: 0.95rem; }

/* FAQ */
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { background: var(--bg-card); border: 1px solid var(--glass); margin-bottom: 12px; border-radius: 12px; }
.faq-question { padding: 20px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 600; }
.faq-answer { padding: 0 20px; max-height: 0; overflow: hidden; transition: 0.3s ease-out; color: var(--text-dim); font-size: 0.9rem; }
.faq-item.active .faq-answer { padding-bottom: 20px; max-height: 200px; }
.faq-item.active .faq-question i { transform: rotate(180deg); color: var(--accent); }

/* Service Page Rows */
.service-row { display: flex; align-items: center; gap: 60px; margin-bottom: 80px; }
.service-row.reverse { flex-direction: row-reverse; }
.service-img { flex: 1; border-radius: 20px; overflow: hidden; height: 350px; border: 1px solid var(--glass); }
.service-img img { width: 100%; height: 100%; object-fit: cover; }
.service-info { flex: 1.2; }
.service-info i { font-size: 2.5rem; color: var(--accent); margin-bottom: 15px; display: block; }
.highlight-whatsapp { background: rgba(37, 211, 102, 0.03); padding: 40px; border-radius: 25px; border: 1px solid rgba(37, 211, 102, 0.15); }

/* Contact Form */
.contact-container { background: var(--bg-card); border-radius: 30px; overflow: hidden; display: flex; box-shadow: 0 20px 40px rgba(0,0,0,0.4); }
.contact-info-panel { flex: 1; background: linear-gradient(135deg, var(--accent), #0072ff); color: #000; padding: 50px; }
.contact-form-panel { flex: 1.5; padding: 50px; background: #161b22; }
.info-box { display: flex; align-items: center; margin-bottom: 25px; }
.info-box i { font-size: 1.2rem; margin-right: 20px; background: #000; color: #fff; width: 45px; height: 45px; display: flex; align-items: center; justify-content: center; border-radius: 50%; }
.contact-form-panel input, .contact-form-panel textarea { width: 100%; padding: 15px; margin-bottom: 20px; background: #08090b; border: 1px solid #334155; color: #fff; border-radius: 10px; outline: none; }

/* Stats */
.about-header { background: var(--bg-card); padding: 60px 0; border-radius: 25px; margin-bottom: 50px; text-align: center; }
.about-row { display: flex; align-items: center; gap: 50px; }
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-top: 25px; }
.stat-item { background: var(--glass); padding: 20px; border-radius: 15px; text-align: center; }

/* Footer */
.footer { background: #000; padding: 80px 0 40px; border-top: 1px solid var(--glass); }
.footer-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; }

/* Mobile */
@media (max-width: 992px) {
    .menu-toggle { display: block; }
    .nav-links { position: fixed; top: 90px; right: -100%; width: 100%; height: calc(100vh - 90px); background: var(--bg-dark); flex-direction: column; align-items: center; padding: 50px 0; transition: 0.4s; z-index: 1000; }
    .nav-links.active { right: 0; }
    .nav-links a { margin: 15px 0; font-size: 1.1rem; }
    .about-row, .contact-container, .footer-grid, .service-row, .service-row.reverse { flex-direction: column; }
    .service-img { height: 280px; width: 100%; }
}

.btn { padding: 15px 30px; border-radius: 10px; font-weight: 700; text-decoration: none; display: inline-block; transition: 0.3s; border: none; cursor: pointer; }
.primary-btn { background: var(--accent); color: #000; }
.primary-btn:hover { box-shadow: 0 0 20px var(--accent); transform: translateY(-2px); }
.accent { color: var(--accent); }
/* Social Media Icons Styling */
.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--text-dim);
    text-decoration: none;
    transition: 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social a:hover {
    background: var(--accent);
    color: #000;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 210, 255, 0.3);
}

.footer-social a i {
    font-size: 1.1rem;
}