:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --secondary: #10b981;
    --accent: #f59e0b;
    --danger: #ef4444;
    --danger-dark: #dc2626;
    --dark: #0f172a;
    --darker: #0a0e17;
    --light: #ffffff;
    --gray: #94a3b8;
    --gray-dark: #475569;
    --gradient: linear-gradient(135deg, #6366f1, #8b5cf6);
    --gradient-accent: linear-gradient(135deg, #f59e0b, #ef4444);
    --gradient-danger: linear-gradient(135deg, #ef4444, #dc2626);
    --border: rgba(255,255,255,0.1);
    --shadow: 0 10px 25px rgba(0,0,0,0.3);
    --shadow-lg: 0 20px 50px rgba(0,0,0,0.4);
    --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
    font-family: 'Inter', sans-serif;
    background: var(--darker);
    color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.text-gradient { background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ===== COMPACT TRUST BAR ===== */
.trust-bar {
    background: linear-gradient(90deg, var(--danger), var(--accent), var(--primary));
    color: white;
    padding: 6px 0;
    font-size: 12px;
    font-weight: 600;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    line-height: 1.2;
}

.trust-items {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.trust-item i { font-size: 11px; }

.emergency-item {
    background: rgba(0,0,0,0.25);
    padding: 3px 12px;
    border-radius: 30px;
    border-left: 2px solid #ffd700;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 32px; /* Exact height of trust bar */
    left: 0;
    right: 0;
    background: rgba(15,23,42,0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    padding: 10px 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.6rem;
    font-weight: 900;
    color: white;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    gap: 8px;
}

.logo i { color: var(--primary); font-size: 1.8rem; }
.logo-highlight { background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--gray);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover, .nav-link:focus, .nav-link.nav-active {
    color: var(--light);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.3s ease;
}

.nav-link:hover::after, .nav-link.nav-active::after {
    width: 100%;
}

.btn-emergency {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(239,68,68,0.15);
    border: 1px solid var(--danger);
    color: var(--danger);
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
}

.btn-emergency:hover {
    background: var(--danger);
    color: white;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    padding: 0.8rem 1.8rem;
    border-radius: 8px;
    transition: var(--transition);
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
}

.btn-primary { background: var(--gradient); color: white; box-shadow: var(--shadow); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-danger { background: var(--gradient-danger); color: white; }
.btn-danger:hover { transform: translateY(-2px); background: linear-gradient(135deg, #dc2626, #b91c1c); }
.btn-outline { background: transparent; border: 2px solid var(--primary); color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: white; }
.btn-small { padding: 0.5rem 1.2rem; font-size: 0.85rem; }
.btn-large { padding: 1rem 2.2rem; font-size: 1rem; }
.btn-block { width: 100%; }

/* ===== HERO ===== */
.services-hero {
    padding: 150px 0 70px;
    background: var(--gradient-dark);
    position: relative;
    scroll-margin-top: 100px;
}

.hero-content { text-align: center; max-width: 900px; margin: 0 auto; }
.trust-badges { display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; margin-bottom: 2rem; }
.trust-badge {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.hero-gradient {
    background: linear-gradient(135deg, var(--primary), var(--danger));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 3.5rem;
    font-weight: 900;
    display: block;
    line-height: 1.2;
}

.hero-subtitle { font-size: 1.5rem; color: var(--gray); font-weight: 600; }
.hero-description { font-size: 1.1rem; color: var(--gray); max-width: 700px; margin: 2rem auto; }
.hero-cta { display: flex; gap: 1rem; justify-content: center; margin: 2rem 0; flex-wrap: wrap; }
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 2rem 0;
    border-top: 1px solid var(--border);
    margin-top: 2rem;
}
.stat-number { font-size: 2.5rem; font-weight: 900; background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat-label { color: var(--gray); font-size: 0.9rem; text-transform: uppercase; }

/* ===== EMERGENCY BANNER ===== */
.emergency-banner {
    background: rgba(239,68,68,0.1);
    border-top: 2px solid var(--danger);
    border-bottom: 2px solid var(--danger);
    padding: 20px 0;
}

.emergency-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.emergency-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.emergency-left i {
    font-size: 2rem;
    color: var(--danger);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%,100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.emergency-left h3 { font-size: 1.3rem; margin: 0; color: var(--danger); }
.emergency-left p { margin: 0; color: var(--gray); font-size: 0.9rem; }
.emergency-right { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.response-time { color: var(--gray); font-size: 0.85rem; }

/* ===== SECTIONS ===== */
section { padding: 70px 0; scroll-margin-top: 100px; }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 3rem; }
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}
.section-title { font-size: 2.5rem; font-weight: 900; margin-bottom: 1rem; }
.section-subtitle { color: var(--gray); font-size: 1rem; }

/* ===== SERVICES GRID ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.service-card:hover { transform: translateY(-5px); border-color: var(--primary); box-shadow: var(--shadow); }

.service-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.service-title { font-size: 1.3rem; margin-bottom: 0.5rem; }
.service-description { color: var(--gray); font-size: 0.9rem; margin-bottom: 1rem; }
.service-features { list-style: none; margin-bottom: 1.5rem; flex: 1; }
.service-features li { color: var(--light); padding: 0.3rem 0; display: flex; align-items: center; gap: 8px; font-size: 0.9rem; }
.service-features li i { color: var(--secondary); font-size: 0.8rem; }

/* ===== PROCESS ===== */
.process-section { background: var(--dark); }
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}
.process-step {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    border-radius: 12px;
}
.step-number { font-size: 2rem; font-weight: 900; color: var(--primary); margin-bottom: 0.5rem; }
.process-step h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.process-step p { color: var(--gray); font-size: 0.85rem; margin: 0; }

/* ===== INDUSTRIES ===== */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.industry-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}
.industry-icon { font-size: 2rem; color: var(--primary); margin-bottom: 0.5rem; }
.industry-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.industry-card p { color: var(--gray); font-size: 0.85rem; margin: 0; }

/* ===== CTA ===== */
.cta-section {
    background: linear-gradient(135deg, #0f172a, #1e1b4b);
    text-align: center;
}
.cta-title { font-size: 2.5rem; font-weight: 900; margin-bottom: 1rem; }
.cta-subtitle { color: var(--gray); font-size: 1.1rem; margin-bottom: 2rem; }
.cta-guarantee { display: flex; align-items: center; justify-content: center; gap: 8px; color: var(--gray); font-size: 0.9rem; margin-top: 2rem; }

/* ===== CONTACT ===== */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}
.contact-info { display: flex; flex-direction: column; gap: 1rem; }
.info-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}
.info-icon { font-size: 2rem; color: var(--primary); margin-bottom: 0.5rem; }
.info-card h3 { font-size: 1.1rem; }
.info-card p { margin: 0.5rem 0; }
.info-card a { color: var(--light); text-decoration: none; }
.info-card a:hover { color: var(--primary); }
.info-note { color: var(--gray); font-size: 0.8rem; }

.contact-form {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
input, select, textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: white;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--primary); }
.form-note { text-align: center; color: var(--gray); font-size: 0.8rem; margin-top: 1rem; }

/* ===== FOOTER ===== */
.footer {
    background: var(--dark);
    padding: 50px 0 30px;
    border-top: 1px solid var(--border);
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}
.footer-description { color: var(--gray); font-size: 0.9rem; margin-top: 1rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.8rem; }
.footer-link { color: var(--gray); text-decoration: none; font-size: 0.9rem; }
.footer-link:hover { color: var(--primary); }
.emergency-link { color: var(--danger); font-weight: 600; }
.footer-bottom { text-align: center; padding-top: 2rem; border-top: 1px solid var(--border); color: var(--gray); font-size: 0.85rem; }

/* ===== MOBILE ===== */
@media (max-width: 1024px) {
    .hero-gradient { font-size: 2.8rem; }
    .section-title { font-size: 2.2rem; }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .industries-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    .nav-menu {
        position: fixed;
        top: 100px;
        left: 0;
        right: 0;
        background: var(--dark);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        border-bottom: 1px solid var(--border);
        transform: translateY(-150%);
        opacity: 0;
        transition: var(--transition);
        display: none;
        z-index: 999;
    }
    .nav-menu.show {
        display: flex;
        transform: translateY(0);
        opacity: 1;
    }
    .nav-toggle { display: block; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .trust-bar { padding: 4px 0; font-size: 10px; }
    .trust-items { gap: 0.8rem; }
    .header { top: 28px; padding: 8px 0; }
    .nav-menu { top: 90px; }
    .hero-gradient { font-size: 2.2rem; }
    .hero-subtitle { font-size: 1.2rem; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .stat-number { font-size: 2rem; }
    .services-grid { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr; }
    .industries-grid { grid-template-columns: 1fr; }
    .contact-container { grid-template-columns: 1fr; }
    .contact-info { flex-direction: row; flex-wrap: wrap; }
    .info-card { flex: 1; min-width: 200px; }
    .form-row { grid-template-columns: 1fr; }
    .emergency-content { flex-direction: column; text-align: center; }
    .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}

@media (max-width: 480px) {
    .trust-bar { padding: 3px 0; }
    .trust-items { flex-direction: column; gap: 2px; }
    .trust-item { white-space: normal; text-align: center; }
    .header { top: 52px; }
    .hero-gradient { font-size: 1.8rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-cta { flex-direction: column; }
    .btn-large { width: 100%; }
    .section-title { font-size: 1.8rem; }
    .emergency-left { flex-direction: column; text-align: center; }
    .emergency-right { flex-direction: column; width: 100%; }
    .btn-danger { width: 100%; }
    .info-card { min-width: 100%; }
}
