/* services.css - Dark Theme for Premium Services Layout */

/* Body Override for specific backgrounds if needed */
.services-page-dark {
    --bg-primary: #000000;
    --bg-secondary: #0A0A0A; /* Lighter black for depth */
    
    --text-primary: #FFFFFF;
    --text-secondary: #A0A0A0; /* Light grey body */
    --text-muted: #888888;     /* Medium grey description */

    --accent-primary: #00FFA3; /* Cyber Teal */
    --accent-hover: #00E5FF;   /* Bright Cyan */
    
    --nav-bg: rgba(0, 0, 0, 0.85);
    background-color: var(--bg-primary);
}

/* Base Sections for Services */
.bg-primary { background-color: var(--bg-primary); }
.bg-secondary { background-color: var(--bg-secondary); }

.services-main {
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Layout Details */
.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px; /* Desktop padding */
    display: flex;
    flex-direction: column;
}

.content-wrapper {
    max-width: 900px; /* Readability width */
}

/* Hero Section */
.services-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--bg-primary);
    padding: 150px 24px;
    position: relative;
}

.hero-heading {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: clamp(48px, 6vw, 96px);
    color: var(--text-primary);
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-subheading {
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 400;
    color: var(--text-secondary);
    letter-spacing: 0.01em;
    line-height: 1.5;
    max-width: 800px;
    margin: 0 auto;
}

/* Service Sections */
.service-section {
    padding: 150px 0; /* Huge vertical space between sections */
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05); /* very subtle separation */
}

.section-number {
    font-size: clamp(100px, 12vw, 180px);
    font-weight: 200;
    line-height: 1;
    letter-spacing: -0.03em;
    opacity: 0.9;
    margin-bottom: 32px;
    user-select: none;
    
    /* Using gradient text mixin defined in styles.css */
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.section-heading {
    font-size: clamp(36px, 4.5vw, 56px);
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 24px;
}

.positioning-statement {
    font-size: clamp(18px, 2.5vw, 22px);
    font-weight: 500;
    color: #C0C0C0; /* Brighter grey for highlight */
    letter-spacing: 0.005em;
    line-height: 1.4;
    margin-bottom: 32px;
}

.description {
    font-size: clamp(16px, 2vw, 18px);
    font-weight: 400;
    color: var(--text-secondary);
    letter-spacing: 0.015em;
    line-height: 1.7;
    margin-bottom: 48px;
}

.subheading {
    font-size: clamp(18px, 2vw, 20px);
    font-weight: 600;
    color: var(--accent-primary); /* #00FFA3 */
    letter-spacing: 0.01em;
    margin-bottom: 24px;
}

/* Services Bullet List */
.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    font-size: clamp(16px, 2vw, 18px);
    font-weight: 400;
    color: var(--text-muted); /* #888888 */
    line-height: 1.7;
    margin-bottom: 24px;
    padding-left: 24px;
    position: relative;
}

/* Custom Teal Bullet marker */
.service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background-color: var(--accent-primary);
    border-radius: 50%;
}

.service-list strong {
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0.01em;
}

/* Closing Section */
.closing-section {
    padding: 150px 24px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.closing-headline {
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 24px;
}

.closing-body {
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 48px auto;
}

/* Teal Custom Button */
.btn-teal {
    background-color: var(--accent-primary);
    color: #000000;
    padding: 16px 48px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
}

.btn-teal:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 255, 163, 0.3);
    color: #000000;
}

/* Fade-in-up animation pattern */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Breakpoints overrides */
@media (max-width: 768px) {
    .services-container {
        padding: 0 24px;
    }

    .service-section {
        padding: 100px 0;
    }
    
    .closing-section {
        padding: 100px 24px;
    }

    .section-number {
        margin-bottom: 16px; 
    }
}
