/* ===== RESET & BASE ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', sans-serif;
    color: #1a1a2e;
    background: #0a0a1a;
    overflow-x: hidden;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
a { text-decoration: none; color: inherit; }

/* ===== NAVBAR ===== */
.navbar {
    position: fixed; top: 0; width: 100%; z-index: 1000;
    background: rgba(10,10,26,0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s;
}
.navbar.scrolled { background: rgba(10,10,26,0.98); box-shadow: 0 4px 30px rgba(0,0,0,0.3); }
.nav-container {
    display: flex; justify-content: space-between; align-items: center;
    height: 70px;
}
.logo {
    font-size: 1.5rem; font-weight: 900; color: #fff;
    font-family: 'Playfair Display', serif;
}
.nav-links {
    display: flex; list-style: none; gap: 30px; align-items: center;
}
.nav-links a { color: #ccc; font-weight: 600; transition: color 0.3s; font-size: 0.95rem; }
.nav-links a:hover { color: #00d4ff; }
.btn-nav {
    background: linear-gradient(135deg, #00d4ff, #7b2ff7);
    color: #fff !important; padding: 10px 24px; border-radius: 50px;
    font-weight: 700; transition: transform 0.3s;
}
.btn-nav:hover { transform: scale(1.05); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 28px; height: 3px; background: #fff; border-radius: 3px; transition: 0.3s; }

/* ===== HERO ===== */
.hero {
    min-height: 100vh; display: flex; align-items: center;
    background: linear-gradient(135deg, #0a0a1a 0%, #1a0a2e 50%, #0a1a2e 100%);
    position: relative; overflow: hidden;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%2300d4ff" fill-opacity="0.03" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,213.3C672,192,768,128,864,128C960,128,1056,192,1152,208C1248,224,1344,192,1392,176L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
}
.hero-content {
    position: relative; z-index: 2; text-align: center; padding-top: 70px;
}
.hero-title {
    font-size: 3.5rem; font-weight: 900; color: #fff; line-height: 1.15;
    font-family: 'Playfair Display', serif; margin-bottom: 20px;
}
.highlight {
    background: linear-gradient(135deg, #00d4ff, #7b2ff7);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-subtitle {
    font-size: 1.2rem; color: #b0b0d0; max-width: 700px; margin: 0 auto 30px; line-height: 1.7;
}
.hero-cta { display: flex; gap: 15px; justify-content: center; margin-bottom: 40px; flex-wrap: wrap; }
.btn-primary {
    background: linear-gradient(135deg, #00d4ff, #7b2ff7);
    color: #fff; padding: 16px 40px; border-radius: 50px;
    font-weight: 700; font-size: 1.1rem; transition: all 0.3s; border: none; cursor: pointer;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 40px rgba(0,212,255,0.4); }
.btn-secondary {
    background: transparent; color: #fff; padding: 16px 40px;
    border: 2px solid rgba(255,255,255,0.3); border-radius: 50px;
    font-weight: 700; font-size: 1.1rem; transition: all 0.3s;
}
.btn-secondary:hover { border-color: #00d4ff; color: #00d4ff; }
.hero-trust { display: flex; gap: 30px; justify-content: center; flex-wrap: wrap; }
.hero-trust span { color: #888; font-size: 0.95rem; }

/* ===== SECTIONS COMMON ===== */
section { padding: 100px 0; }
.section-title {
    font-size: 2.8rem; font-weight: 900; text-align: center;
    color: #fff; margin-bottom: 15px; font-family: 'Playfair Display', serif;
}
.section-subtitle {
    text-align: center; color: #888; font-size: 1.1rem; max-width: 600px; margin: 0 auto 60px;
}

/* ===== SERVICES - FIXED FOR IMAGES ===== */
.services { background: #0d0d20; }
.services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px;
}
.service-card {
    background: linear-gradient(145deg, #151530, #1a1a3a);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px; padding: 40px; transition: all 0.3s; position: relative;
}
.service-card:hover { transform: translateY(-10px); border-color: #00d4ff; }
.service-card.featured { border-color: #7b2ff7; box-shadow: 0 0 40px rgba(123,47,247,0.2); }
.badge {
    position: absolute; top: -12px; right: 20px;
    background: linear-gradient(135deg, #7b2ff7, #00d4ff);
    color: #fff; padding: 6px 16px; border-radius: 50px; font-size: 0.8rem; font-weight: 700;
}

/* FORCE all service images to be identical size */
.service-icon-wrapper {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    height: 100px !important;
    min-height: 100px !important;
    margin-bottom: 15px !important;
}

.service-icon-wrapper img,
.service-card img.service-icon {
    width: 80px !important;
    height: 80px !important;
    min-width: 80px !important;
    min-height: 80px !important;
    max-width: 80px !important;
    max-height: 80px !important;
    object-fit: cover !important;
    border-radius: 50% !important;
    display: block !important;
    margin: 0 auto !important;
    box-shadow: 0 8px 20px rgba(0,212,255,0.2);
    transition: transform 0.3s;
}

.service-card:hover .service-icon-wrapper img {
    transform: scale(1.05);
}

.service-card h3 { color: #fff; font-size: 1.4rem; margin-bottom: 10px; text-align: center; }
.service-price { color: #00d4ff; font-weight: 700; font-size: 1.2rem; margin-bottom: 15px; text-align: center; }
.service-card p { color: #999; line-height: 1.7; margin-bottom: 20px; text-align: center; }
.service-features { list-style: none; }
.service-features li {
    color: #ccc; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 0.95rem;
}
.service-features li:last-child { border-bottom: none; }

/* ===== HOW IT WORKS ===== */
.how-it-works { background: #0a0a1a; }
.steps {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px;
}
.step {
    text-align: center; padding: 30px;
    background: linear-gradient(145deg, #12122a, #1a1a35);
    border-radius: 16px; border: 1px solid rgba(255,255,255,0.06);
    transition: all 0.3s;
}
.step:hover { border-color: #00d4ff; transform: translateY(-5px); }
.step-number {
    font-size: 3rem; font-weight: 900;
    background: linear-gradient(135deg, #00d4ff, #7b2ff7);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}
.step h3 { color: #fff; margin-bottom: 10px; font-size: 1.2rem; }
.step p { color: #888; font-size: 0.95rem; line-height: 1.6; }

/* ===== ABOUT ===== */
.about { background: #0d0d20; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-image { border-radius: 20px; overflow: hidden; }
.about-img-placeholder {
    width: 100%; height: 500px;
    background: linear-gradient(135deg, #1a0a2e, #0a1a2e);
    display: flex; align-items: center; justify-content: center;
    border: 1px solid rgba(255,255,255,0.1);
}
.about-img-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-content h2 { text-align: left; font-size: 2.4rem; margin-bottom: 20px; }
.about-content p { color: #999; line-height: 1.8; margin-bottom: 15px; }
.about-stats {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 30px;
}
.stat { text-align: center; padding: 20px; background: rgba(255,255,255,0.05); border-radius: 12px; }
.stat-number { display: block; font-size: 2rem; font-weight: 900; color: #00d4ff; }
.stat-label { color: #888; font-size: 0.85rem; }

/* ===== TESTIMONIALS ===== */
.testimonials { background: #0a0a1a; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.testimonial-card {
    background: linear-gradient(145deg, #151530, #1a1a3a);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px; padding: 35px;
}
.testimonial-text { color: #ccc; font-size: 1rem; line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { color: #00d4ff; font-weight: 600; font-size: 0.9rem; }

/* ===== CONTACT ===== */
.contact { background: linear-gradient(135deg, #0a0a1a, #1a0a2e); }
.contact-container { max-width: 900px; }
.contact-grid {
    display: grid; grid-template-columns: 1fr 1.5fr; gap: 40px;
}
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-item {
    display: flex; gap: 15px; align-items: flex-start;
}
.contact-icon { font-size: 1.5rem; }
.contact-item strong { color: #fff; display: block; margin-bottom: 4px; }
.contact-item p { color: #888; font-size: 0.95rem; }
.contact-form {
    display: flex; flex-direction: column; gap: 15px;
}
.contact-form input, .contact-form select, .contact-form textarea {
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
    border-radius: 12px; padding: 14px 18px; color: #fff; font-size: 1rem;
    font-family: 'Inter', sans-serif; outline: none; transition: border-color 0.3s;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: #00d4ff; }
.contact-form select option { background: #1a1a3a; color: #fff; }

/* ===== FOOTER ===== */
.footer {
    background: #050510; padding: 60px 0 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-content {
    display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px;
}
.footer-brand h3 { color: #fff; font-size: 1.5rem; margin-bottom: 10px; font-family: 'Playfair Display', serif; }
.footer-brand p { color: #666; font-size: 0.9rem; line-height: 1.7; }
.footer-links h4 { color: #fff; margin-bottom: 15px; }
.footer-links a { display: block; color: #666; padding: 5px 0; font-size: 0.9rem; transition: color 0.3s; }
.footer-links a:hover { color: #00d4ff; }
.footer-bottom { text-align: center; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-bottom p { color: #444; font-size: 0.85rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
    .nav-links { display: none; position: absolute; top: 70px; left: 0; width: 100%; background: rgba(10,10,26,0.98); flex-direction: column; padding: 30px; gap: 20px; }
    .nav-links.active { display: flex; }
    .hamburger { display: flex; }
    .hero-title { font-size: 2.2rem; }
    .services-grid, .steps, .testimonial-grid { grid-template-columns: 1fr; }
    .about-grid, .contact-grid, .footer-content { grid-template-columns: 1fr; }
    .about-img-placeholder { height: 300px; }
    .section-title { font-size: 2rem; }
}
#particles-js {
    height: 75px !important;
}