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

:root {
    --bg-dark: #ffffff;
    --bg-slate: #f8fafc;
    --bg-card: #ffffff;
    --primary: #0b57d0;           /* Zuptek/Royal Blue */
    --primary-hover: #084099;
    --accent: #2563eb;            /* Bright Accent Blue */
    --text-dark: #0f172a;         /* Deep Slate Headings */
    --text-muted: #64748b;        /* Slate Muted Body Text */
    --border-color: #e2e8f0;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
    --shadow-md: 0 10px 30px rgba(15, 23, 42, 0.05);
    --shadow-lg: 0 20px 40px rgba(15, 23, 42, 0.08);

    /* Compatibility Mappings for old templates */
    --neon-cyan: var(--primary);
    --neon-pink: var(--accent);
    --neon-purple: var(--accent);
    --text-white: var(--text-dark);
    --glow-cyan: var(--shadow-md);
    --glow-pink: var(--shadow-md);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-dark);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-slate);
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

/* Container Utilities */
.cyber-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.text-gradient-cyan {
    color: var(--primary);
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-pink {
    color: var(--accent);
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cyber-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.cyber-grid-2 {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
}

/* Card Styling - Zuptek Aesthetics (White base, thin borders, soft shadows) */
.cyber-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.cyber-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
    opacity: 0;
    transition: var(--transition);
}

.cyber-card:hover {
    transform: translateY(-4px);
    border-color: #cbd5e1;
    box-shadow: var(--shadow-md);
}

.cyber-card:hover::before {
    opacity: 1;
}

/* Premium Buttons - Solid & Outlined Blue */
.cyber-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px; /* Pill shaped buttons matching screenshot */
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    border: none;
    gap: 8px;
}

.cyber-btn-cyan {
    background: var(--primary);
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(11, 87, 208, 0.15);
}

.cyber-btn-cyan:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(11, 87, 208, 0.25);
}

.cyber-btn-pink {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.cyber-btn-pink:hover {
    background: var(--primary);
    color: #ffffff !important;
    transform: translateY(-2px);
}

.cyber-btn-whatsapp {
    background: #25d366;
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.15);
}

.cyber-btn-whatsapp:hover {
    background: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.25);
}

/* Tag details matching Clutch / trust tags */
.cyber-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    font-size: 12px;
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: #eff6ff;
    color: var(--accent);
    border: 1px solid #dbeafe;
    border-radius: 20px;
    margin-bottom: 20px;
}

/* Header & Sticky Navigation Drawer */
header {
    background: #ffffff;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.03);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 65px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 22px;
}

.logo-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 20px;
    color: #0f172a;
    letter-spacing: -0.5px;
    text-transform: capitalize;
    white-space: nowrap;
}

.nav-right-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-call-btn {
    padding: 10px 22px;
    font-size: 13px;
    border-radius: 30px;
}

.nav-links {
    display: flex;
    gap: 25px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: #334155;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    padding: 8px 0;
    position: relative;
}

.nav-links a i {
    display: none; /* Hide icons in header list to mirror Zuptek */
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: 1.5px solid var(--border-color);
    color: var(--text-dark);
    font-size: 20px;
    cursor: pointer;
    padding: 7px 10px;
    border-radius: 8px;
    line-height: 1;
}

/* Sections Styling */
section {
    padding: 45px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 55px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.2;
}

.section-header p {
    color: var(--text-muted);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

/* Hero Section Refinements */
.hero {
    position: relative;
    padding: 50px 0 35px 0;
    background: radial-gradient(circle at 80% 20%, rgba(11, 87, 208, 0.04) 0%, transparent 50%),
                radial-gradient(circle at 10% 80%, rgba(37, 99, 235, 0.04) 0%, transparent 50%);
}

.hero-layout {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 50px;
    align-items: center;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.hero p.lead {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 35px;
    max-width: 650px;
    line-height: 1.7;
}

.hero-ctas {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.glow-orb {
    display: none; /* Removed glow orb to clean design */
}

.cyber-box {
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    border-radius: 16px;
    padding: 40px;
    background: #ffffff;
    position: relative;
    text-align: center;
}

/* Stats Metrics Bar */
.stats-section {
    background: var(--bg-slate);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 50px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item h3 {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 5px;
}

.stat-item p {
    color: var(--text-muted);
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Service Card & Grid Specialties */
.service-icon {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 20px;
    display: inline-block;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 700;
}

.service-card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
}

/* Pricing Grid */
.pricing-grid {
    max-width: 900px;
    margin: 40px auto 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.price-header {
    margin-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
}

.price-title {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 10px;
    font-weight: 800;
}

.price-amount {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
}

.price-features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.price-features li {
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-features li::before {
    content: '✓';
    color: var(--primary);
    font-weight: bold;
}

/* Testimonials Layout */
.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.testimonial-rating {
    color: #ffb703;
    margin-bottom: 15px;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.6;
}

.testimonial-author {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary);
    font-size: 14px;
}

/* FAQ Accordions */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--bg-slate);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px;
    text-align: left;
    color: var(--text-dark);
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-icon {
    font-size: 20px;
    transition: var(--transition);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0 20px;
    color: var(--text-muted);
    font-size: 14px;
    border-top: 1px solid transparent;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 20px;
    border-top: 1px solid var(--border-color);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--primary);
}

/* Footer Section - Slate Dark Clean theme */
footer {
    background: #090d16;
    border-top: 1px solid var(--border-color);
    padding: 50px 0 25px 0;
    color: #94a3b8;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 0.9fr;
    gap: 50px;
    margin-bottom: 35px;
}

.footer-logo-desc h3 {
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-logo-desc p {
    color: #94a3b8;
    font-size: 14px;
    margin-bottom: 25px;
    line-height: 1.7;
}

.footer-hours li {
    font-size: 14px;
    color: #94a3b8;
    margin-bottom: 8px;
    list-style: none;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    margin-bottom: 22px;
    text-transform: uppercase;
    color: #ffffff;
    letter-spacing: 0.5px;
    font-weight: 700;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #94a3b8;
    font-size: 14px;
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 4px;
}

.footer-contact p {
    color: #94a3b8;
    font-size: 14px;
    margin-bottom: 14px;
    line-height: 1.6;
}

.footer-contact strong {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid #1e293b;
    padding-top: 30px;
    text-align: center;
    color: #64748b;
    font-size: 13px;
}

/* Floating WhatsApp Widget */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1000;
    text-decoration: none;
}

.whatsapp-text-bubble {
    background: #0f172a;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: var(--transition);
}

.whatsapp-float:hover .whatsapp-text-bubble {
    opacity: 1;
    transform: translateX(0);
}

.whatsapp-icon-circle {
    width: 60px;
    height: 60px;
    background: #25d366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    transition: var(--transition);
}

.whatsapp-float:hover .whatsapp-icon-circle {
    transform: scale(1.1);
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .hero-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero h1 {
        font-size: 36px !important;
    }
    .hero p.lead {
        margin: 0 auto 30px auto;
    }
    .hero-ctas {
        justify-content: center;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }

    /* Hide desktop Call button on mobile — show hamburger instead */
    .nav-call-btn {
        display: none !important;
    }
    .mobile-menu-btn {
        display: flex !important;
        align-items: center;
        justify-content: center;
    }

    /* Mobile logo text smaller */
    .logo-text {
        font-size: 15px !important;
    }

    /* Nav drawer */
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 65px;
        left: 0;
        width: 100%;
        background: #ffffff;
        padding: 15px 20px;
        border-bottom: 2px solid var(--primary);
        box-shadow: 0 10px 25px rgba(0,0,0,0.07);
        z-index: 1010;
        gap: 0;
    }
    .nav-links.menu-open {
        display: flex;
    }
    .nav-links li {
        width: 100%;
    }
    .nav-links a {
        color: var(--text-dark) !important;
        padding: 12px 0;
        width: 100%;
        display: block;
        text-align: left;
        border-bottom: 1px solid var(--border-color);
        font-size: 15px;
    }
    .nav-links li:last-child a {
        border-bottom: none;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 30px 0 30px 0 !important;
    }
    .hero h1 {
        font-size: 24px !important;
        line-height: 1.3 !important;
    }
    .hero p.lead {
        font-size: 14px !important;
    }
    .section-header h2 {
        font-size: 24px !important;
    }
    .cyber-card {
        padding: 20px 15px !important;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    /* Extra small logo */
    .logo-text {
        font-size: 14px !important;
    }
    .hero-ctas {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .hero-ctas a {
        width: 100%;
        text-align: center;
    }
}

/* Trust Stripes from Zuptek Screenshot */
.trust-strip-logos {
    padding: 30px 0;
    border-bottom: 1px solid var(--border-color);
    background: #ffffff;
}

.trust-logos-flex {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.trust-logo-img {
    max-height: 35px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.4;
    transition: var(--transition);
}

.trust-logo-img:hover {
    filter: none;
    opacity: 1;
}

/* Badge Strip style */
.trust-badges-strip {
    background: var(--bg-slate);
    padding: 25px 0;
    border-bottom: 1px solid var(--border-color);
}

.trust-badges-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px 40px;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
}

.trust-badge-item i {
    font-size: 18px;
    color: var(--primary);
}
