/* Base Variables */
:root {
    --bg-dark: #0a0a0f;
    --bg-card: #13131f;
    --bg-card-hover: #1c1c2e;
    --primary: #3b82f6;
    /* Trust Blue */
    --cta-color: #00e676;
    /* Conversion Green */
    /* Cyan */
    --secondary: #7000ff;
    /* Neon Purple */
    --text-main: #ffffff;
    --text-muted: #a0a0b0;
    --accent-gradient: linear-gradient(135deg, var(--cta-color), #00c853);
    /* Green Gradient for Buttons */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: radial-gradient(circle at 50% 0%, #111827, #0a0a0f 60%);
    background-color: var(--bg-dark);
    /* Fallback */
    background-attachment: fixed;
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

.highlight {
    color: var(--primary);
    text-shadow: 0 0 20px rgba(0, 242, 255, 0.3);
}

/* Header */
.main-header {
    padding: 15px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
}

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

.logo a {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

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

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-link {
    font-weight: 500;
    color: var(--text-muted);
    font-size: 0.95rem;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-main);
}

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

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

.nav-cta-btn {
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--cta-color);
    color: var(--cta-color);
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: 0.3s;
}

.nav-cta-btn:hover {
    background: var(--cta-color);
    color: #000;
    box-shadow: 0 0 15px rgba(0, 230, 118, 0.4);
}

.menu-toggle {
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
}

/* Hero Section */
.hero-section {
    padding: 180px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 30%, rgba(59, 130, 246, 0.15), transparent 60%);
    z-index: -1;
}

.hero-sub {
    font-size: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #fff, #a0a0b0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 3rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-weight: 500;
}

.stat-item i {
    color: var(--primary);
}

.cta-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent-gradient);
    color: #000;
    font-weight: 800;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 230, 118, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 230, 118, 0.4);
}

/* Tabs Section */
.tabs-section {
    padding: 50px 0 100px;
}

.tabs-nav-container {
    margin-bottom: 40px;
    overflow-x: auto;
    padding-bottom: 10px;
    /* For scrollbar */
}

.tabs-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    min-width: max-content;
}

.tab-item {
    padding: 12px 24px;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-muted);
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tab-item:hover {
    background: var(--bg-card-hover);
    color: var(--text-main);
}

.tab-item.active {
    background: rgba(0, 242, 255, 0.1);
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.1);
}

/* Tab Content */
.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-header {
    text-align: center;
    margin-bottom: 40px;
}

.content-header h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.content-header p {
    color: var(--text-muted);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    padding: 30px;
    border-radius: 20px;
    position: relative;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.product-card:hover {
    transform: translateY(-5px);
    background: var(--bg-card-hover);
    border-color: rgba(255, 255, 255, 0.2);
}

.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--secondary);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 20px;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.product-card h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

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

.card-btn {
    width: 100%;
    padding: 12px;
    text-align: center;
    background: transparent;
    border: 1px solid var(--cta-color);
    color: var(--cta-color);
    border-radius: 10px;
    font-weight: 600;
    transition: 0.3s;
}

.card-btn:hover {
    background: var(--cta-color);
    color: #000;
}

/* Video Grid */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.video-card {
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.video-placeholder {
    height: 200px;
    background: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: 0.3s;
}

.video-placeholder:hover {
    background: #2a2a2a;
    color: var(--primary);
}

.video-card h4 {
    padding: 20px;
    font-size: 1.1rem;
}

/* Services List */
.services-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.service-item {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid var(--glass-border);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(112, 0, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--secondary);
    flex-shrink: 0;
}

.service-info {
    flex-grow: 1;
}

.service-info h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.service-info p {
    color: var(--text-muted);
}

.service-btn {
    padding: 10px 25px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--cta-color);
    border: 1px solid var(--cta-color);
    border-radius: 30px;
    font-weight: 600;
}

.service-btn:hover {
    background: var(--cta-color);
    color: #000;
}

/* About Us Section */
.about-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, var(--bg-dark), #0f0f15);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.section-title {
    font-size: 1rem;
    color: var(--primary);
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.about-headline {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 2rem;
}

.about-stats .stat h4 {
    font-size: 2rem;
    color: #fff;
}

.about-stats .stat p {
    font-size: 0.9rem;
    margin: 0;
}

.image-placeholder-box {
    width: 100%;
    height: 400px;
    background: var(--bg-card);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.image-placeholder-box::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(0, 242, 255, 0.1), transparent 60%);
    top: -25%;
    left: -25%;
}

/* Audit Section */
.audit-section {
    padding: 80px 0 120px;
}

.audit-box {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 60px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.audit-box::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(112, 0, 255, 0.2), transparent 70%);
    pointer-events: none;
}

.audit-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.audit-desc {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    font-size: 1.1rem;
}

.audit-form {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.form-group input {
    padding: 15px 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    font-family: var(--font-body);
    width: 250px;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
}

.audit-btn {
    padding: 15px 30px;
    background: var(--cta-color);
    color: #000;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.audit-btn:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 230, 118, 0.3);
}

/* Footer */
.main-footer {
    background: #050508;
    padding: 80px 0 30px;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.footer-brand h3 span {
    color: var(--primary);
}

.footer-brand p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links 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-main);
}

.social-links a:hover {
    background: var(--primary);
    color: #000;
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

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

.footer-links ul li a {
    color: var(--text-muted);
}

.footer-links ul li a:hover {
    color: var(--primary);
}

.footer-contact {
    text-align: right;
}

.footer-contact p {
    color: var(--text-muted);
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #555;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links,
    .nav-cta-btn {
        display: none;
        /* Hide nav on mobile for now */
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .audit-form {
        flex-direction: column;
    }

    .form-group input {
        width: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .service-item {
        flex-direction: column;
        text-align: center;
    }

    .tabs-nav {
        justify-content: flex-start;
    }
}

/* Services Grid New */
.services-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card-new {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    padding: 30px;
    border-radius: 20px;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
}

.service-card-new:hover {
    transform: translateY(-5px);
    background: var(--bg-card-hover);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.service-icon-new {
    width: 50px;
    height: 50px;
    background: rgba(0, 242, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.service-card-new h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #fff;
    min-height: 50px;
    /* Align titles */
}

.service-points {
    list-style: none;
    margin-bottom: 25px;
    flex-grow: 1;
}

.service-points li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.4;
}

.service-points li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.service-btn-new {
    width: 100%;
    padding: 10px;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: var(--cta-color);
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: 0.3s;
}

.service-btn-new:hover {
    background: var(--cta-color);
    color: #000;
    border-color: var(--cta-color);
}