/* ===================================
   LocalEdgeIT Services & Consulting
   Modern, Professional IT Services Website
   Last Updated: November 27, 2025
   =================================== */

/* ===================================
   Accessibility - Skip Link
   =================================== */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-blue, #4A8FD9);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 0 0 8px 8px;
    text-decoration: none;
    font-weight: 600;
    z-index: 10000;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 0;
    outline: 3px solid var(--dark-navy, #2B3E52);
    outline-offset: 2px;
}

/* Enhanced Focus States for Accessibility */
*:focus-visible {
    outline: 3px solid var(--primary-blue, #4A8FD9);
    outline-offset: 2px;
}

/* Remove default focus for mouse users, keep for keyboard */
*:focus:not(:focus-visible) {
    outline: none;
}

/* ===================================
   CSS Variables
   =================================== */

/* CSS Variables - Optimized Blue-Gray Eye-Friendly Color Scheme */
:root {
    /* Primary Colors - Refined and balanced */
    --primary-blue: #4A8FD9;
    --primary-green: #5FAD56;
    --dark-navy: #2B3E52;  /* Rich blue-gray navy */
    --off-black: #2B3E52;

    /* Background Colors - Cool blue-gray tones */
    --bg-primary: #F4F7FA;  /* More pronounced blue-gray background */
    --bg-secondary: #FBFCFD;  /* Subtle blue-white for cards */
    --bg-accent: #EBF3F9;  /* Soft blue accent */

    /* Secondary Colors - Cool-toned and harmonious */
    --light-blue: #E5F2FA;
    --light-green: #EEF7EC;
    --gray-50: #F8FAFB;
    --gray-100: #F2F5F8;
    --gray-200: #E3E9F0;
    --gray-300: #CDD6E0;
    --gray-500: #8594A6;  /* Cool medium gray */
    --gray-700: #475569;  /* Blue-tinted dark gray */
    --gray-800: #2C3947;
    --gray-900: #2B3E52;

    /* Accent Colors - Harmonized with blue-gray theme */
    --accent-orange: #EF9234;
    --success-green: #2EAA5F;
    --error-red: #E84C3D;

    /* Typography - Optimized colors */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --text-primary: #2B3E52;  /* Rich blue-gray for primary text */
    --text-secondary: #556B7F;  /* Blue-tinted secondary text */
    --text-muted: #7788A0;  /* Cool-toned muted text */

    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 5rem 2rem;

    /* Transitions - Slightly snappier */
    --transition-base: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);

    /* Shadows - Softer with subtle blue tint */
    --shadow-sm: 0 1px 3px 0 rgba(59, 88, 116, 0.05);
    --shadow-md: 0 4px 8px -2px rgba(59, 88, 116, 0.08);
    --shadow-lg: 0 10px 20px -5px rgba(59, 88, 116, 0.10);
    --shadow-xl: 0 20px 30px -8px rgba(59, 88, 116, 0.12);
}

/* ===================================
   Global Styles & Reset
   =================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--text-primary);
    line-height: 1.7;
    background-color: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-feature-settings: "kern" 1, "liga" 1;
    letter-spacing: -0.011em;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    border: none;
    cursor: pointer;
    transition: var(--transition-base);
}

/* ===================================
   Typography
   =================================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.25;
    color: var(--dark-navy);
    letter-spacing: -0.022em;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    font-size: 1.0625rem;
    line-height: 1.75;
    font-weight: 400;
    letter-spacing: -0.008em;
}

/* ===================================
   Utility Classes
   =================================== */

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

/* ===================================
   Buttons
   =================================== */

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border-radius: 8px;
    transition: var(--transition-base);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue), #3578C7);
    color: white;
    box-shadow: var(--shadow-md);
    font-weight: 600;
    letter-spacing: -0.01em;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, #3578C7, #2968B8);
}

.btn-secondary {
    background: var(--bg-secondary);
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    font-weight: 600;
    letter-spacing: -0.01em;
}

.btn-secondary:hover {
    background: var(--primary-blue);
    color: white;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* ===================================
   Header & Navigation
   =================================== */

.site-header {
    background: var(--bg-secondary);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--gray-200);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex: 1;
    justify-content: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-weight: 500;
    color: var(--gray-700);
    padding: 0.5rem 0;
    display: block;
}

.nav-link:hover {
    color: var(--primary-blue);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-secondary);
    min-width: 250px;
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    padding: 1rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition-base);
    margin-top: 0.5rem;
    border: 1px solid var(--gray-200);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--gray-700);
    transition: var(--transition-base);
}

.dropdown-menu a:hover {
    background: var(--light-blue);
    color: var(--primary-blue);
}

/* Location Dropdown Styling */
.location-dropdown .dropdown-menu {
    min-width: 200px;
}

.location-dropdown .dropdown-menu a {
    font-weight: 500;
}

.cta-phone {
    white-space: nowrap;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark-navy);
    border-radius: 3px;
    transition: var(--transition-base);
}

/* ===================================
   Hero Section
   =================================== */

.hero {
    background: linear-gradient(135deg, var(--bg-accent) 0%, var(--bg-secondary) 100%);
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, var(--light-green) 100%);
    opacity: 0.3;
    z-index: 0;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 600px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--dark-navy);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-700);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-blue);
    font-weight: 500;
}

.feature-badge svg {
    flex-shrink: 0;
}

.hero-image-placeholder {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
    border-radius: 16px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    box-shadow: var(--shadow-xl);
}

/* ===================================
   Services Overview Section
   =================================== */

.services-overview {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--bg-secondary);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 2rem;
    transition: var(--transition-base);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-blue);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--light-blue), var(--light-green));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary-blue);
}

.service-card h3 {
    color: var(--dark-navy);
    margin-bottom: 1rem;
}

.service-card > p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-features {
    margin-bottom: 1.5rem;
    padding-left: 0;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
}

.service-link {
    color: var(--primary-blue);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
}

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

/* ===================================
   Industry Solutions Section
   =================================== */

.industries-section {
    padding: var(--section-padding);
    background: var(--bg-primary);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.industry-card {
    background: var(--bg-secondary);
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    border: 1px solid var(--gray-200);
}

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

.industry-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--light-blue), var(--light-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
}

.industry-card h3 {
    margin-bottom: 1rem;
}

.industry-card p {
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

/* ===================================
   Why Choose Us Section
   =================================== */

.why-choose-us {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.why-item {
    position: relative;
    padding-left: 4rem;
}

.why-number {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 3rem;
    font-weight: 800;
    color: var(--light-blue);
    line-height: 1;
}

.why-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--dark-navy);
}

.why-item p {
    color: var(--gray-700);
}

/* ===================================
   Testimonials Section
   =================================== */

.testimonials-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--light-blue), var(--light-green));
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--bg-secondary);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--gray-200);
}

.testimonial-rating {
    color: var(--accent-orange);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-secondary);
    flex-grow: 1;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    border-top: 2px solid var(--gray-200);
    padding-top: 1rem;
}

.testimonial-author strong {
    color: var(--dark-navy);
    font-size: 1.05rem;
}

.testimonial-author span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ===================================
   Service Area Section
   =================================== */

.service-area {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

.service-area-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.map-placeholder {
    background: var(--bg-accent);
    border-radius: 12px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 1.125rem;
    border: 2px dashed var(--gray-300);
}

.service-area-locations h3 {
    margin-bottom: 1.5rem;
}

.locations-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.locations-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
}

.locations-list li::before {
    content: '📍';
    position: absolute;
    left: 0;
}

/* ===================================
   CTA Section
   =================================== */

.cta-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
    color: white;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background: var(--bg-secondary);
    color: var(--primary-blue);
}

.cta-section .btn-primary:hover {
    background: white;
}

.cta-section .btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.cta-section .btn-secondary:hover {
    background: white;
    color: var(--primary-blue);
}

/* ===================================
   Contact Section
   =================================== */

.contact-section {
    padding: var(--section-padding);
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info h3 {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.contact-item svg {
    flex-shrink: 0;
    color: var(--primary-blue);
}

.contact-item strong {
    display: block;
    color: var(--dark-navy);
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
}

.contact-item p {
    margin: 0;
    color: var(--gray-700);
}

.contact-item a {
    color: var(--primary-blue);
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Contact Form */
.contact-form {
    display: grid;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: var(--dark-navy);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 2px solid var(--gray-300);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-base);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px var(--light-blue);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ===================================
   Footer
   =================================== */

.site-footer {
    background: var(--dark-navy);
    color: white;
    padding: 4rem 2rem 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: white;
    padding-left: 0.5rem;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}


/* ===================================
   Responsive Design
   =================================== */

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-image-placeholder {
        height: 300px;
    }

    .service-area-content {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

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

    .nav-menu {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        bottom: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        gap: 0;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        z-index: 999;
    }

    .nav-menu.active {
        display: flex;
    }

    /* Prevent body scroll when mobile menu is open */
    body.mobile-menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }

    .nav-item {
        width: 100%;
        text-align: center;
        padding: 1rem 0;
        border-bottom: 1px solid var(--gray-200);
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        margin-top: 1rem;
        background: var(--gray-50);
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .cta-phone {
        display: none;
    }

    .hero {
        padding: 4rem 1.5rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .industries-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .locations-list {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-large {
        width: 100%;
    }
}

/* ===================================
   About Page & Additional Styles
   =================================== */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-navy) 100%);
    color: white;
    padding: 4rem 2rem 3rem;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-header .lead {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary-blue);
}

.timeline-item {
    position: relative;
    margin-bottom: 2.5rem;
}

.timeline-marker {
    position: absolute;
    left: -2.65rem;
    top: 0;
    width: 2.5rem;
    height: 2.5rem;
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    border: 4px solid white;
    box-shadow: 0 0 0 4px rgba(30, 136, 229, 0.1);
}

.timeline-content h3 {
    color: var(--dark-navy);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.timeline-content p {
    color: var(--gray-700);
    line-height: 1.6;
}

/* Industry Grid */
.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.industry-card {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    border: 1px solid var(--gray-200);
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.industry-card h3 {
    color: var(--dark-navy);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.industry-card p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* Privacy Policy & Legal Pages */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.legal-content h1 {
    font-size: 2.5rem;
    color: var(--dark-navy);
    margin-bottom: 0.5rem;
}

.legal-content h2 {
    font-size: 1.75rem;
    color: var(--dark-navy);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--gray-200);
}

.legal-content h2:first-of-type {
    border-top: none;
    margin-top: 2rem;
}

.legal-content h3 {
    font-size: 1.35rem;
    color: var(--primary-blue);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.legal-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-content ul li {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.legal-content strong {
    color: var(--dark-navy);
}

.legal-updated {
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 2rem;
}

/* Stat Group */
.stat-group {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

/* Content Grid Two Column */
.content-grid-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.highlight-box {
    background: var(--bg-accent);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-blue);
}

.highlight-box h3 {
    color: var(--dark-navy);
    margin-bottom: 1rem;
}

.highlight-box p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .content-grid-two-col {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stat-group {
        flex-direction: column;
        gap: 1.5rem;
    }

    .timeline {
        padding-left: 1.5rem;
    }

    .timeline-marker {
        left: -2.4rem;
        width: 2rem;
        height: 2rem;
        font-size: 1rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }
}

/* ===================================
   Accessibility
   =================================== */

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Focus styles for keyboard navigation */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 3px solid var(--primary-blue);
    outline-offset: 2px;
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ===================================
   Content Sections (About page, etc.)
   =================================== */

.content-section {
    padding: var(--section-padding);
}

.content-section.bg-light {
    background: var(--bg-primary);
}

/* Feature Grid (for About page cards) */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    text-align: center;
    border: 1px solid var(--gray-200);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1;
}

.feature-card h3 {
    color: var(--dark-navy);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Check List */
.check-list {
    list-style: none;
    margin-left: 0;
}

.check-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Text Link */
.text-link {
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-base);
}

.text-link:hover {
    color: var(--primary-green);
    text-decoration: underline;
}

/* Text Center Utility */
.text-center {
    text-align: center;
}

/* Lead Text */
.lead {
    font-size: 1.25rem;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-navy) 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-section .lead {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Page Header Color Fix */
.page-header h1 {
    color: white;
}


/* Responsive Adjustments for Content Sections */
@media (max-width: 768px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .legal-content {
        padding: 2rem 1rem;
    }

    .legal-content ul {
        margin-left: 1.5rem;
    }
}

/* ===================================
   Form Notification System
   =================================== */
.form-notification {
    position: fixed;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10000;
    min-width: 320px;
    max-width: 500px;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: top 0.3s ease-in-out;
    font-family: var(--font-primary);
}

.form-notification.show {
    top: 20px;
}

.form-notification-success {
    background-color: var(--success-green);
    color: white;
}

.form-notification-error {
    background-color: var(--error-red);
    color: white;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.notification-icon {
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.notification-message {
    font-size: 0.95rem;
    line-height: 1.4;
    flex: 1;
}

.notification-close {
    background: transparent;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0 0.25rem;
    line-height: 1;
    opacity: 0.8;
    transition: opacity 0.2s ease;
    flex-shrink: 0;
}

.notification-close:hover,
.notification-close:focus {
    opacity: 1;
}

.notification-close:focus-visible {
    outline: 2px solid white;
    outline-offset: 2px;
}

/* Mobile responsiveness for notifications */
@media (max-width: 768px) {
    .form-notification {
        min-width: auto;
        width: calc(100% - 2rem);
        left: 1rem;
        transform: none;
        max-width: none;
    }

    .form-notification.show {
        top: 10px;
    }
}

/* ===================================
   Form Validation Styles
   =================================== */
.field-error {
    color: #EF4444;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    animation: shake 0.3s ease-in-out;
}

.field-error::before {
    content: '⚠';
    font-size: 1rem;
}

.character-counter {
    font-size: 0.875rem;
    margin-top: 0.25rem;
    text-align: right;
    transition: color 0.3s ease;
}

/* Input states */
input.invalid,
textarea.invalid,
select.invalid {
    border-color: #EF4444 !important;
    background-color: #FEF2F2;
}

input.valid:not(:focus),
textarea.valid:not(:focus),
select.valid:not(:focus) {
    border-color: #10B981 !important;
}

/* Shake animation for errors */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* Focus states */
input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--primary-blue) !important;
    box-shadow: 0 0 0 3px rgba(30, 136, 229, 0.1);
}

/* Disabled button state */
button[type="submit"]:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ===================================
   Bundle Callout Section
   =================================== */

.bundle-callout {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #3578C7 100%);
    position: relative;
    overflow: hidden;
}

.bundle-callout::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%23ffffff" fill-opacity="0.05"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
    opacity: 0.3;
}

.bundle-callout-box {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.98);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    position: relative;
    z-index: 1;
}

.bundle-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-green), #4A9C42);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.bundle-callout-box h2 {
    color: var(--dark-navy);
    margin-bottom: 1rem;
    font-size: clamp(1.75rem, 4vw, 2.25rem);
}

.bundle-callout-box > p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.bundle-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.bundle-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--bg-accent);
    border-radius: 8px;
    transition: var(--transition-base);
}

.bundle-feature:hover {
    transform: translateX(4px);
    background: var(--light-blue);
}

.bundle-feature svg {
    flex-shrink: 0;
    color: var(--primary-blue);
    stroke-width: 2.5;
}

.bundle-feature span {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-primary);
}

.bundle-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 2px solid var(--gray-200);
}

.bundle-price {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin: 0;
}

.bundle-price strong {
    color: var(--primary-blue);
    font-size: 1.75rem;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
    .bundle-callout {
        padding: 3rem 1.5rem;
    }

    .bundle-callout-box {
        padding: 2rem 1.5rem;
    }

    .bundle-features-grid {
        grid-template-columns: 1fr;
    }

    .bundle-cta {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ===================================
   Compliance Section
   =================================== */

.compliance-section {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

.compliance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.compliance-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-blue);
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

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

.compliance-card h3 {
    color: var(--dark-navy);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.compliance-card p {
    margin-bottom: 0.75rem;
}

.compliance-card p:first-of-type strong {
    color: var(--primary-blue);
    font-weight: 600;
}

.compliance-card p:last-child {
    margin-bottom: 0;
}

/* ===================================
   Pricing Section (Bundle Pages)
   =================================== */

.pricing-section {
    padding: var(--section-padding);
    background: var(--bg-primary);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    border: 2px solid var(--gray-200);
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    display: flex;
    flex-direction: column;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-blue);
}

.pricing-card-featured {
    border-color: var(--primary-blue);
    border-width: 3px;
    box-shadow: var(--shadow-lg);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-blue);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.pricing-tier {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 0.5rem;
}

.pricing-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.pricing-amount span {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.pricing-description {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--gray-200);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    flex-grow: 1;
}

.pricing-features li {
    padding: 0.75rem 0;
    color: var(--text-primary);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.pricing-features li::before {
    content: "✓";
    color: var(--success-green);
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.pricing-note {
    max-width: 800px;
    margin: 3rem auto 0;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-radius: 12px;
    text-align: center;
    font-size: 1rem;
}

.pricing-note strong {
    color: var(--primary-blue);
}

.pricing-note a {
    color: var(--primary-blue);
    text-decoration: underline;
    font-weight: 600;
}

/* FAQ Container */
.faq-container {
    margin-top: 3rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--primary-blue);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.faq-item h3 {
    color: var(--dark-navy);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.faq-item p {
    color: var(--text-primary);
    line-height: 1.7;
    margin-bottom: 0;
}

.faq-item a {
    color: var(--primary-blue);
    text-decoration: underline;
    font-weight: 500;
}

/* Responsive Pricing */
@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pricing-amount {
        font-size: 2.5rem;
    }

    .pricing-card {
        padding: 2rem;
    }
}

/* ===================================
   Lead Magnet Hub Section
   =================================== */

.lead-magnet-hub {
    background: linear-gradient(135deg, #F4F7FA 0%, #EBF3F9 100%);
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

.lead-magnet-hub::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(74, 143, 217, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(95, 173, 86, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.lead-magnet-hub .container {
    position: relative;
    z-index: 1;
}

.lead-magnet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Ensure 3 columns on larger screens for assessment cards */
@media (min-width: 1024px) {
    .lead-magnet-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.lead-magnet-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(43, 62, 82, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 2px solid transparent;
}

.lead-magnet-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(43, 62, 82, 0.15);
}

.lead-magnet-card.featured {
    border-color: #EF4444;
    background: linear-gradient(180deg, #FFF 0%, #FEF2F2 100%);
}

.lead-magnet-card.featured:hover {
    box-shadow: 0 12px 40px rgba(239, 68, 68, 0.2);
}

.card-badge {
    position: absolute;
    top: -12px;
    right: 2rem;
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.card-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.lead-magnet-card.featured .card-icon {
    background: linear-gradient(135deg, #FEE2E2 0%, #FECACA 100%);
    color: #DC2626;
}

.lead-magnet-card:not(.featured) .card-icon {
    background: linear-gradient(135deg, #DBEAFE 0%, #BFDBFE 100%);
    color: #2563EB;
}

.card-icon svg {
    width: 32px;
    height: 32px;
    stroke-width: 2px;
}

.lead-magnet-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.lead-magnet-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.lead-magnet-card > p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.card-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.card-benefits li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.card-benefits li::before {
    content: '✓';
    color: var(--success-green);
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.lead-magnet-card .btn {
    width: 100%;
    justify-content: center;
    font-weight: 600;
    padding: 1rem 2rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.lead-magnet-card.featured .btn-primary {
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
    border: none;
    box-shadow: 0 4px 14px rgba(239, 68, 68, 0.3);
}

.lead-magnet-card.featured .btn-primary:hover {
    background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4);
    transform: translateY(-2px);
}

.lead-magnet-card:not(.featured) .btn-secondary {
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
    color: white;
    border: none;
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.3);
}

.lead-magnet-card:not(.featured) .btn-secondary:hover {
    background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
    transform: translateY(-2px);
}

.card-meta {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 1rem;
    margin-bottom: 0;
}

.hub-footer {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-200);
}

.hub-footer p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin: 0;
}

.hub-footer a {
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.hub-footer a:hover {
    color: var(--dark-navy);
    text-decoration: underline;
}

/* Lead Magnet Hub - Responsive */
@media (max-width: 768px) {
    .lead-magnet-hub {
        padding: 3rem 1rem;
    }

    .lead-magnet-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .lead-magnet-card {
        padding: 2rem 1.5rem;
    }

    .card-badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.8rem;
    }

    .lead-magnet-card h3 {
        font-size: 1.25rem;
    }

    .hub-footer {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
}

/* Testimonials Footer Enhancement */
.testimonials-footer {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-200);
}

.testimonials-footer p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.testimonials-footer .btn {
    min-width: 200px;
}

/* ===================================
   Assessment CTA Buttons (Phase 1)
   =================================== */

/* Danger button (Critical Risk 0-200) */
.btn-danger {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    box-shadow: 0 4px 14px 0 rgba(220, 38, 38, 0.39);
    font-weight: 700;
    border: none;
}

.btn-danger:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.5);
    background: linear-gradient(135deg, #b91c1c, #991b1b);
}

/* Warning button (High Risk 201-400) */
.btn-warning {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    box-shadow: 0 4px 14px 0 rgba(245, 158, 11, 0.39);
    font-weight: 700;
    border: none;
}

.btn-warning:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5);
    background: linear-gradient(135deg, #d97706, #b45309);
}

/* Success button (Low Risk 601-800) */
.btn-success {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    box-shadow: 0 4px 14px 0 rgba(16, 185, 129, 0.39);
    font-weight: 700;
    border: none;
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5);
    background: linear-gradient(135deg, #059669, #047857);
}

/* Pulsing animation for critical risk CTA */
.cta-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.85;
        box-shadow: 0 0 0 10px rgba(220, 38, 38, 0);
    }
}

/* ================================= */
/* Booking Widget Styles (Phase 2)   */
/* ================================= */

.booking-widget-container {
    margin-top: 2rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 16px;
    border: 1px solid var(--gray-200);
}

.booking-widget-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    text-align: center;
}

.booking-widget-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.booking-duration-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: white;
    border: 2px solid var(--primary-blue);
    border-radius: 50px;
    color: var(--primary-blue);
    font-weight: 600;
    margin: 0 auto 2rem;
    display: flex;
    justify-content: center;
    width: fit-content;
}

.booking-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.booking-option-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 1.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 12px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.booking-option-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.booking-option-btn.primary-option {
    background: linear-gradient(135deg, var(--primary-blue), #3578C7);
    color: white;
}

.booking-option-btn.primary-option:hover {
    box-shadow: 0 12px 24px rgba(74, 143, 217, 0.4);
}

.booking-option-btn.secondary-option {
    background: white;
    color: var(--text-primary);
    border-color: var(--gray-300);
}

.booking-option-btn.secondary-option:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

.booking-widget-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 1rem;
}

/* Booking Form */
.booking-form-container {
    margin-top: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.booking-form h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
}

.booking-input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--gray-300);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.booking-input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(74, 143, 217, 0.1);
}

.booking-input:disabled {
    background: var(--gray-100);
    cursor: not-allowed;
}

.booking-form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-booking-cancel,
.btn-booking-submit {
    flex: 1;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-booking-cancel {
    background: var(--gray-200);
    color: var(--text-primary);
}

.btn-booking-cancel:hover {
    background: var(--gray-300);
}

.btn-booking-submit {
    background: linear-gradient(135deg, var(--primary-blue), #3578C7);
    color: white;
}

.btn-booking-submit:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(74, 143, 217, 0.3);
}

.btn-booking-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.booking-status {
    display: none;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    font-weight: 500;
}

.booking-status-success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #6ee7b7;
}

.booking-status-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

@media (max-width: 768px) {
    .booking-widget-container {
        padding: 1.5rem;
    }

    .booking-options {
        grid-template-columns: 1fr;
    }

    .booking-option-btn {
        font-size: 1rem;
        padding: 1rem 1.25rem;
    }

    .booking-form-container {
        padding: 1.5rem;
    }

    .booking-form-actions {
        flex-direction: column;
    }
}

/* ===================================
   Cookie Consent Banner
   =================================== */
.cookie-consent-banner {
    position: fixed;
    bottom: -200px;
    left: 0;
    right: 0;
    background: var(--dark-navy, #2B3E52);
    color: white;
    padding: 1.25rem;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    transition: bottom 0.3s ease-out;
}

.cookie-consent-banner.show {
    bottom: 0;
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cookie-consent-text {
    flex: 1;
    min-width: 300px;
}

.cookie-consent-text p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-consent-text p:first-child {
    margin-bottom: 0.25rem;
}

.cookie-consent-buttons {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.cookie-consent-buttons .btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
}

.cookie-consent-link {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    text-decoration: underline;
}

.cookie-consent-link:hover {
    color: white;
}

@media (max-width: 768px) {
    .cookie-consent-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-consent-text {
        min-width: auto;
    }

    .cookie-consent-buttons {
        justify-content: center;
    }
}
