:root {
    /* Core Branding Colors */
    --primary: #84bcdd;
    --primary-dark: #2c7bac;
    --primary-light: #A3D4EE;
    --secondary: #00E5D4;
    --accent: #FFC107;
    --dark: #000000;
    --light: #FFFFFF;
    --bg-light: #f1f2f4;
    --bg-white: #ffffff;

    /* Text Colors */
    --text-dark: #212121;
    --text-main: #424242;
    --text-medium: #555555;
    --text-light: #757575;
    --text-muted: rgba(255, 255, 255, 0.7);
    --text-white: #ffffff;
    --heading-color: var(--text-white);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #84bcdd 0%, #6BA4C5 100%);
    --gradient-secondary: linear-gradient(90deg, #212121 0%, #424242 100%);
    --gradient-hero: linear-gradient(135deg, #1a2980 0%, #26d0ce 100%);
    --gradient-cta: linear-gradient(135deg, #1a2980 0%, #26d0ce 100%);
    --gradient-blue: linear-gradient(135deg, #3949ab, #5c6bc0);

    /* Layout & Spacing */
    --container-max-width: 1400px;
    --section-padding-large: 100px 0;
    --section-padding-medium: 80px 0;
    --section-padding-small: 50px 0;

    /* UI Elements */
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 16px;
    --border-radius-full: 50px;
    --shadow-soft: 0 5px 15px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.12);
    --shadow-text: 0 2px 4px rgba(0, 0, 0, 0.3);
    --transition: all 0.3s ease;
    --transition-slow: all 0.6s ease;
}

/* AI SUPPORT SERVICE PAGE STYLES */
.support-hero {
    background: url('/static/assets/hero.jpeg') center 40% / cover no-repeat;
    position: relative;
    text-align: center;
    overflow: hidden;
    padding: 5rem 0 0 0;
    min-height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.support-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="1200" height="600" fill="url(%23grid)"/></svg>');
    pointer-events: none;
}

/* Dark overlay for better text readability */
.support-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.support-hero .container {
    position: relative;
    z-index: 10;
    width: 100%;
}

.support-hero h1 {
    font-size: 56px;
    color: var(--text-white);
    margin-bottom: 20px;
    font-weight: 700;
    animation: fadeInDown 0.8s ease-out;
}

.support-hero p {
    color: var(--text-white);
    animation: fadeInUp 0.8s ease-out 0.2s both;
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Services Section */
.support-services {
    padding: 80px 0;
    background: #f1f2f4;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    color: #1a2980;
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: 900;
}

.section-header p {
    color: #555;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.support-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.support-card {
    background: white;
    border: 1px solid #3a2570;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.support-card:hover {
    background: #84bcdd;
    border-color: #84bcdd;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.support-icon {
    font-size: 48px;
    color: #84bcdd;
    margin-bottom: 20px;
    display: block;
}

.support-card:hover .support-icon {
    color: white;
}

.support-card h3 {
    color: #1a2980;
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
}

.support-card p {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.support-card:hover h3,
.support-card:hover p {
    color: white;
}

/* Benefits Section */
.support-benefits {
    padding: 80px 0;
    background: white;
}

.support-benefits h2 {
    color: #1a2980;
    font-size: 42px;
    margin-bottom: 60px;
    font-weight: 900;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.benefit-box {
    background: linear-gradient(135deg, rgba(26, 41, 128, 0.05) 0%, rgba(132, 188, 221, 0.05) 100%);
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #84bcdd;
    transition: all 0.3s ease;
}

.benefit-box:hover {
    background: #84bcdd;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(132, 188, 221, 0.2);
}

.benefit-box h4 {
    color: #1a2980;
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 600;
}

.benefit-box p {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.benefit-box:hover h4,
.benefit-box:hover p {
    color: white;
}

/* Tiers Section */
.support-tiers {
    padding: 80px 0;
    background: #f1f2f4;
}

.support-tiers h2 {
    color: #1a2980;
    font-size: 42px;
    margin-bottom: 60px;
    font-weight: 900;
    text-align: center;
}

.tiers-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.tier-card {
    background: white;
    border: 2px solid #3a2570;
    border-radius: 12px;
    padding: 50px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.tier-card.featured {
    border-color: #84bcdd;
    box-shadow: 0 0 40px rgba(132, 188, 221, 0.2);
    transform: scale(1.05);
}

.tier-card:hover {
    border-color: #84bcdd;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(132, 188, 221, 0.2);
}

.tier-card.featured:hover {
    transform: translateY(-10px) scale(1.05);
}

.tier-icon {
    font-size: 60px;
    color: #84bcdd;
    margin-bottom: 20px;
    display: block;
}

.tier-card h3 {
    color: #1a2980;
    font-size: 28px;
    margin: 20px 0 10px;
    font-weight: 900;
}

.tier-price {
    font-size: 14px;
    color: #84bcdd;
    margin-bottom: 20px;
    font-weight: 600;
}

.tier-features {
    list-style: none;
    padding: 0;
    text-align: left;
    margin: 30px 0;
}

.tier-features li {
    color: #555;
    font-size: 14px;
    margin: 12px 0;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.tier-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #84bcdd;
    font-weight: bold;
}

.tier-card:hover .tier-features li,
.tier-card.featured .tier-features li {
    color: #333;
}

/* Critical Benefits Section */
.critical-benefits {
    padding: 80px 0;
    background: white;
}

.critical-benefits h2 {
    color: #1a2980;
    font-size: 42px;
    margin-bottom: 60px;
    font-weight: 900;
    text-align: center;
}

/* Responsive Design */


/* CTA Section */
.support-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a2980 0%, #26d0ce 100%);
    text-align: center;
}

.support-cta h2 {
    color: white;
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 900;
}

.support-cta p {
    color: #bbb;
    font-size: 18px;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.cta-btn {
    display: inline-block;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #84bcdd;
    font-size: 16px;
    margin: 0 10px;
}

.cta-btn.primary {
    background: #84bcdd;
    color: white;
}

.cta-btn.secondary {
    background: transparent;
    color: #84bcdd;
}

.cta-btn.primary:hover {
    background: transparent;
    color: #84bcdd;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(132, 188, 221, 0.3);
}

.cta-btn.secondary:hover {
    background: #84bcdd;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(132, 188, 221, 0.3);
}

@media (max-width: 992px) {
    .support-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tiers-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .tier-card.featured {
        grid-column: span 2;
        transform: scale(1);
    }

    .tier-card.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .support-hero {
        background: url('/static/assets/office-workspace.jpg') no-repeat center 40%;
        background-size: cover;
        min-height: 95vh;
        padding: 180px 0 100px;
        text-align: center;
        position: relative;
    }

    .support-hero h1 {
        font-size: 36px;
    }

    .section-header h2,
    .support-benefits h2,
    .support-tiers h2,
    .critical-benefits h2 {
        font-size: 32px;
    }

    .support-cta h2 {
        font-size: 36px;
    }

    .support-cards-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .tiers-container {
        grid-template-columns: 1fr;
    }

    .tier-card.featured {
        grid-column: span 1;
    }

    .cta-btn {
        display: block;
        margin: 15px auto;
        width: 90%;
        max-width: 300px;
    }
}

/* Hero Text Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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