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

:root {
    --primary: #0052cc;
    --primary-dark: #0747a6;
    --secondary: #ff8b00;
    --secondary-dark: #ff7400;
    --success: #36b37e;
    --bg-light: #f4f5f7;
    --bg-white: #ffffff;
    --text-dark: #172b4d;
    --text-muted: #6b778c;
    
    --shadow-card: 0 10px 30px rgba(0,0,0,0.08);
    --radius-xl: 30px;
    --radius-lg: 20px;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none; /* Globally remove list styles */
}

body {
    background: var(--bg-light);
    color: var(--text-dark);
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.6;
}

h1, h2, h3, h4, h5 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 25px;
}

/* --- MODERN MINIMALIST HEADER --- */
header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1350px;
    z-index: 1000;
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    transition: var(--transition);
}

header.scrolled {
    top: 10px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: rgba(0,0,0,0.05);
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    color: white;
    text-decoration: none;
    letter-spacing: -1px;
}

header.scrolled .logo { color: var(--primary); }
.logo span { color: var(--secondary); }

.nav-links {
    display: none;
}

@media (min-width: 1024px) {
    .nav-links {
        display: flex;
        gap: 15px;
    }
    
    .nav-links a {
        text-decoration: none;
        color: white;
        font-weight: 700;
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        white-space: nowrap;
        transition: var(--transition);
        padding: 8px 16px;
        border-radius: 50px;
    }
    
    header.scrolled .nav-links a { color: var(--text-dark); }
    
    .nav-links a:hover {
        background: rgba(255, 255, 255, 0.2);
    }
    
    header.scrolled .nav-links a:hover {
        background: var(--bg-light);
    }
}

.btn-nav {
    background: var(--secondary);
    color: white;
    padding: 10px 18px;
    border-radius: 50px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    text-decoration: none;
}

/* --- HERO --- */
.hero {
    padding: 220px 0 120px;
    background: linear-gradient(135deg, #0052cc 0%, #0747a6 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 100px;
    align-items: center;
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1.2;
    margin-bottom: 35px;
    letter-spacing: -2px;
}

.hero p {
    font-size: 1.3rem;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 50px;
    max-width: 650px;
}

.hero-btns {
    display: flex;
    gap: 25px;
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 15px;
    font-weight: 800;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: 'Outfit', sans-serif;
}

.btn-primary { background: var(--primary); color: white; }
.btn-secondary { background: var(--secondary); color: white; }

/* ... Rest of the CSS remains same for simplicity but I'll make sure to clean it ... */
/* [TRUNCATED FOR BREVITY IN VIEW, WILL BE FULL IN WRITE] */
/* Adding the rest of the styles below to ensure a complete file */

.trust-bar { padding: 40px 0; background: white; border-bottom: 1px solid #eee; }
.trust-flex { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 30px; }
.trust-item { font-weight: 700; color: var(--text-muted); font-size: 1.1rem; display: flex; align-items: center; gap: 10px; }
.trust-item i { color: var(--success); }

section { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: 3rem; margin-bottom: 15px; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card i.main-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 25px;
    display: block;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: 25px;
    font-size: 0.95rem;
    flex-grow: 1;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
    padding: 0;
}

.service-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.service-features li i {
    font-size: 1rem;
    color: var(--success);
    margin-top: 3px;
}

.content-block { display: flex; align-items: center; gap: 80px; margin-bottom: 100px; position: relative; }
.content-block:nth-child(even) { flex-direction: row-reverse; }
.block-image-wrapper { flex: 1; position: relative; }
.block-image { border-radius: var(--radius-xl); overflow: hidden; box-shadow: 0 30px 60px rgba(0,0,0,0.15); transition: var(--transition); }
.block-image:hover { transform: scale(1.02); }
.block-image img { width: 100%; display: block; }

.image-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: white;
    padding: 20px 30px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 2;
    animation: float 4s ease-in-out infinite;
}

.image-badge i { font-size: 1.5rem; color: var(--primary); }
.image-badge span { font-weight: 800; font-size: 0.9rem; color: var(--text-dark); line-height: 1.2; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.block-text { flex: 1; }
.text-tag { 
    display: inline-block; 
    padding: 6px 16px; 
    background: rgba(0, 82, 204, 0.1); 
    color: var(--primary); 
    border-radius: 50px; 
    font-weight: 800; 
    font-size: 0.8rem; 
    text-transform: uppercase; 
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.block-text h3 { font-size: 3rem; margin-bottom: 25px; line-height: 1.1; color: var(--text-dark); }
.block-text h3 span { color: var(--primary); }
.block-text p { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 30px; }

.feature-pills { display: flex; flex-wrap: wrap; gap: 15px; margin-bottom: 35px; }
.pill { 
    background: #f8fafc; 
    padding: 10px 20px; 
    border-radius: 12px; 
    font-weight: 700; 
    font-size: 0.9rem; 
    color: var(--text-dark); 
    display: flex; 
    align-items: center; 
    gap: 10px; 
    border: 1px solid #edf2f7;
}
.pill i { color: var(--secondary); }

.block-btns { display: flex; align-items: center; gap: 30px; }
.shadow-hover:hover { box-shadow: 0 10px 20px rgba(255, 139, 0, 0.3); transform: translateY(-3px); }

.experience-badge { display: flex; align-items: center; gap: 12px; }
.experience-badge strong { font-size: 2.5rem; color: var(--primary); line-height: 1; }
.experience-badge span { font-size: 0.85rem; font-weight: 700; color: var(--text-muted); width: 60px; line-height: 1.2; }

.faq-grid { max-width: 800px; margin: 0 auto; }
.faq-item { background: white; margin-bottom: 15px; border-radius: 12px; padding: 25px; cursor: pointer; }
.faq-answer { display: none; margin-top: 15px; color: var(--text-muted); }

.bottom-bar { position: fixed; bottom: 0; left: 0; width: 100%; background: white; display: grid; grid-template-columns: repeat(3, 1fr); padding: 12px 0; border-top: 1px solid #eee; z-index: 1000; }
.bottom-bar a { text-align: center; text-decoration: none; color: var(--text-dark); font-size: 0.8rem; font-weight: 700; }
.bottom-bar a i { display: block; font-size: 1.4rem; margin-bottom: 4px; color: var(--primary); }

.mobile-nav-toggle {
    display: flex;
    font-size: 1.5rem;
    cursor: pointer;
    color: white;
}

header.scrolled .mobile-nav-toggle {
    color: var(--text-dark);
}

/* --- MOBILE MENU OVERLAY --- */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 2000;
    padding: 30px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.close-menu {
    font-size: 1.8rem;
    color: var(--text-dark);
    cursor: pointer;
}

.mobile-nav-links {
    list-style: none;
    margin-bottom: 50px;
}

.mobile-nav-links li {
    margin-bottom: 25px;
}

.mobile-nav-links a {
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
}

/* --- AI DIAGNOSTIC SECTION --- */
.ai-section { background: #f8fafc; border-top: 1px solid #edf2f7; border-bottom: 1px solid #edf2f7; }
.diagnostic-card { 
    background: white; 
    padding: 60px; 
    border-radius: var(--radius-xl); 
    box-shadow: 0 40px 100px rgba(0,0,0,0.05); 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 60px; 
    align-items: center; 
}

.diagnostic-info h2 { font-size: 2.8rem; margin-bottom: 20px; line-height: 1.1; }
.diagnostic-info h2 span { color: var(--primary); }
.diagnostic-info p { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 30px; }

.ai-result { 
    display: none; 
    background: #eef4ff; 
    padding: 30px; 
    border-radius: 20px; 
    border-left: 6px solid var(--primary); 
    margin-top: 30px; 
}
.ai-result h4 { color: var(--primary); margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.ai-result p { margin-bottom: 0; color: var(--text-dark); font-weight: 500; font-size: 1rem; }

.form-wrapper { background: var(--bg-light); padding: 40px; border-radius: var(--radius-lg); }
.form-wrapper textarea { 
    width: 100%; 
    height: 160px; 
    padding: 20px; 
    border: 1px solid #ddd; 
    border-radius: 15px; 
    font-family: inherit; 
    font-size: 1.1rem; 
    resize: none; 
    margin-bottom: 20px; 
    outline: none; 
    transition: var(--transition);
}
.form-wrapper textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(0, 82, 204, 0.1); }
.form-wrapper .btn { width: 100%; justify-content: center; font-size: 1.1rem; }

@media (max-width: 1024px) {
    .diagnostic-card { grid-template-columns: 1fr; padding: 40px 25px; gap: 40px; }
    .diagnostic-info h2 { font-size: 2.2rem; text-align: center; }
    .diagnostic-info p { text-align: center; }
    .form-wrapper { padding: 30px 20px; }
    .ai-section { padding: 60px 0; }
}

@media (max-width: 1024px) {
    header { top: 10px; width: 92%; padding: 10px 20px; }
    .hero { padding: 150px 0 60px; text-align: center; }
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero h1 { font-size: 2.8rem; margin-bottom: 20px; }
    .hero p { font-size: 1.1rem; margin-bottom: 35px; margin: 0 auto 30px; }
    .hero-btns { flex-direction: column; gap: 15px; }
    .hero-btns .btn { width: 100%; justify-content: center; }
    
    /* Fix Breadcrumb on Mobile */
    .breadcrumb {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 5px;
    }
    
    .content-block { flex-direction: column; gap: 40px; text-align: center; margin-bottom: 60px; }
    .content-block:nth-child(even) { flex-direction: column; }
    .block-text h3 { font-size: 2.2rem; }
    .feature-pills { justify-content: center; }
    .block-btns { flex-direction: column; gap: 20px; }
    .image-badge { padding: 12px 20px; bottom: -15px; right: -15px; font-size: 0.8rem; }
    .image-badge i { font-size: 1.2rem; }
    .bottom-bar { display: grid; }
}

@media (min-width: 1024px) {
    .bottom-bar { display: none; }
    .mobile-nav-toggle { display: none; }
}
