/*
Theme Name: Pinkerton Properties
Theme URI: https://pinkertonproperties.net/
Author: Cameron Byers
Description: Modern, branded WordPress theme for Pinkerton Properties. Enhanced with testimonials, FAQ, lead magnet, insights, and more.
Version: 1.3
*/

@import url('https://fonts.googleapis.com/css?family=Segoe+UI:400,700|Tahoma|Geneva|Verdana&display=swap');

/* CSS Reset and Base Styles */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f6f8fa;
    color: #223448;
    margin: 0;
    line-height: 1.6;
}

/* HEADER */
.header {
    background: linear-gradient(135deg, #223448 0%, #1ea7fd 100%);
    color: white;
    padding: 0 0 2.5rem 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 3px 16px rgba(23,34,53,0.05);
}
.header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 1rem 0.7rem 1rem;
    background: rgba(34, 52, 72, 0.97);
    border-radius: 16px;
}
.site-logo {
    height: 44px;
    width: auto;
    display: block;
    margin-right: 2rem;
}

/* NAVIGATION */
.site-nav ul {
    display: flex;
    gap: 2.1rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
.site-nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    min-height: 44px; /* Improved touch target */
    display: flex;
    align-items: center;
}
.site-nav a:hover,
.site-nav a[aria-current="page"] {
    background: rgba(30, 167, 253, 0.3);
    transform: translateY(-2px);
}

/* Mobile Navigation Toggle */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    min-height: 44px;
    min-width: 44px;
}

/* HOME HERO */
.home-hero {
    background: linear-gradient(135deg, #223448 0%, #1ea7fd 100%);
    color: white;
    padding: 4rem 1rem;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.header-content {
    max-width: 800px;
    margin: 0 auto;
}
.company-name {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    opacity: 0.9;
}
.urgent-banner {
    background: rgba(255, 255, 255, 0.15);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    display: inline-block;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    font-weight: 600;
}
.main-headline {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}
.subheadline {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA BUTTONS */
.cta-button {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e8e 100%);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    min-height: 44px; /* Improved touch target */
    min-width: 200px;
    text-align: center;
}
.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

/* SECTIONS */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #223448;
}

/* SOLUTIONS SECTION */
.solutions-section {
    padding: 5rem 0;
    background: white;
}
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}
.solution-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(34, 52, 72, 0.1);
    border-left: 4px solid #1ea7fd;
    transition: transform 0.3s ease;
}
.solution-card:hover {
    transform: translateY(-5px);
}
.solution-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #223448;
    border-bottom: 2px solid #1ea7fd;
    padding-bottom: 0.5rem;
}
.solution-description {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}
.solution-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}
.solution-benefits li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 1.5rem;
}
.solution-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1ea7fd;
    font-weight: bold;
}

/* VALUES SECTION */
.values-section {
    padding: 5rem 0;
    background: #f8f9fa;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}
.value-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(34, 52, 72, 0.08);
    transition: transform 0.3s ease;
}
.value-card:hover {
    transform: translateY(-5px);
}
.value-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}
.value-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #223448;
}
.value-description {
    line-height: 1.7;
    color: #666;
}

/* FINAL CTA */
.final-cta {
    background: linear-gradient(135deg, #223448 0%, #1ea7fd 100%);
    color: white;
    padding: 4rem 1rem;
    text-align: center;
}
.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}
.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* CONTACT FORMS */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(34, 52, 72, 0.1);
}
.form-group {
    margin-bottom: 1.5rem;
}
.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #223448;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e1e8ed;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    min-height: 44px; /* Improved touch target */
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1ea7fd;
}
.form-group textarea {
    min-height: 120px;
    resize: vertical;
}
.submit-button {
    background: linear-gradient(135deg, #1ea7fd 0%, #0077d6 100%);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 44px;
    min-width: 150px;
}
.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(30, 167, 253, 0.3);
}

/* CALL TO ACTION ELEMENTS */
.click-to-call {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e8e 100%);
    color: white;
    padding: 1rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(255, 107, 107, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.click-to-call:hover {
    transform: scale(1.1);
}

/* SMS CHAT BADGE */
.sms-chat-badge {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #1ea7fd;
    color: white;
    padding: 0.8rem 1.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 20px rgba(30, 167, 253, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}
.sms-chat-badge:hover {
    background: #0077d6;
    transform: scale(1.05);
    color: white;
}

/* LOADING STATES */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

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

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    /* Mobile Navigation */
    .mobile-nav-toggle {
        display: block;
    }
    
    .site-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(34, 52, 72, 0.98);
        border-radius: 0 0 16px 16px;
        display: none;
        z-index: 1000;
    }
    
    .site-nav.active {
        display: block;
    }
    
    .site-nav ul {
        flex-direction: column;
        gap: 0;
        padding: 1rem;
    }
    
    .site-nav a {
        padding: 1rem;
        border-radius: 8px;
        margin-bottom: 0.5rem;
        text-align: center;
        min-height: 48px; /* Larger touch targets on mobile */
    }
    
    /* Header adjustments */
    .header-bar {
        padding: 1rem;
        border-radius: 12px;
    }
    
    .site-logo {
        height: 38px;
        margin-right: 1rem;
    }
    
    /* Hero section */
    .main-headline {
        font-size: 2.2rem;
        line-height: 1.3;
    }
    
    .subheadline {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
        min-width: 180px;
    }
    
    /* Section titles */
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    /* Grid adjustments */
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Card padding */
    .solution-card,
    .value-card {
        padding: 1.5rem;
    }
    
    /* Form adjustments */
    .contact-form {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }
    
    /* Fixed elements */
    .click-to-call {
        bottom: 80px;
        right: 15px;
        padding: 0.8rem;
    }
    
    .sms-chat-badge {
        bottom: 15px;
        right: 15px;
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
    }
    
    /* Spacing adjustments */
    .solutions-section,
    .values-section {
        padding: 3rem 0;
    }
    
    .final-cta {
        padding: 3rem 1rem;
    }
    
    .final-cta h2 {
        font-size: 2rem;
    }
    
    .final-cta p {
        font-size: 1.1rem;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .solution-card,
    .value-card {
        border: 2px solid #223448;
    }
    
    .cta-button {
        border: 2px solid white;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* HEADER CONTENT */
.header-content {
    text-align: center;
    margin-top: 2.3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.company-name {
    font-size: 1.08rem;
    opacity: 0.8;
    margin-bottom: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.01em;
}
.non-flash-banner,
.urgent-banner {
    display: inline-block;
    background: #ffe6e6;
    color: #e8563a;
    font-weight: 700;
    font-size: 1.04rem;
    padding: 0.45rem 1.25rem;
    border-radius: 18px;
    margin-bottom: 1.7rem;
    box-shadow: 0 2px 8px rgba(255,107,107,0.05);
    letter-spacing: 0.02em;
}
.main-headline {
    color: #fff;
    font-size: 3.1rem;
    font-weight: 800;
    margin-bottom: 1.1rem;
    text-shadow: 0 2px 10px rgba(22,44,72,0.15), 0 2px 8px rgba(0,0,0,0.14);
    line-height: 1.1;
}
.subheadline {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    font-weight: 400;
    color: #e3eaf3;
}
.cta-button {
    background: #1ea7fd;
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1.18rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    margin-top: 1.5rem;
    box-shadow: 0 4px 15px rgba(30, 167, 253, 0.12);
    transition: background 0.18s, transform 0.18s;
}
.cta-button:hover {
    background: #0077d6;
    transform: translateY(-2px) scale(1.04);
}

/* --- CARDS/SECTIONS --- */
.container { max-width: 1200px; margin: 0 auto; }
.section-title {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: 2.2rem;
    color: #223448;
    font-weight: 700;
}
.values-section,
.solutions-section {
    padding: 3rem 1rem;
    background: #f8f9fa;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.8rem;
    margin-bottom: 2.5rem;
}
.value-card {
    background: white;
    padding: 2rem;
    border-radius: 13px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(34, 52, 72, 0.07);
    transition: transform 0.23s cubic-bezier(.25,.8,.25,1);
}
.value-card:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 8px 30px rgba(34, 52, 72, 0.11);
}
.value-icon {
    font-size: 2.6rem;
    margin-bottom: 1rem;
}
.value-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
    color: #1ea7fd;
    letter-spacing: 0.01em;
}
.value-description {
    color: #344;
    line-height: 1.5;
}
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 1.8rem;
}
.solution-card {
    border: 2px solid #e3eaf3;
    border-radius: 13px;
    padding: 2rem;
    background: #fff;
    box-shadow: 0 3px 12px rgba(30, 70, 120, 0.04);
    transition: border 0.2s, transform 0.2s, box-shadow 0.2s;
}
.solution-card:hover {
    border-color: #1ea7fd;
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 8px 18px rgba(30, 167, 253, 0.10);
}
.solution-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
    border-bottom: 2px solid #1ea7fd;
    padding-bottom: 0.45rem;
    color: #223448;
}
.solution-description {
    margin-bottom: 1.1rem;
    line-height: 1.5;
    color: #444e5a;
}
.solution-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}
.solution-benefits li {
    padding: 0.28rem 0 0.28rem 1.35rem;
    position: relative;
    font-size: 1rem;
}
.solution-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #26b86b;
    font-weight: bold;
}
.final-cta {
    background: linear-gradient(135deg, #223448 0%, #1ea7fd 100%);
    color: white;
    padding: 3rem 1rem;
    text-align: center;
}
.final-cta h2 {
    font-size: 2rem;
    margin-bottom: 0.7rem;
    font-weight: 700;
}
.final-cta p {
    font-size: 1.13rem;
    margin-bottom: 1.7rem;
    opacity: 0.96;
}
.footer {
    background: #223448;
    color: white;
    padding: 3rem 1rem 1.5rem;
}

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

.footer-section h4 {
    color: #1ea7fd;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section p {
    margin: 0;
    line-height: 1.6;
    opacity: 0.9;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-section a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-section a:hover {
    opacity: 1;
    color: #1ea7fd;
}

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

.company-footer {
    font-size: 0.9rem;
    opacity: 0.7;
    margin: 0;
}

/* Testimonials */
.testimonials-section {
    background: #fff;
    padding: 3rem 1rem 3.5rem 1rem;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.testimonial-card {
    background: #f7fbff;
    border-radius: 14px;
    box-shadow: 0 3px 16px rgba(30, 167, 253, 0.06);
    padding: 2rem 1.4rem 1.2rem 1.4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.testimonial-quote {
    font-size: 1.17rem;
    font-style: italic;
    color: #223448;
    margin-bottom: 1.3rem;
}
.testimonial-info {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}
.testimonial-photo {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #1ea7fd;
}
.testimonial-name {
    font-size: 0.99rem;
    color: #1ea7fd;
    font-weight: 600;
    letter-spacing: 0.01em;
}

/* FAQ */
.faq-section {
    background: #f8f9fa;
    padding: 3rem 1rem;
}
.faq-list {
    max-width: 800px;
    margin: 2rem auto 0 auto;
}
.faq-item {
    margin-bottom: 1.5rem;
}
.faq-question {
    background: #1ea7fd;
    color: #fff;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 12px;
    width: 100%;
    font-size: 1.1rem;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    outline: none;
    transition: background 0.18s;
}
.faq-question:hover,
.faq-question:focus {
    background: #0077d6;
}
.faq-answer {
    background: #fff;
    color: #223448;
    border-left: 4px solid #1ea7fd;
    padding: 1.1rem 1.3rem;
    margin-top: 0.3rem;
    font-size: 1.04rem;
    border-radius: 0 10px 10px 0;
    display: none;
}
.faq-item.active .faq-answer {
    display: block;
}

/* Lead Magnet Modal */
.lead-magnet-modal {
    position: fixed;
    z-index: 9999;
    left: 0; top: 0; right: 0; bottom: 0;
    background: rgba(34,52,72,0.75);
    display: none;
    align-items: center;
    justify-content: center;
}
.lead-magnet-content {
    background: #fff;
    color: #223448;
    padding: 2.5rem 2rem;
    border-radius: 18px;
    text-align: center;
    max-width: 340px;
    margin: auto;
    position: relative;
}
.close-lead-magnet {
    background: transparent;
    border: none;
    color: #1ea7fd;
    font-size: 2rem;
    position: absolute;
    right: 1rem; top: 1rem;
    cursor: pointer;
}
#lead-magnet-form input[type="email"] {
    width: 85%;
    padding: 0.75rem;
    margin: 1rem 0 1.3rem 0;
    border: 1.5px solid #1ea7fd;
    border-radius: 8px;
    font-size: 1.1rem;
}
#lead-magnet-form button {
    background: #1ea7fd;
    color: #fff;
    border: none;
    padding: 0.7rem 2rem;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
}
#lead-magnet-form button:hover {
    background: #0077d6;
}

/* Market Insights */
.market-section { background: #fff; padding: 3rem 1rem; }
.market-grid { display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap; }
.market-card {
    background: #f8f9fa;
    border-radius: 11px;
    padding: 1.6rem 1.3rem;
    box-shadow: 0 2px 14px rgba(30,167,253,0.06);
    max-width: 340px;
    flex: 1 1 280px;
    margin: 0.5rem 0;
}
.market-title {
    font-size: 1.07rem;
    font-weight: 700;
    color: #1ea7fd;
    margin-bottom: 0.6rem;
}
.market-desc {
    font-size: 1.01rem;
    color: #223448;
}

/* EXIT INTENT POPUP STYLES */
.exit-intent-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease-out;
}

.popup-content {
    background: white;
    padding: 40px;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    position: relative;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease-out;
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    color: #666;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s ease;
}

.popup-close:hover {
    color: #1ea7fd;
}

.popup-content h3 {
    color: #223448;
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
}

.popup-content p {
    color: #666;
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 1.5;
}

.exit-popup-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.exit-popup-form input[type="email"] {
    padding: 15px;
    border: 2px solid #e1e8ed;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.2s ease;
}

.exit-popup-form input[type="email"]:focus {
    outline: none;
    border-color: #1ea7fd;
}

.popup-btn {
    background: linear-gradient(135deg, #1ea7fd 0%, #0d7da8 100%);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.popup-btn:hover {
    background: linear-gradient(135deg, #0d7da8 0%, #1ea7fd 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30, 167, 253, 0.3);
}

.popup-disclaimer {
    font-size: 12px !important;
    color: #999 !important;
    margin-top: 10px !important;
    margin-bottom: 0 !important;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { 
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to { 
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Mobile Navigation Toggle Button */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.mobile-nav-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .mobile-nav-toggle {
        display: block;
    }
    
    .site-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #223448;
        flex-direction: column;
        padding: 20px;
        border-radius: 0 0 10px 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }
    
    .site-nav.active {
        display: flex;
    }
    
    .site-nav a {
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .site-nav a:last-child {
        border-bottom: none;
    }
    
    .popup-content {
        padding: 30px 20px;
        margin: 20px;
    }
    
    .popup-content h3 {
        font-size: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-section h4 {
        margin-bottom: 0.8rem;
    }
    
    .footer {
        padding: 2rem 1rem 1rem;
    }
}
