/* Modern Health Freedom Theme - Matching Sample Site */

/* ===== ROOT VARIABLES ===== */
:root {
    /* Colors - Navy and Red Palette */
    --primary-navy: #0b2545;
    --secondary-navy: #1e3859;
    --accent-red: #dc2626;
    --accent-red-dark: #b91c1c;
    
    /* Typography */
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    /* Spacing */
    --section-padding: 5rem 0;
    --section-padding-mobile: 3rem 0;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-full: 9999px;
}

/* ===== BACKGROUND COLORS ===== */
.uk-background-extra-light-blue {
    background-color: #f0f4f8 !important;
}

.uk-background-dark-blue {
    background-color: var(--primary-navy) !important;
}

.uk-background-dark-blue-1 {
    background-color: #134074 !important;
}

.uk-background-dark-blue-2 {
    background-color: #1e3859 !important;
}

.uk-background-dark-red-1 {
    background-color: #b91c1c !important;
}

.uk-background-dark-red-2 {
    background-color: #991b1b !important;
}

.uk-background-dark-red-3 {
    background-color: #7f1d1d !important;
}

/* ===== MODERN JOURNEY SECTION ===== */
.journey-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e8f0f7 100%);
    padding: 4rem 0;
}

.journey-header {
    text-align: center;
    margin-bottom: 3rem;
}

.journey-header h2 {
    font-family: var(--font-serif);
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.journey-header p {
    font-size: 1.125rem;
    color: rgba(11, 37, 69, 0.7);
    max-width: 700px;
    margin: 0 auto;
}

.journey-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(11, 37, 69, 0.08);
}

.journey-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(11, 37, 69, 0.12), 0 4px 8px rgba(11, 37, 69, 0.08);
}

.journey-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-navy) 0%, #134074 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 40px;
}

.journey-card-icon.accent {
    background: linear-gradient(135deg, var(--accent-red) 0%, #b91c1c 100%);
}

.journey-card-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 1rem;
    text-align: center;
}

.journey-card-content {
    flex-grow: 1;
    color: rgba(11, 37, 69, 0.8);
    line-height: 1.7;
}

.journey-card-content p {
    margin-bottom: 1rem;
}

.journey-card-content strong {
    color: var(--primary-navy);
    font-weight: 600;
}

.journey-card-video {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(11, 37, 69, 0.1);
    text-align: center;
}

.journey-card-video a {
    color: var(--accent-red);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.journey-card-video a:hover {
    color: var(--accent-red-dark);
}

.journey-card-disclaimer {
    font-size: 0.875rem;
    font-style: italic;
    color: rgba(11, 37, 69, 0.6);
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(11, 37, 69, 0.1);
}

.journey-cta-card {
    background: linear-gradient(135deg, var(--primary-navy) 0%, #134074 100%);
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    color: white;
    box-shadow: 0 8px 16px rgba(11, 37, 69, 0.2);
}

.journey-cta-card img {
    margin-bottom: 1.5rem;
}

.journey-cta-card p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: white;
}

.journey-cta-card .uk-button {
    font-size: 1.125rem;
    padding: 1rem 3rem;
}

/* Responsive adjustments */
@media (max-width: 959px) {
    .journey-header h2 {
        font-size: 2rem;
    }

    .journey-card {
        padding: 2rem;
    }

    .journey-card-icon {
        width: 64px;
        height: 64px;
        font-size: 32px;
    }

    .journey-cta-card {
        padding: 2rem;
    }
}

/* ===== SUCCESS STORIES / TESTIMONIALS SECTION ===== */
.success-stories-section {
    background: var(--primary-navy);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.success-stories-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(11, 37, 69, 0.95) 0%, rgba(30, 56, 89, 0.95) 100%);
    z-index: 0;
}

.success-stories-section > * {
    position: relative;
    z-index: 1;
}

.success-story-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.success-story-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.success-story-badge {
    background: var(--accent-red);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.success-story-quote {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-navy);
    line-height: 1.3;
    margin-bottom: 1.5rem;
    position: relative;
}

.success-story-quote::before {
    content: '"';
    font-size: 4rem;
    color: rgba(11, 37, 69, 0.1);
    position: absolute;
    top: -1rem;
    left: -0.5rem;
    font-family: Georgia, serif;
}

.success-story-details {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    flex-grow: 1;
}

.success-story-details li {
    padding: 0.5rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: rgba(11, 37, 69, 0.8);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.success-story-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
    font-size: 1.125rem;
}

.success-story-outcome {
    padding-top: 1.5rem;
    border-top: 2px solid rgba(11, 37, 69, 0.1);
    margin-top: auto;
}

.success-story-outcome p {
    color: rgba(11, 37, 69, 0.8);
    margin-bottom: 1rem;
}

.success-story-savings {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 800;
    color: #10b981;
    margin: 1.5rem 0 0 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border-radius: 12px;
    border: 3px solid #10b981;
    text-align: center;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

.success-stories-cta {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
}

.success-stories-cta p {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.success-stories-cta .uk-button {
    font-size: 1.125rem;
    padding: 1rem 3rem;
    background: var(--accent-red);
    border-color: var(--accent-red);
    box-shadow: 0 4px 16px rgba(220, 38, 38, 0.4);
}

.success-stories-cta .uk-button:hover {
    background: var(--accent-red-dark);
    border-color: var(--accent-red-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.5);
}

/* Responsive adjustments for success stories */
@media (max-width: 959px) {
    .success-stories-section {
        padding: 3rem 0;
    }

    .success-story-card {
        padding: 1.5rem;
    }

    .success-story-quote {
        font-size: 1.25rem;
    }

    .success-story-savings {
        font-size: 1.25rem;
        padding: 1rem;
    }

    .success-stories-cta p {
        font-size: 1.125rem;
    }
}

/* ===== MEMBERSHIP SECTION (INVERTED COLORS) ===== */
.membership-section-wrapper {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    padding: 1rem 0 4rem 0;
}

.membership-section-wrapper::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-red) 0%, var(--primary-navy) 50%, var(--accent-red) 100%);
}

/* ===== FOOTER SECTION ===== */
.modern-footer-wrapper {
    background: linear-gradient(135deg, #f8fafc 0%, #e8f0f7 100%);
    position: relative;
    overflow: hidden;
}

.modern-footer-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-red) 0%, var(--primary-navy) 50%, var(--accent-red) 100%);
}

.pageFooter {
    background: transparent !important;
    padding: 3rem 0 2rem 0;
}

.footer-column h4 {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.footer-column p {
    margin: 0.5rem 0;
    color: var(--primary-navy);
}

.footer-column a {
    color: rgba(11, 37, 69, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-column a:hover {
    color: var(--primary-navy);
    transform: translateX(4px);
}

.footer-mission {
    color: rgba(11, 37, 69, 0.9);
    line-height: 1.6;
    font-size: 0.9375rem;
}

.footer-mission strong {
    color: var(--accent-red);
    font-weight: 600;
}

.footer-logo-section {
    text-align: center;
}

.footer-logo-section img {
    margin-bottom: 0.5rem;
}

.footer-copyright {
    color: rgba(11, 37, 69, 0.7);
    font-size: 0.875rem;
    margin-top: 1rem;
    text-align: center;
}

/* ===== DISCLAIMER SECTION ===== */
.pageFooterDisclaimer {
    background: #f8fafc;
    border-top: 1px solid rgba(11, 37, 69, 0.1);
    padding: 1.5rem 0;
}

.pageFooterDisclaimer p {
    color: rgba(11, 37, 69, 0.7);
    font-size: 0.8125rem;
    line-height: 1.6;
    max-width: 1200px;
    margin: 0 auto;
}

/* ===== MEDICATION FINDER SECTION ===== */
.medication-finder-section {
    background: linear-gradient(135deg, var(--primary-navy) 0%, #1e3859 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.medication-finder-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-red) 0%, #ffffff 50%, var(--accent-red) 100%);
}

.medication-finder-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 800px;
    margin: 0 auto;
}

.medication-finder-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-navy);
    text-align: center;
    margin-bottom: 1.5rem;
}

.medication-finder-description {
    color: rgba(11, 37, 69, 0.8);
    font-size: 1.125rem;
    text-align: center;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.medication-finder-description strong {
    color: var(--accent-red);
    font-weight: 700;
}

.medication-finder-input-wrapper {
    margin-top: 2rem;
    position: relative;
}

.medication-finder-input {
    width: 100%;
    padding: 1.25rem 1.5rem;
    font-size: 1.125rem;
    border: 2px solid rgba(11, 37, 69, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.medication-finder-input:focus {
    outline: none;
    border-color: var(--primary-navy);
    background: white;
    box-shadow: 0 4px 12px rgba(11, 37, 69, 0.15);
}

.medication-finder-input::placeholder {
    color: rgba(11, 37, 69, 0.5);
}

/* Responsive adjustments for footer */
@media (max-width: 959px) {
    .pageFooter {
        padding: 2rem 0 1.5rem 0;
    }

    .footer-column h4 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    .footer-logo-section {
        text-align: center;
        margin-top: 2rem;
    }

    .footer-mission {
        font-size: 0.875rem;
    }

    .pageFooterDisclaimer {
        padding: 1rem 0;
    }

    .pageFooterDisclaimer p {
        font-size: 0.75rem;
        text-align: left !important;
    }
}

/* ===== TYPOGRAPHY ===== */
body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--primary-navy);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6,
.uk-h1, .uk-h2, .uk-h3, .uk-h4, .uk-h5, .uk-h6,
.uk-heading-small, .uk-heading-medium, .uk-heading-large,
.uk-heading-xlarge, .uk-heading-2xlarge {
    font-family: var(--font-serif);
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-navy);
}

h1, .uk-h1 {
    font-size: 3.5rem;
    line-height: 1.1;
}

h2, .uk-h2 {
    font-size: 2.5rem;
}

h3, .uk-h3 {
    font-size: 1.875rem;
}

/* ===== MODERN NAVBAR ===== */
.uk-navbar-container {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid transparent;
}

.uk-navbar-sticky {
    background-color: rgba(11, 37, 69, 0.95) !important;
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-lg);
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.uk-navbar-transparent {
    background-color: transparent !important;
}

/* Override UIKit default navbar height to match sample site */
.uk-navbar-item,
.uk-navbar-nav > li > a,
.uk-navbar-toggle {
    min-height: 50px !important;
}

.uk-navbar-nav > li > a {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.2s ease;
    position: relative;
}

/* First page/slide - Primary Navy links (but NOT buttons) */
.uk-dark .uk-navbar-nav > li > a:not(.uk-button),
.uk-navbar-transparent .uk-navbar-nav > li > a:not(.uk-button) {
    color: var(--primary-navy) !important;
}

.uk-dark .uk-navbar-nav > li > a:not(.uk-button):visited,
.uk-navbar-transparent .uk-navbar-nav > li > a:not(.uk-button):visited {
    color: var(--primary-navy) !important;
}

/* Second page/slide (sticky) - White links (but NOT buttons) */
.uk-navbar-sticky .uk-navbar-nav > li > a:not(.uk-button),
.uk-light .uk-navbar-nav > li > a:not(.uk-button) {
    color: rgba(255, 255, 255, 0.9) !important;
}

.uk-navbar-sticky .uk-navbar-nav > li > a:not(.uk-button):visited,
.uk-light .uk-navbar-nav > li > a:not(.uk-button):visited {
    color: rgba(255, 255, 255, 0.9) !important;
}

.uk-navbar-nav > li > a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--accent-red);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.uk-navbar-nav > li > a:hover {
    color: var(--accent-red) !important;
}

.uk-navbar-nav > li > a:hover::after {
    width: 80%;
}

.uk-logo {
    transition: all 0.3s ease;
}

.uk-logo:hover {
    transform: scale(1.05);
}

/* ===== SERVICE CARDS ===== */
.service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1.5rem !important;
    transition: all 0.3s ease;
    height: 100%;
    min-height: 320px;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.service-card-icon {
    margin-bottom: 1.25rem;
    color: var(--primary-navy);
    opacity: 0.7;
}

.service-card-title {
    font-family: var(--font-sans);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 1rem;
    line-height: 1.4;
    min-height: 2.8rem;
}

.service-card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 auto 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
}

.service-card-features li {
    font-size: 0.9375rem;
    color: rgba(11, 37, 69, 0.75);
    line-height: 1.5;
    position: relative;
    padding-left: 1.25rem;
    text-align: left;
}

.service-card-features li::before {
    content: '•';
    color: var(--accent-red);
    font-size: 2rem;
    position: absolute;
    left: 0;
    top: -0.85rem;
}

.service-card-link {
    margin-top: 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-red);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
}

.service-card:hover .service-card-link {
    gap: 0.75rem;
}

.service-card-link i {
    transition: transform 0.2s ease;
}

.service-card:hover .service-card-link i {
    transform: translateX(4px);
}

/* ===== MEMBERSHIP TABS & CARDS ===== */
.membership-tabs {
    display: inline-flex;
    gap: 0.5rem;
    background: transparent;
    border: none;
    padding: 0;
    margin: 0 auto;
}

.membership-tabs > li {
    margin: 0;
}

.membership-tabs > li > a {
    padding: 0.75rem 2rem;
    background: #f5f5f5;
    color: rgba(11, 37, 69, 0.7);
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.membership-tabs > li.uk-active > a {
    background: var(--primary-navy);
    color: white;
    border-color: var(--primary-navy);
}

.membership-tabs > li > a:hover {
    background: var(--primary-navy);
    color: white;
    border-color: var(--primary-navy);
}

/* Membership Card Styling */
.membership-card {
    position: relative;
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.membership-card.popular {
    border-color: var(--accent-red);
    box-shadow: 0 8px 24px rgba(220, 38, 38, 0.15);
}

.membership-card-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-red);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.membership-card-header {
    padding: 1.25rem 1.5rem 0.75rem;
    text-align: center;
    border-bottom: 1px solid #e5e5e5;
}

.membership-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
}

.membership-card-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 0.25rem;
    display: inline;
}

.membership-card-price-period {
    font-size: 1rem;
    color: rgba(11, 37, 69, 0.6);
    font-weight: 400;
    display: inline;
    margin-left: 0.25rem;
}

.membership-card-body {
    padding: 1.25rem 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.membership-card-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.membership-card-features li {
    padding: 0.75rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: rgba(11, 37, 69, 0.8);
    font-size: 0.9375rem;
    line-height: 1.5;
}

.membership-card-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-red);
    font-weight: 700;
    font-size: 1.25rem;
}

.membership-card-footer {
    padding: 1rem 1.5rem 1.25rem;
    text-align: center;
}

.membership-card-button {
    width: 100%;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.membership-card-button.primary {
    background: var(--accent-red);
    color: white;
    border: 2px solid var(--accent-red);
}

.membership-card-button.primary:hover {
    background: var(--accent-red-dark);
    border-color: var(--accent-red-dark);
}

.membership-card-button.secondary {
    background: white;
    color: var(--primary-navy);
    border: 2px solid var(--primary-navy);
}

.membership-card-button.secondary:hover {
    background: var(--primary-navy);
    color: white;
}

.membership-disclaimer {
    text-align: center;
    margin-top: 0;
    padding: 1rem;
    color: rgba(11, 37, 69, 0.6);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* ===== MODERN BUTTONS ===== */
.uk-button {
    border-radius: var(--radius-full);
    font-family: var(--font-sans);
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0.025em;
    transition: all 0.2s ease;
    box-shadow: var(--shadow-md);
}

.uk-button:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.uk-button-primary {
    background-color: var(--accent-red) !important;
    border-color: var(--accent-red-dark) !important;
    color: white !important;
}

.uk-button-primary:hover {
    background-color: var(--accent-red-dark) !important;
    color: white !important;
}

.uk-button-primary:visited {
    color: white !important;
}

/* Ensure button stays red in navbar on all pages/slides */
.uk-navbar-nav > li > a.uk-button-primary {
    background-color: var(--accent-red) !important;
    border-color: var(--accent-red-dark) !important;
    color: white !important;
}

.uk-navbar-sticky .uk-navbar-nav > li > a.uk-button-primary,
.uk-light .uk-navbar-nav > li > a.uk-button-primary {
    background-color: var(--accent-red) !important;
    border-color: var(--accent-red-dark) !important;
    color: white !important;
}

/* ===== HERO SECTION ===== */
.hero-overlay {
    background: radial-gradient(circle, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0.95) 100%);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    background-color: rgba(11, 37, 69, 0.1);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(11, 37, 69, 0.15);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: rgba(11, 37, 69, 0.8);
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 0.95;
    color: var(--primary-navy);
}

.hero-title .accent {
    color: var(--accent-red);
    font-style: italic;
}

/* ===== CARDS ===== */
.uk-card {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background-color: white;
}

.uk-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}

.uk-card-default {
    background-color: white;
}

.uk-card-header {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-navy) 100%);
    color: white;
    padding: 1.5rem;
    border-bottom: none;
}

.uk-card-body {
    padding: 2rem;
}

.uk-card-footer {
    padding: 1.5rem 2rem;
    background-color: rgba(0, 0, 0, 0.02);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

/* ===== SECTION LABELS ===== */
.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-red);
    margin-bottom: 1rem;
}

/* ===== PATRIOTIC DIVIDER ===== */
.patriotic-divider {
    padding: 1rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    max-width: 28rem;
    margin: 0 auto;
}

.patriotic-divider .lines {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
}

.patriotic-divider .lines.left {
    animation: slideInLeft 0.6s ease-out forwards;
}

.patriotic-divider .lines.right {
    animation: slideInRight 0.6s ease-out forwards;
}

.patriotic-divider .line {
    height: 3px;
    border-radius: var(--radius-full);
    background-color: var(--accent-red);
}

.patriotic-divider .star {
    width: 28px;
    height: 28px;
    fill: #0b2545 !important;
    flex-shrink: 0;
    position: static !important;
    display: inline-block;
    vertical-align: middle;
}

.patriotic-divider .star path {
    fill: #0b2545 !important;
}

@keyframes slideInLeft {
    from {
        transform: translateX(-30px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(30px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* ===== MODERN BLUR EFFECTS ===== */
.uk-blur-modern {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
}

.uk-blur-navy {
    background-color: rgba(11, 37, 69, 0.95);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
}

/* ===== GRADIENT BACKGROUNDS ===== */
.gradient-navy {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-navy) 50%, var(--primary-navy) 100%);
}

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 600;
    color: rgba(11, 37, 69, 0.5);
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* ===== TESTIMONIAL STARS ===== */
.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial-stars .star {
    width: 1rem;
    height: 1rem;
    fill: #fbbf24;
    color: #fbbf24;
}

/* ===== PRICING CARDS ===== */
.pricing-card {
    position: relative;
}

.pricing-card.popular {
    border: 2px solid var(--accent-red);
    box-shadow: 0 0 0 1px var(--accent-red);
}

.pricing-badge {
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent-red);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 10;
}

.pricing-price {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-navy);
    line-height: 1;
}

.pricing-period {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 400;
}

/* ===== FEATURE LIST ===== */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    line-height: 1.5;
}

.feature-list .check-icon {
    flex-shrink: 0;
    width: 1rem;
    height: 1rem;
    color: #10b981;
    margin-top: 0.125rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .patriotic-divider {
        padding: 1rem 0;
        max-width: 20rem;
    }

    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-section: 3rem;
    }

    h1, .uk-h1 {
        font-size: 2rem;
    }

    h2, .uk-h2 {
        font-size: 1.75rem;
    }

    h3, .uk-h3 {
        font-size: 1.5rem;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }

    .uk-card-body {
        padding: 1.5rem;
    }

    .uk-card-header {
        padding: 1rem;
    }

    .uk-card-footer {
        padding: 1rem 1.5rem;
    }

    .uk-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }

    .section-label {
        font-size: 0.65rem;
    }

    .pricing-price {
        font-size: 2rem;
    }

    .patriotic-divider {
        padding: 0.75rem 0;
        gap: 1rem;
    }

    .uk-navbar-nav > li > a {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }

    h2, .uk-h2 {
        font-size: 1.5rem;
    }

    .uk-button-large {
        padding: 0.875rem 1.75rem;
        font-size: 0.9rem;
    }

    .pricing-price {
        font-size: 1.75rem;
    }
}

