/* Global Variables - Light Mode Premium */
:root {
    --primary: #2563EB;
    --primary-dark: #1D4ED8;
    --secondary: #FF6B6B;
    --bg-body: #f8f9fa;
    --bg-card: #ffffff;
    --bg-glass: rgba(255, 255, 255, 0.95);
    --text-main: #333333;
    --text-heading: #1a1a1a;
    --text-muted: #666666;
    --border: #e0e0e0;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
    --radius: 12px;
    --header-height: 80px;
}

/* Dark Mode Variables */
[data-theme="dark"] {
    --bg-body: #0f172a;
    --bg-card: #1e293b;
    --bg-glass: rgba(30, 41, 59, 0.95);
    --text-main: #e2e8f0;
    --text-heading: #f8fafc;
    --text-muted: #94a3b8;
    --border: #334155;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.5), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
    /* Stronger shadow */
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.5), 0 4px 6px -2px rgba(0, 0, 0, 0.3);
}

/* Enhancing contrast for cards in dark mode */
[data-theme="dark"] .glass-card,
[data-theme="dark"] .service-card,
[data-theme="dark"] .faq-item,
[data-theme="dark"] .article-card {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(145deg, #1e293b, #243146);
    /* Subtle gradient for depth */
}

/* Toggle Theme Button */
.theme-toggle {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--text-heading);
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.theme-toggle:hover {
    transform: rotate(15deg);
    color: var(--primary);
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    z-index: 9999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    animation: slideUp 0.5s ease-out;
}

.cookie-text {
    font-size: 0.95rem;
    color: var(--text-main);
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        text-align: center;
        bottom: 1rem;
        left: 1rem;
        right: 1rem;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

/* Legal Page Styles (Refactored) */
.legal-page {
    padding-top: 120px;
    padding-bottom: 60px;
    min-height: 80vh;
}

.legal-content {
    background: var(--bg-card);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid var(--border);
}

.legal-content h1 {
    color: var(--primary);
    margin-bottom: 30px;
    text-align: center;
}

.legal-content h2 {
    color: var(--secondary);
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 10px;
}

.legal-content p,
.legal-content ul {
    margin-bottom: 15px;
    color: var(--text-main);
    line-height: 1.6;
}

.legal-content ul {
    padding-left: 20px;
}

.back-link {
    display: inline-block;
    margin-top: 20px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.back-link:hover {
    text-decoration: underline;
    color: var(--primary-dark);
}

/* Reset & Base */
html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    background-color: var(--bg-body);
    color: var(--text-main);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

img {
    max-width: 100%;
    height: auto;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--text-heading);
    margin-top: 0;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-dark), var(--secondary));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Header & Nav */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    height: var(--header-height);
    display: flex;
    align-items: center;
    transition: background 0.3s, box-shadow 0.3s;
}

.header.scrolled {
    box-shadow: var(--shadow-md);
    background: var(--bg-card);
    /* More solid on scroll */
}

.nav-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-heading);
}

.logo-accent {
    color: var(--primary);
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-dark);
}

.nav-cta {
    background: var(--primary);
    color: #fff !important;
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(78, 205, 196, 0.3);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(78, 205, 196, 0.4);
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger-line {
    display: block;
    width: 25px;
    height: 2px;
    background: #333;
    margin: 5px 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    transition: all 0.2s;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 15px rgba(78, 205, 196, 0.3);
    border: none;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(78, 205, 196, 0.4);
}

.btn-secondary {
    background: var(--bg-card);
    color: var(--text-heading);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--bg-body);
}

/* Hero Section */
/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: var(--header-height);
    padding-bottom: 4rem;
    text-align: center;
    background: radial-gradient(circle at top right, rgba(78, 205, 196, 0.1), transparent 40%);
    background-color: var(--bg-body);
}

.hero-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Sections General */
section {
    padding: 5rem 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 4rem;
    font-size: 1.1rem;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.5rem;
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-description {
    color: var(--text-muted);
}

/* Blog/Articles Grid */
.blog-container {
    padding-top: calc(var(--header-height) + 2rem);
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.blog-header {
    text-align: center;
    margin-bottom: 4rem;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.article-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.article-card-image {
    height: 200px;
    background: #f1f3f5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.article-card-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.article-card-tag {
    display: inline-block;
    background: rgba(78, 205, 196, 0.1);
    color: var(--primary-dark);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    align-self: flex-start;
}

.article-card-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.article-card-title a {
    color: var(--text-heading);
}

.article-card-title a:hover {
    color: var(--primary);
}

.article-card-excerpt {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.article-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #999;
    font-size: 0.85rem;
    border-top: 1px solid #eee;
    padding-top: 1rem;
    width: 100%;
}

.read-more {
    color: var(--primary);
    font-weight: 600;
}

/* Footer */
.footer {
    background: var(--bg-card);
    padding: 5rem 0 2rem;
    border-top: 1px solid var(--border);
    margin-top: 5rem;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 4rem;
    width: 100%;
}

.footer-column {
    flex: 1;
    min-width: 180px;
}

.brand-column {
    flex: 2;
    min-width: 300px;
    padding-right: 2rem;
}

.footer-logo {
    display: inline-block;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-heading);
    text-decoration: none;
}

.footer-tagline {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1rem;
    max-width: 400px;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-heading);
}

.footer-list li {
    margin-bottom: 0.8rem;
}

.footer-list a {
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: 0.2s;
}

.footer-list a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--bg-body);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--text-heading);
    border: 1px solid var(--border);
    font-size: 0.9rem;
    font-weight: 700;
}

.social-link:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Article Specific (Pricing Tables, etc) */
.article-container {
    max-width: 800px;
    margin: 0 auto;
    padding-top: calc(var(--header-height) + 2rem);
    padding-bottom: 4rem;
}

.article-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.article-meta {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.article-content {
    font-size: 1.15rem;
    color: var(--text-main);
}

.article-content h2 {
    margin: 3rem 0 1.5rem;
    font-size: 1.8rem;
}

.article-content h3 {
    margin: 2rem 0 1rem;
    font-size: 1.4rem;
}

.article-content p,
.article-content ul {
    margin-bottom: 1.5rem;
}

.article-content li {
    margin-bottom: 0.5rem;
}

.price-table,
.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin: 2.5rem 0;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.price-table th,
.price-table td,
.comparison-table th,
.comparison-table td {
    padding: 1.2rem;
    border-bottom: 1px solid #eee;
    text-align: left;
    vertical-align: middle;
}

.price-table th,
.comparison-table th {
    background: #f4f6f8;
    color: var(--text-heading);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.price-table tr:last-child td,
.comparison-table tr:last-child td {
    border-bottom: none;
}

.price-highlight {
    color: var(--primary-dark);
    font-weight: 700;
    background: rgba(78, 205, 196, 0.1);
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
}

/* Comparison Table Specifics */
.shopify-color {
    color: #95BF47;
    font-weight: 700;
}

.woo-color {
    color: #9B5C8F;
    font-weight: 700;
}

.winner {
    background-color: rgba(149, 191, 71, 0.1);
    /* Light green */
    color: #2e7d32;
    font-weight: 600;
}

.loser {
    background-color: rgba(220, 53, 69, 0.05);
    /* Very light red */
    color: var(--text-muted);
}

.tie {
    background-color: rgba(255, 193, 7, 0.1);
    font-weight: 600;
}

.tip-box {
    background: #e6fffa;
    border-left: 4px solid var(--primary);
    padding: 1.5rem;
    border-radius: var(--radius);
    margin: 2rem 0;
    color: #2c7a7b;
}

.warning-box {
    background: #fff5f5;
    border-left: 4px solid var(--secondary);
    padding: 1.5rem;
    border-radius: var(--radius);
    margin: 2rem 0;
    color: #c53030;
}

/* STATS SECTION PREMIUM STYLES */
.stats-section {
    padding: 6rem 0;
    background: transparent;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2.5rem;
}

.stat-card.glass-card {
    text-align: center;
    padding: 3rem 2rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid var(--border);
    background: var(--bg-card);
    position: relative;
    overflow: hidden;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.15);
    border-color: var(--primary);
}

.stat-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.2) rotate(5deg);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--text-heading), var(--primary));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Mobile */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background: var(--bg-body);
        padding: 2rem;
        align-items: center;
        gap: 2rem;
        border-top: 1px solid var(--border);
        overflow-y: auto;
        z-index: 999;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-link {
        font-size: 1.5rem;
    }

    /* Mobile Header Layout: Logo Left, Icons Right */
    .nav-container {
        display: flex;
        justify-content: space-between;
        /* Reverting to space-between to remove extra space */
        align-items: center;
        padding-right: 0;
    }

    /* Wrap Theme Toggle and Hamburger for Right Alignment */
    .mobile-controls {
        display: flex;
        align-items: center;
        justify-content: end;
        gap: 15px;
    }

    .hamburger {
        display: block;
        margin-left: 0;
    }

    .theme-toggle {
        margin: 0 !important;
        /* Remove inline margins */
    }

    /* Centering Content on Mobile due to User Request */
    .hero,
    .hero-container,
    .section-title,
    .section-subtitle,
    .contact-seo-wrapper,
    .service-detail.glass-card {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    /* Cards need explicit margin auto to center the block itself */
    .service-card,
    .article-card,
    .project-card,
    .stat-card,
    .faq-item {
        margin-left: auto !important;
        margin-right: auto !important;
        text-align: center !important;
        max-width: 100%;
        /* Ensure they don't get stuck at a fixed width */
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .features-list {
        display: inline-block;
        /* Center list items */
        text-align: left;
        margin: 0 auto;
        /* Center the list block */
    }

    .article-card-tag,
    .project-tags {
        justify-content: center;
        align-self: center;
    }

    .article-title {
        font-size: 2rem;
    }

    .price-table,
    .comparison-table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .legal-content {
        padding: 1rem 0;
    }

    /* Stack contact grid properly */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .service-detail-icon {
        margin: 0 auto 1.5rem auto;
        /* Center icon */
    }

    .legal-content h1 {
        text-align: center;
    }

    /* Fix Footer Alignment on Mobile */
    .footer-column {
        text-align: center !important;
        align-items: center !important;
    }

    .footer-list {
        align-items: center;
        display: flex;
        flex-direction: column;
    }

    .social-links {
        justify-content: center;
    }

    /* Fix Stats Grid - 2 COlumns on Mobile */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
    }

    .stat-card.glass-card {
        padding: 1.5rem 1rem !important;
        /* Smaller padding */
    }

    .stat-number {
        font-size: 2.5rem !important;
        /* Smaller font */
    }

    /* Fix Text Clipping/Readability */
    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    .service-detail-title,
    .section-title,
    .article-title,
    .project-title,
    .card-title,
    p,
    li,
    span,
    div {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        white-space: normal !important;
        max-width: 100% !important;
    }

    /* Specific fix for service cards to prevent overflow */
    .service-card,
    .glass-card {
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: visible !important;
        /* Allow text to flow */
    }

    /* Ensure lists don't overflow */
    ul,
    ol {
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
}

/* RESTORED & ENHANCED STYLES v2.8 */
.glass-card {
    background: var(--bg-card);
    border: 1px solid rgba(0, 0, 0, 0.08);
    /* More subtle */
    border-radius: 16px;
    /* Modern curves */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services-detailed {
    padding: 6rem 0;
    background: linear-gradient(to bottom, var(--bg-body), var(--bg-card));
}

.service-detail.glass-card {
    padding: 4rem;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
    margin-bottom: 4rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.08);
    /* Premium shadow */
    overflow: hidden;
    position: relative;
}

.service-detail:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px -12px rgba(37, 99, 235, 0.15);
    border-color: rgba(37, 99, 235, 0.2);
}

.service-detail:nth-child(even) {
    flex-direction: row-reverse;
}

.service-detail-icon {
    font-size: 3rem;
    min-width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(37, 99, 235, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    color: var(--primary);
    box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.1);
}

.service-detail-content {
    flex: 1;
}

.service-detail-title {
    font-size: 2.2rem;
    /* Larger */
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-heading);
    letter-spacing: -0.02em;
}

.service-detail-description {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

/* Premium List Styling */
.features-title,
.benefits-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary);
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-heading);
    font-weight: 600;
}

.features-list li::before {
    content: "✓";
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 900;
    flex-shrink: 0;
    box-shadow: 0 2px 5px rgba(37, 99, 235, 0.3);
}

.service-benefits {
    background: rgba(37, 99, 235, 0.05);
    /* Blue tint */
    padding: 2rem;
    border-radius: 16px;
    border-left: 5px solid var(--primary);
}

.service-benefits p {
    margin: 0;
    font-weight: 600;
    color: var(--text-heading);
    font-size: 1.05rem;
}

/* Missing Section Styles */
.process-section {
    padding: 6rem 0;
    background: var(--bg-card);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}

.process-step.glass-card {
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    border-radius: 20px;
}

.step-number {
    font-size: 5rem;
    font-weight: 900;
    color: rgba(37, 99, 235, 0.06);
    position: absolute;
    top: 0rem;
    right: 1rem;
    line-height: 1;
    user-select: none;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-heading);
}

.stats-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
}

.stats-section .stat-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 3rem 2rem;
    backdrop-filter: blur(10px);
}

.stats-section .stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.5rem;
}

.cta-content {
    text-align: center;
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--bg-card), var(--bg-body));
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

@media (max-width: 900px) {
    .service-detail.glass-card {
        flex-direction: column !important;
        padding: 2rem;
    }

    .service-detail-icon {
        margin-bottom: 1.5rem;
    }

    .features-list {
        grid-template-columns: 1fr;
    }
}

/* CONTACT SECTION PREMIUM STYLES v2.9 */
.contact-section {
    padding-bottom: 8rem;
    background: linear-gradient(to top, var(--bg-body), var(--bg-card));
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    /* SEO text takes more space */
    gap: 4rem;
    align-items: start;
}

/* SEO Wrapper (Left Column) */
.contact-seo-wrapper.glass-card {
    padding: 3.5rem;
    border-left: 5px solid var(--primary);
}

.seo-text-intro {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-main);
    margin-bottom: 2rem;
}

.seo-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.seo-badge {
    background: rgba(37, 99, 235, 0.08);
    /* Light Blue */
    color: var(--primary-dark);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.seo-text-details {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.seo-call-action {
    background: var(--bg-body);
    padding: 1.5rem;
    border-radius: 12px;
    font-style: italic;
    color: var(--text-heading);
    border: 1px dashed var(--border);
}

/* WhatsApp Card (Right Column Top) */
.whatsapp-card {
    background: linear-gradient(135deg, #25D366, #128C7E);
    /* WhatsApp Colors */
    color: white;
    text-align: center;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    margin-bottom: 2rem;
    border: none;
    /* Override glass border */
}

.whatsapp-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.whatsapp-title {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.whatsapp-text {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.btn-whatsapp {
    background: white;
    color: #128C7E;
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    background: #f9f9f9;
}

/* Contact Details (Right Column Middle) */
.contact-details.glass-card {
    padding: 2.5rem;
    margin-bottom: 2rem;
}

.details-title {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item-icon {
    width: 50px;
    height: 50px;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-item-title {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.contact-item-link,
.contact-item-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-heading);
    display: block;
}

.contact-item-link:hover {
    color: var(--primary);
}

.contact-item-info {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

/* Why Choose (Bottom Centered) */
.why-choose.glass-card {
    padding: 3rem;
    background: linear-gradient(135deg, var(--bg-card), var(--bg-body));
    width: 60vw;
    margin: 4rem auto 0;
    text-align: center;
    border: 1px solid var(--border);
}

[data-theme="dark"] .why-choose.glass-card {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    border-color: rgba(255, 255, 255, 0.1);
}

.why-title {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

.why-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    text-align: left;
}

.why-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.8rem;
    color: var(--text-heading);
    font-weight: 500;
}

.why-list li::before {
    content: "★";
    position: absolute;
    left: 0;
    color: #FFD700;
    /* Gold star */
    font-size: 1.2rem;
    line-height: 1.4;
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-seo-wrapper.glass-card {
        padding: 2rem;
    }

    .why-choose.glass-card {
        width: 90%;
        /* Wider on mobile */
    }
}

/* BLOG/CONSEILS SECTION PREMIUM STYLES v3.1 */
.conseils-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    padding: 2rem 0;
}

.conseil-card.glass-card {
    display: flex;
    flex-direction: column;
    padding: 0;
    /* Reset padding for image/header */
    height: 100%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    background: var(--bg-card);
}

.conseil-card-header {
    height: 180px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(139, 92, 246, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.conseil-card-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, var(--bg-card), transparent);
}

.conseil-icon {
    font-size: 4rem;
    transform: scale(1);
    transition: transform 0.4s ease;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.conseil-card:hover .conseil-icon {
    transform: scale(1.2) rotate(-5deg);
}

.conseil-card-body {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.conseil-meta {
    font-size: 0.8rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 1rem;
    display: block;
}

.conseil-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-heading);
    line-height: 1.3;
}

.conseil-desc {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.conseil-link {
    color: var(--text-heading);
    font-weight: 700;
    font-size: 0.95rem;
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    transition: color 0.3s;
}

.conseil-link-arrow {
    width: 35px;
    height: 35px;
    background: var(--bg-body);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.conseil-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.15);
    border-color: var(--primary);
}

.conseil-card:hover .conseil-link {
    color: var(--primary);
}

.conseil-card:hover .conseil-link-arrow {
    background: var(--primary);
    color: white;
    transform: translateX(5px);
}

.conseils-cta {
    text-align: center;
    margin-top: 4rem;
}

/* FAQ SECTION PREMIUM STYLES v3.0 */
.faq-section {
    padding-bottom: 8rem;
    background: var(--bg-card);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* Updated FAQ Styles per user request (Light Background) */
.faq-item {
    background: #f8f9fa;
    /* Light background explicitly */
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

[data-theme="dark"] .faq-item {
    background: linear-gradient(145deg, #1e293b, #243146);
    border-color: rgba(255, 255, 255, 0.1);
}

.faq-item:hover {
    border-left-color: var(--primary);
    background: #fff;
    /* Even lighter on hover in light mode */
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

[data-theme="dark"] .faq-item:hover {
    background: linear-gradient(145deg, #1e293b, #243146);
    /* Keep dark in dark mode */
}

.faq-question {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.faq-question::before {
    content: '?';
    position: absolute;
    left: 0;
    color: rgba(37, 99, 235, 0.3);
    font-weight: 900;
    font-size: 1.2rem;
}

.faq-answer {
    color: var(--text-muted);
    line-height: 1.6;
    padding-left: 1.5rem;
    font-size: 1rem;
}

/* STATS SECTION PREMIUM STYLES */
.stats-section {
    padding: 6rem 0;
    background: transparent;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2.5rem;
}

.stat-card.glass-card {
    text-align: center;
    padding: 3rem 2rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid var(--border);
    background: var(--bg-card);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.15);
    border-color: var(--primary);
}

.stat-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.2) rotate(5deg);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--text-heading), var(--primary));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* PROJECTS SECTION PREMIUM STYLES */
.projects-section {
    padding: 6rem 0;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.project-card.glass-card {
    padding: 0;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: var(--bg-card);
}

.project-image-container {
    position: relative;
    overflow: hidden;
    height: 250px;
    background: #f1f5f9;
}

.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(3px);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-card:hover .project-image {
    transform: scale(1.1);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.2);
    border-color: var(--primary);
}

.project-btn {
    background: white;
    color: var(--text-heading-dark, #0f172a);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.project-card:hover .project-btn {
    transform: translateY(0);
}

.project-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.project-tags {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.project-tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-weight: 700;
}

.project-title {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    font-weight: 800;
    color: var(--text-heading);
}

.project-desc {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 1rem;
}