/* Premium Typography & Variables */
:root {
    --bg-dark: #0a0a0f;
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-border: rgba(255, 255, 255, 0.08);
    --accent-blue: #0070f3;
    --accent-purple: #7928ca;
    --accent-glow: rgba(0, 112, 243, 0.4);
    --text-primary: #ffffff;
    --text-secondary: #888888;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    margin: 0;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
}

/* Base resets for light theme sections (override) */
.bg-light, .card {
    background-color: var(--card-bg) !important;
    border-color: var(--card-border) !important;
    color: var(--text-primary) !important;
}
.text-dark { color: var(--text-primary) !important; }
.text-muted { color: var(--text-secondary) !important; }
.card-body { color: var(--text-primary) !important; }

/* Hero Modern - Walker's Structure */
.hero-modern {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
}

/* Parallax Classes */
.parallax-section {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.parallax-hero {
    background-image: linear-gradient(rgba(10, 10, 15, 0.8), rgba(10, 10, 15, 0.95)), url('../images/tech_bg_hero.png');
}

.parallax-services {
    background-image: linear-gradient(rgba(10, 10, 15, 0.9), rgba(10, 10, 15, 0.95)), url('../images/tech_bg_services.png');
}

.hero-title-modern {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    background: linear-gradient(to right, #ffffff, #888888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
}

.hero-subtitle-modern {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
}

.glass-image-wrapper {
    background: rgba(0, 112, 243, 0.05);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(0, 112, 243, 0.2);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    padding: 20px;
    display: inline-block;
    max-width: 90%;
}

.quick-link-pill {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50px;
    color: #fff;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.quick-link-pill:hover {
    background: var(--accent-blue);
    color: #fff;
    border-color: var(--accent-blue);
}

/* Trust Strip */
.trust-strip {
    border-bottom: 1px solid var(--card-border);
    border-top: 1px solid var(--card-border);
    background: rgba(255,255,255,0.02);
}

/* Service Cards - Walker's Structure */
.service-card-modern {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.service-card-modern:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 112, 243, 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.service-icon-wrapper i {
    color: var(--accent-blue);
}

.service-image-header {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 16px 16px 0 0;
    border-bottom: 1px solid var(--card-border);
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, rgba(0, 112, 243, 0.1), rgba(121, 40, 202, 0.1));
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
}

.counter-value {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    font-family: 'Outfit', sans-serif;
}

.counter-label {
    color: var(--accent-blue);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 0.9rem;
}
