﻿:root {
    /* Brand Colors */
    --color-primary: #1a5490; /* steel blue */
    --color-primary-light: #2c75bb; /* sky blue */
    --color-secondary: #9A0A29; /* dark crimson */
    --color-secondary-light: #c82333; /* bright red */
    /* Borders */
    --border-footer: rgba(255, 255, 255, 0.2); /* white (20% opacity) */
    /* Neutral Colors */
    --color-surface: #ffffff; /* white */
    --color-light: #f8f9fa; /* light gray */
    --color-gray: #495057; /* dark gray */
    --color-border: #e9ecef; /* pale gray */
    --color-footer: #1F3161; /* navy blue */
    /* Overlays */
    --overlay-hero: rgba(31, 49, 97, 0.3); /* navy blue (30% opacity) */
    /* Gradients */
    --gradient-primary: linear-gradient( 135deg, #1a5490 0%, /* steel blue */
    #2c75bb 100% /* sky blue */
    );
    --gradient-secondary: linear-gradient( 135deg, #9A0A29 0%, /* dark crimson */
    #c82333 100% /* bright red */
    );
    /* Shadows */
    --shadow-text: 2px 2px 4px rgba(0, 0, 0, 0.3); /* black (30% opacity) */
    --shadow-sm: 0 4px 12px rgba(26, 84, 144, 0.3); /* steel blue (30% opacity) */
    --shadow-md: 0 4px 15px rgba(0, 0, 0, 0.1); /* black (10% opacity) */
    --shadow-lg: 0 6px 20px rgba(0, 0, 0, 0.3); /* black (30% opacity) */
    --shadow-md-strong: 0 4px 15px rgba(0, 0, 0, 0.2); /* black (20% opacity) */
}

.hero-section {
    position: relative;
    background-image: url('/images/HeaderBG.jpg');
    background-size: cover;
    background-position: center;
    padding: 80px 20px;
    text-align: center;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

    .hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--overlay-hero);
        z-index: 1;
    }

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-logo {
    max-width: 600px;
    margin: 0 auto 20px;
}

    .hero-logo img {
        width: 100% !important;
        height: auto !important;
    }

.hero-title {
    color: var(--color-surface);
    font-family: 'Roboto Slab', serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px var(--shadow-text);
}

.top-cta-section {
    background-color: var(--color-light);
    padding: 30px 20px;
    text-align: center;
}

    .top-cta-section p {
        font-size: 1.1rem;
        color: var(--color-gray);
        margin-bottom: 15px;
    }

.btn-secondary {
    display: inline-block;
    padding: 12px 35px;
    background-color: var(--color-primary);
    color: var(--color-surface);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

    .btn-secondary:hover {
        background-color: var(--color-primary-light);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px var(--shadow-sm);
    }

.comparison-section {
    padding: 60px 20px;
    background-color: var(--color-surface);
}

.intro-text {
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--color-gray);
}

.section-title {
    font-family: 'Roboto Slab', serif;
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    color: var(--color-primary);
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.comparison-table {
    background: var(--color-surface);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    max-width: 1000px;
    margin: 0 auto;
}

table {
    width: 100%;
    border-collapse: collapse;
}

thead {
    background: var(--gradient-primary);
    color: var(--color-surface);
}

    thead th {
        padding: 25px 20px;
        font-size: 1.4rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        vertical-align: middle;
        text-align: center;
    }

        thead th:first-child {
            text-align: left;
            font-size: 1.1rem;
        }

.pro-badge {
    max-width: 120px;
    height: auto;
    display: inline-block;
    vertical-align: middle;
}

tbody tr {
    border-bottom: 1px solid var(--color-border);
    transition: background-color 0.3s ease;
}

    tbody tr:hover {
        background-color: var(--color-light);
    }

    tbody tr:last-child {
        border-bottom: none;
    }

tbody td {
    padding: 18px 20px;
    text-align: center;
    font-size: 1rem;
    vertical-align: middle;
}

    tbody td:first-child {
        text-align: left;
        font-weight: 500;
        color: #495057;
    }

.icon-check, .icon-x {
    width: 32px;
    height: 32px;
    display: inline-block;
}

.cta-section {
    background: var(--gradient-secondary);
    padding: 60px 20px;
    text-align: center;
    color: var(--color-surface);
}

    .cta-section h2 {
        font-family: 'Roboto Slab', serif;
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 20px;
        text-transform: uppercase;
        color: var(--color-surface);
    }

    .cta-section p {
        font-size: 1.2rem;
        margin-bottom: 30px;
    }

.btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--color-surface);
    color: var(--color-secondary);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md-strong);
    line-height: inherit;
}

    .btn:hover {
        background-color: var(--color-light);
        transform: translateY(-2px);
        color: var(--color-secondary);
        box-shadow: var(--shadow-lg);
    }

.btn-secondary:hover {
    text-decoration: none !important;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 20px;
        min-height: 300px;
    }

    .hero-logo {
        max-width: 350px;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .intro-text {
        font-size: 1rem;
    }

    .pro-badge {
        max-width: 80px;
    }

    thead th {
        padding: 15px 10px;
        font-size: 1rem;
    }

    tbody td {
        padding: 12px 10px;
        font-size: 0.9rem;
    }

    .icon-check, .icon-x {
        width: 24px;
        height: 24px;
    }

    .comparison-table {
        overflow-x: auto;
    }

    table {
        min-width: 600px;
    }
}
