﻿:root {
    /* Brand Colors (Black and Blue corporate aesthetic) */
    --brand-primary: #ffffff; /* White headings */
    --brand-secondary: #000000; /* Pure black */
    --brand-accent: #0066cc; /* Bright blue for accents/buttons */
    --brand-hover: #0052a3; /* Darker accent for hover */
    
    /* Backgrounds & Glassmorphism */
    --bg-body: #000000;
    --bg-surface: rgba(255, 255, 255, 0.02); /* Glassmorphism alternate sections */
    --bg-dark: #000000; /* Pure black for footer */
    --bg-card: rgba(255, 255, 255, 0.03); /* Glassmorphism card */
    --glass-border: rgba(255, 255, 255, 0.08);
    
    /* Typography */
    --text-main: #e5e7eb;
    --text-muted: #9ca3af;
    --text-light: #f3f4f6;
    
    /* UI Elements */
    --border-color: #333333;
    --border-radius: 8px; /* Slightly squarer for traditional corporate feel */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.5);
    --shadow-md: 0 10px 25px rgba(0,0,0,0.8);
    --shadow-lg: 0 20px 40px rgba(0,0,0,0.9);
    --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-body);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

body::before {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 30%, rgba(0, 102, 204, 0.20) 0%, transparent 50%),
                radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.10) 0%, transparent 50%);
    z-index: -1;
    pointer-events: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--brand-primary);
    line-height: 1.2;
    font-weight: 700;
}

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

a:hover {
    color: var(--brand-hover);
}

img, video {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--bg-surface);
}

.bg-dark {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark h4 {
    color: #ffffff;
}

.center-content {
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 16px;
    border-radius: var(--border-radius);
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--brand-accent);
    color: #ffffff;
}

.btn-primary:hover {
    background-color: var(--brand-hover);
    color: #ffffff;
    box-shadow: 0 6px 15px rgba(0, 102, 204, 0.3);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--brand-primary);
    border-color: var(--brand-primary);
}

.btn-outline:hover { background-color: var(--brand-primary) !important; color: #0f0e17 !important; }

.btn-outline-light {
    background-color: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.btn-outline-light:hover {
    background-color: #ffffff;
    color: var(--brand-primary);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #25D366;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    font-weight: 600;
    margin-top: 10px;
    transition: var(--transition);
}

.btn-whatsapp:hover {
    background-color: #1ebe57;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}

.w-100 {
    width: 100%;
}

/* Touch active state for mobile */
@media (hover: none) {
    .btn:active, .btn-whatsapp:active, .solution-card:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 10px 0;
}

.site-header.scrolled {
    padding: 5px 0;
    box-shadow: var(--shadow-md);
}

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

.brand-logo {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    display: flex;
    align-items: center;
}

.header-logo {
    height: 90px;
    margin-right: 12px;
    object-fit: contain;
}
    letter-spacing: -0.5px;
}

.brand-logo:hover {
    color: var(--brand-accent);
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.desktop-nav a:not(.btn) {
    color: #f3f4f6;
    font-weight: 500;
    font-size: 18px;
}

.desktop-nav a:not(.btn):hover {
    color: var(--brand-accent);
}

.desktop-nav .btn-outline {
    color: #ffffff;
    border-color: rgba(255,255,255,0.3);
    padding: 10px 24px;
}

.desktop-nav .btn-outline:hover {
    background-color: var(--brand-accent);
    border-color: var(--brand-accent);
    color: #ffffff;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    z-index: 1001;
}

.mobile-nav { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background-color: rgba(15, 14, 23, 0.98); backdrop-filter: blur(10px); z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-nav.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-link {
    color: #ffffff;
    font-size: 24px;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 250px;
    background: linear-gradient(to bottom, transparent, var(--bg-body));
    z-index: 2;
    pointer-events: none;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
    max-width: 800px;
}

.hero-content h1 {
    font-size: clamp(36px, 5vw, 64px);
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: -1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 1), 0px 0px 20px rgba(0, 0, 0, 0.8);
}

.hero-content .subtitle {
    font-size: clamp(20px, 3vw, 28px);
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    margin-bottom: 40px;
    color: #ffffff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 1), 0px 0px 10px rgba(0, 0, 0, 0.8);
}

.hero-quote {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 40px;
    color: #ffffff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 1), 0px 0px 10px rgba(0, 0, 0, 0.8);
    border-left: 3px solid var(--brand-accent);
    padding-left: 20px;
    display: inline-block;
    text-align: left;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--brand-accent);
    border-radius: 2px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 18px;
    margin-top: 24px;
}

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

.solution-card {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 32px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

@media (hover: hover) and (pointer: fine) {
    .solution-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-md);
        border-color: rgba(0, 102, 204, 0.2);
    }
}

.solution-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

.icon-wrap {
    width: 48px;
    height: 48px;
    background-color: rgba(0, 102, 204, 0.1);
    color: var(--brand-accent);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.solution-card-header h3 {
    font-size: 22px;
    margin: 0;
}

.solution-card-body p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.service-list { list-style: none; padding: 0; margin: 0; margin-bottom: 20px; }

.service-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    font-size: 15px;
    color: var(--text-main);
}

.service-list li::before {
    content: '\27A4';
    position: absolute;
    left: 0;
    color: var(--brand-accent);
    font-weight: bold;
}

/* Stats Section */
.stats-section {
    padding: 30px 0;
    border-bottom: 1px solid var(--border-color);
}

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

.stat-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: transparent;
    padding: 10px;
    border-radius: 0;
    box-shadow: none;
    border: none;
}

.stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-text {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

@media (min-width: 992px) {
    .about-layout {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
}

.about-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    width: 100%;
    height: auto;
    object-fit: cover;
    border: 1px solid var(--border-color);
}

.about-content {
    max-width: 100%;
    margin: 0;
    text-align: left;
}

.about-content p {
    margin-bottom: 20px;
    font-size: 18px;
    color: var(--text-muted);
}

/* Founders Section Layout */
.founders-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.founder-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    overflow: hidden;
    background: #000;
}

@media (min-width: 992px) {
    .founder-row {
        grid-template-columns: 1fr 1fr;
    }
    
    .founder-row.reverse .founder-image {
        order: 2;
    }
    
    .founder-row.reverse .founder-card {
        order: 1;
    }
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.founder-card.dark-card {
    background: var(--bg-card); /* Glassmorphism */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    color: #f3f4f6;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: none;
    border-radius: 0;
}

.founder-card.dark-card h3 {
    color: #ffffff;
    font-size: 28px;
    margin-bottom: 8px;
}

.founder-card.dark-card .founder-title {
    color: var(--brand-accent);
    margin-bottom: 24px;
    display: block;
}

.founder-card.dark-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--bg-card); /* Glassmorphism */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: var(--border-radius);
    position: relative;
    display: flex;
    flex-direction: column;
}

.testimonial-card.text-center {
    text-align: center;
}

.testimonial-author-top {
    margin-bottom: 30px;
}

.testimonial-author-top h4 {
    font-size: 20px;
    color: var(--brand-primary);
    margin-bottom: 4px;
}

.testimonial-author-top span {
    font-size: 14px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonial-content {
    margin-bottom: 30px;
    flex-grow: 1;
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-main);
    font-size: 16px;
    line-height: 1.8;
}

.testimonial-logo-bottom {
    margin-top: auto;
}

.testimonial-logo-large {
    width: 50%;
    max-width: 250px;
    height: auto;
    object-fit: contain;
    opacity: 0.9;
    margin: 0 auto;
    display: block;
    transition: opacity 0.3s ease;
}

.testimonial-logo-bottom a:hover .testimonial-logo-large {
    opacity: 1;
}

/* Insights (Hidden) */
.insights-section {
    display: none; /* Keep hidden as requested */
}

/* Footer / Contact */
.site-footer {
    padding-top: 80px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 60px;
}

.footer-brand .footer-logo {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    text-decoration: none;
}

.footer-brand .header-logo {
    height: 40px;
    margin-right: 12px;
}

.footer-brand .brand-desc {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    line-height: 1.6;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-icon {
    color: var(--brand-accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-text h4 {
    color: rgba(255,255,255,0.5);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.contact-link {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-link:hover {
    color: var(--brand-accent);
}

.whatsapp-icon-link {
    color: #25D366; /* WhatsApp brand color */
    margin-left: auto;
    transition: transform 0.3s;
}

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

.links-title {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 15px;
}

.footer-nav a:hover {
    color: var(--brand-accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
}

.footer-bottom .credit {
    margin-top: 8px;
    font-size: 13px;
}

/* Animations */
.reveal { opacity: 0; transform: translateY(60px); transition: opacity 1.2s ease-out, transform 1.2s cubic-bezier(0.16, 1, 0.3, 1); will-change: opacity, transform; }

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .footer-form {
        padding: 24px;
    }
}


.contact-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    overflow: hidden;
}
@media (max-width: 991px) {
    .contact-block {
        grid-template-columns: 1fr;
    }
}


/* --- New Brand Logo Styles --- */
.brand-logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}
.brand-logo-container .header-logo {
    height: 100px;
    width: auto;
    object-fit: contain;
    max-height: none;
    margin: 0;
}
.brand-text-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.brand-title {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    letter-spacing: -0.5px;
}
.brand-subtitle {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
    margin-top: 4px;
}

/* --- Global Mobile Optimizations --- */
@media (max-width: 768px) {
    /* Header logo scaling */
    .brand-logo-container {
        gap: 8px;
    }
    .brand-logo-container .header-logo {
        height: 75px;
    }
    .brand-title {
        font-size: 22px;
        letter-spacing: 0;
    }
    .brand-subtitle {
        font-size: 11px;
        margin-top: 2px;
    }
    
    /* Hero section */
    .hero-content h1 {
        font-size: 38px;
        line-height: 1.2;
    }
    .hero-content p {
        font-size: 16px;
    }

    /* Contact Block scaling */
    .contact-form-wrapper {
        padding: 30px !important;
    }
    .contact-block {
        display: flex;
        flex-direction: column;
    }
    .contact-image {
        height: 250px;
    }
}

/* --- Inner Page Services Detail --- */
.inner-hero { min-height: auto; }
.service-detail-block {
    margin-bottom: 80px;
    scroll-margin-top: 140px; /* Offset for fixed header */
    padding-top: 20px;
}
.service-detail-title {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--brand-accent);
}
.service-detail-lead {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 30px;
    max-width: 800px;
}
.service-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.service-feature {
    padding: 30px;
    border-radius: 8px;
    background: #111116; /* matching dark-card */
}
.service-feature h4 {
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 12px;
}
.service-feature p {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}


.solution-card-body { display: flex; flex-direction: column; flex: 1; }


/* New Premium Service Layouts */
.services-hero-premium {
    position: relative;
    padding: 300px 0 220px;
    background: linear-gradient(rgba(0, 0, 0, 0.15), rgba(15, 14, 23, 1)), url('../assets/main_services_bg.jpg') center/cover no-repeat;
    text-align: center;
    min-height: 65vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.services-hero-premium h1 {
    font-size: 4.5rem;
    color: var(--brand-primary);
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.8);
}

.services-hero-premium p {
    font-size: 1.35rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

/* Integrated Overlapping Service Layout */
.service-split-row {
    display: flex;
    align-items: center;
    position: relative;
    padding: 0;
    margin-bottom: 80px;
    border: none;
    flex-direction: row-reverse;
}

.service-split-image-col {
    width: 65%;
    position: relative;
    z-index: 1;
}

.service-split-image {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-split-image-col:hover .service-split-image {
    transform: translateY(-5px) scale(1.02);
    border-color: rgba(0, 102, 204, 0.3);
}

.service-split-content-col {
    width: 55%;
    position: relative;
    z-index: 2;
    background: rgba(15, 14, 23, 0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 50px;
    margin-left: -20%;
    /* Subtle gold glow on the right, plus base shadow */
    box-shadow: 60px 0 120px -10px rgba(178, 142, 77, 0.45), 0 40px 80px rgba(0,0,0,0.9);
}

section:nth-of-type(odd) .service-split-row {
    flex-direction: row;
}

section:nth-of-type(odd) .service-split-row .service-split-content-col {
    margin-left: 0;
    margin-right: -20%;
    /* Subtle gold glow on the left, plus base shadow */
    box-shadow: -60px 0 120px -10px rgba(178, 142, 77, 0.45), 0 40px 80px rgba(0,0,0,0.9);
}

@media (max-width: 991px) {
    .service-split-row, section:nth-of-type(odd) .service-split-row {
        flex-direction: column;
    }
    .service-split-image-col {
        width: 100%;
        margin: 0 !important;
        order: 1; /* Picture above */
    }
    .service-split-image {
        height: 350px;
    }
    .service-split-content-col {
        width: 90%;
        margin: -175px auto 0 auto !important; /* Starts from half of picture going down */
        order: 2; /* Text below picture */
        box-shadow: 0 10px 40px rgba(0,0,0,0.6) !important;
        padding: 30px;
    }
}.premium-feature-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 0 0;
}

.premium-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 1.05rem;
    color: #e5e7eb;
    line-height: 1.6;
}

.premium-feature-list li svg {
    flex-shrink: 0;
    color: var(--brand-accent);
    margin-top: 4px;
}

.services-cta-section {
    text-align: center;
    padding: 100px 20px;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.service-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-sub-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 30px;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(10px);
}

.service-sub-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 102, 204, 0.3);
}

.service-sub-card h3 {
    font-size: 1.4rem;
    color: var(--brand-accent);
    margin-bottom: 15px;
}

.service-sub-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}







.grid-3-col {
    grid-template-columns: repeat(3, 1fr) !important;
}
.grid-4-col {
    grid-template-columns: repeat(4, 1fr) !important;
}
@media (max-width: 1200px) {
    .grid-4-col {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}
@media (max-width: 991px) {
    .grid-3-col {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}
@media (max-width: 768px) {
    .grid-3-col, .grid-4-col {
        grid-template-columns: 1fr !important;
    }
}





.btn-long-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 30px;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-light);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-decoration: none;
    transition: var(--transition);
}

.btn-long-bar:hover { background-color: var(--brand-primary); border-color: var(--brand-primary); color: #0f0e17; transform: translateY(-3px); }


@media (max-width: 768px) {
    .services-hero-premium {
        padding: 150px 0 100px;
        min-height: 40vh;
    }
}

