/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* --- TOP ANNOUNCEMENT BAR --- */
.announcement-bar {
    background-color: #cc0000; /* Fusco Red */
    color: #fff;
    text-align: center;
    padding: 10px 0;
    font-size: 0.95rem;
    position: relative;
    z-index: 1001;
}

.announcement-bar p {
    margin: 0;
    padding: 0 15px;
}

.announcement-bar a {
    color: #fff;
    font-weight: bold;
    text-decoration: underline;
    margin-left: 10px;
}

.announcement-bar a:hover {
    color: #f0f0f0;
}

/* --- HEADER --- */
header {
    background: #003366; /* Navy Blue */
    color: #fff;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    flex-grow: 1;
}

.logo-container a {
    background-color: rgba(255, 255, 255, 0.95); 
    padding: 8px 20px; 
    border-radius: 6px; 
    display: inline-flex;
    align-items: center;
    transition: background-color 0.3s;
}

.logo-container a:hover {
    background-color: #ffffff;
}

.logo {
    height: 80px;
    width: auto;
    display: block;
}

header nav ul {
    list-style: none;
    display: flex;
    align-items: center;
}

header nav ul li {
    margin-left: 30px;
}

header a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

header nav a:hover {
    color: #cc0000;
}

.btn-nav {
    background: #cc0000;
    color: #fff !important;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
}

.btn-nav:hover {
    background: #fff;
    color: #cc0000 !important;
}

/* --- HERO SECTION --- */
.hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/hero-bg.jpg'); 
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: 800;
}

.btn-primary {
    display: inline-block;
    background: #cc0000;
    color: #fff;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #990000;
}

/* --- SECTIONS --- */
section {
    padding: 70px 0;
    scroll-margin-top: 70px; 
}

.section-light { background: #fff; text-align: center; }
.section-dark { background: #f4f4f4; text-align: center; }

/* --- NEW UPGRADE SECTION STYLES --- */
.section-header {
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.lead-text {
    font-size: 1.2rem;
    color: #555;
    margin-top: 15px;
}

.upgrade-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.upgrade-card {
    background: #fff;
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 8px;
    flex-basis: 300px;
    flex-grow: 1;
    max-width: 350px;
    text-align: left;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.upgrade-card:hover {
    transform: translateY(-5px);
    border-bottom: 3px solid #cc0000;
}

.upgrade-card i {
    color: #003366;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.upgrade-card h3 {
    color: #cc0000;
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.highlight-text {
    font-weight: bold;
    font-style: italic;
    color: #003366;
    margin-bottom: 10px;
    display: block;
}

.coming-soon {
    background: #fdfdfd;
    border: 2px dashed #ccc;
}

/* --- STANDARD FEATURES & PRICING --- */
.features-grid, .pricing-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.feature-box, .card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    flex-basis: 300px;
    flex-grow: 1;
    max-width: 350px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.feature-box i {
    color: #cc0000;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.feature-box h3, .card h3 {
    color: #003366;
    margin-bottom: 15px;
}

/* Membership Card Styling */
.card.highlight {
    border: 3px solid #003366;
    transform: scale(1.05);
    position: relative; 
}

/* Pricing Typography */
.price {
    font-size: 2.5rem;
    color: #cc0000;
    font-weight: bold;
    margin: 10px 0;
}

.price span {
    font-size: 1rem;
    color: #777;
    font-weight: normal;
}

.sub-head {
    font-weight: bold;
    color: #555;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.feature-list li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    font-size: 0.95rem;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list i {
    color: #cc0000;
    margin-right: 8px;
    font-size: 1rem;
    margin-bottom: 0;
}

.savings {
    font-size: 0.85rem;
    color: #28a745;
    font-weight: bold;
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #cc0000;
    color: #fff;
    padding: 5px 15px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.btn-secondary {
    display: inline-block;
    background: #003366;
    color: #fff;
    padding: 10px 25px;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 15px;
    font-weight: bold;
    text-transform: uppercase;
}

.btn-secondary:hover {
    background: #002244;
}

/* --- CONTACT FORM --- */
.contact-form {
    max-width: 600px;
    margin: 30px auto;
    text-align: left;
    background: #f8f9fa; /* Restored to gray for contrast against white card */
    padding: 40px;
    border-radius: 8px;
    border-top: 4px solid #cc0000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.form-group { margin-bottom: 20px; }

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #003366;
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

.form-group input:focus, 
.form-group textarea:focus {
    border-color: #003366;
    outline: none;
}

/* --- FOOTER LAYOUT --- */
footer {
    background: #222;
    color: #fff;
    padding: 60px 0 20px 0; 
}

.footer-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    text-align: left;
    margin-bottom: 40px;
}

.footer-column {
    flex-basis: 40%;
    margin-bottom: 20px;
}

footer h3 {
    color: #fff;
    margin-bottom: 15px;
    border-bottom: 2px solid #cc0000;
    display: inline-block;
    padding-bottom: 5px;
}

footer a:hover {
    color: #cc0000 !important;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #444;
    padding-top: 20px;
    font-size: 0.9rem;
    color: #aaa;
}

/* --- SOCIAL MEDIA ICONS --- */
.social-icons {
    margin-top: 15px;
}

.social-icons a {
    color: #fff;
    font-size: 1.8rem;
    margin-right: 20px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: #cc0000 !important;
    transform: translateY(-3px);
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        text-align: center;
    }

    header nav ul {
        flex-direction: column;
        padding-top: 10px;
    }

    header nav ul li {
        margin: 10px 0;
    }

    .logo {
        height: 60px;
    }
    
    .logo-container {
        justify-content: center;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
        display: flex;
    }
    
    .social-icons a {
        margin: 0 10px;
    }
}