/* ======= ROOT VARIABLES ======= */
:root {
    --primary-blue: #003366; /* like United */
    --accent-red: #E60023; /* like Delta */
    --cta-yellow: #FFD100; /* like Southwest */
    --text-dark: #222;
    --text-light: #fff;
    --background-light: #f9f9f9;
}

/* ======= GLOBAL STYLES ======= */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: var(--text-dark);
    background-color: var(--background-light);
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ======= HEADER ======= */
.site-header {
    background: var(--text-light);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-style: italic;
    font-weight: bold;
    color: var(--primary-blue);
}

.header-phone a {
    font-weight: bold;
    color: var(--accent-red);
    font-size: 18px;
}

/* ======= TOP HIGHLIGHT ======= */
.top-highlight {
    background-color: var(--cta-yellow);
    color: var(--primary-blue);
    text-align: center;
    padding: 25px 15px;
    font-weight: bold;
    font-size: 18px;
    line-height: 1.8;
    box-shadow: 0 2px 10px rgba(0,0,0,0.12);
    border-radius: 6px;
    margin-bottom: 30px;
}

.top-highlight p {
    margin: 10px 0;
    font-size: 20px;
}

.top-highlight .highlight-icon {
    font-size: 24px;
    margin-right: 8px;
    color: var(--accent-red);
}

@media (max-width: 768px) {
    .top-highlight p {
        font-size: 16px;
    }
    .top-highlight .highlight-icon {
        font-size: 20px;
    }
}

/* ======= CTA SECTION ======= */
.cta {
    text-align: center;
    padding: 40px 20px;
    background: #fff;
    margin-bottom: 30px;
}

.cta h2 {
    font-size: 28px;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.cta p, .cta ul {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.cta-list {
    list-style-type: none;
    padding: 0;
}

.cta-list li {
    margin: 8px 0;
}

/* ======= FOOTER ======= */
.site-footer {
    background: var(--primary-blue);
    color: var(--text-light);
    padding: 25px 15px;
}

.footer-links ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
}

.footer-links ul li a {
    color: var(--text-light);
    font-weight: bold;
}

.footer-contact {
    text-align: center;
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    font-weight: bold;
    margin-top: 10px;
}

/* ======= STICKY BAR ======= */
.sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--accent-red);
    text-align: center;
    padding: 12px 0;
    z-index: 999;
}

.sticky-bar a {
    color: var(--text-light);
    font-size: 18px;
    font-weight: bold;
}
