/* Florida Live Chat - Main Stylesheet */
/* Modern, clean design with indigo accent color */

:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --text: #1f2937;
    --text-light: #6b7280;
    --bg: #ffffff;
    --bg-secondary: #f9fafb;
    --bg-tertiary: #f3f4f6;
    --border: #e5e7eb;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-lg: rgba(0, 0, 0, 0.15);
    --gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 16px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text);
    font-weight: 700;
    font-size: 1.25rem;
}

.logo-icon {
    width: 36px;
    height: 36px;
    stroke: var(--primary);
}

.logo-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
}

.mobile-menu-toggle svg {
    width: 24px;
    height: 24px;
    stroke: var(--text);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 8px;
}

.nav-list li a {
    display: block;
    padding: 10px 18px;
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
}

.nav-list li a:hover {
    background: var(--bg-tertiary);
    color: var(--primary);
}

/* Main content */
main {
    min-height: calc(100vh - 70px);
}

.page-content {
    padding: 60px 0;
}

h1 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.2;
    color: var(--text);
}

h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 40px 0 20px;
    line-height: 1.3;
}

h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 24px 0 12px;
}

p {
    margin-bottom: 16px;
    color: var(--text);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: var(--primary-dark);
}

/* Buttons */
button, .cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    background: var(--gradient);
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 14px 0 rgba(99, 102, 241, 0.3);
}

button:hover, .cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
    color: white;
}

button:active, .cta-btn:active {
    transform: translateY(0);
}

/* CTA Floating Button */
.cta-floating {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    padding: 16px 28px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(99, 102, 241, 0.5);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 8px 32px rgba(99, 102, 241, 0.5); }
    50% { box-shadow: 0 8px 40px rgba(99, 102, 241, 0.7); }
}

/* Content sections */
.content-section {
    margin-bottom: 50px;
}

.content-section.intro {
    background: var(--bg-secondary);
    padding: 30px;
    border-radius: var(--radius);
    border-left: 4px solid var(--primary);
}

/* Features grid on homepage */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px var(--shadow);
    border-color: var(--primary-light);
}

.feature-card svg {
    width: 48px;
    height: 48px;
    stroke: var(--primary);
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--text);
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
    background: var(--gradient);
    color: white;
    padding: 50px;
    border-radius: var(--radius-lg);
    text-align: center;
    margin: 60px 0;
}

.cta-section h2 {
    color: white;
    margin-bottom: 15px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 25px;
}

.cta-section button {
    background: white;
    color: var(--primary);
    font-weight: 700;
}

.cta-section button:hover {
    background: var(--bg-secondary);
    color: var(--primary-dark);
}

/* Steps section */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.step {
    text-align: center;
    padding: 25px;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--gradient);
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 15px;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.testimonial-card {
    background: var(--bg-secondary);
    padding: 30px;
    border-radius: var(--radius);
    border-left: 4px solid var(--primary);
}

.testimonial-card p {
    font-style: italic;
    color: var(--text);
    margin-bottom: 15px;
}

.testimonial-author {
    font-weight: 600;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Benefits/steps detailed */
.steps-detailed {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.step-detailed {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 35px;
    transition: all 0.3s ease;
}

.step-detailed:hover {
    border-color: var(--primary-light);
    box-shadow: 0 8px 30px var(--shadow);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.step-icon svg {
    width: 32px;
    height: 32px;
    stroke: white;
}

.step-detailed ul {
    margin-top: 15px;
    padding-left: 20px;
}

.step-detailed ul li {
    margin-bottom: 8px;
    color: var(--text-light);
}

/* Contact grid */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.contact-card {
    background: white;
    padding: 30px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    text-align: center;
}

.contact-card svg {
    width: 48px;
    height: 48px;
    stroke: var(--primary);
    margin-bottom: 15px;
}

.contact-card h3 {
    margin-bottom: 10px;
}

.contact-card p {
    color: var(--text-light);
    margin-bottom: 5px;
}

/* Page actions */
.page-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border);
}

.text-link {
    font-weight: 600;
    color: var(--primary);
}

/* Blog */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.blog-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px var(--shadow);
    border-color: var(--primary-light);
}

.blog-card-image {
    height: 180px;
    background: var(--bg-tertiary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-card-image svg {
    width: 64px;
    height: 64px;
    stroke: var(--primary-light);
}

.blog-card h3 {
    padding: 0 25px;
    margin-top: 20px;
    font-size: 1.15rem;
}

.blog-card h3 a {
    color: var(--text);
    text-decoration: none;
}

.blog-card h3 a:hover {
    color: var(--primary);
}

.blog-card p {
    padding: 0 25px;
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.blog-card .read-more {
    display: block;
    padding: 0 25px 20px;
    color: var(--primary);
    font-weight: 600;
}

/* Blog article */
.blog-article {
    max-width: 800px;
}

.back-link {
    display: inline-block;
    margin-bottom: 30px;
    font-weight: 600;
    color: var(--text-light);
}

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

.article-meta {
    display: flex;
    gap: 10px;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 30px;
}

.article-cta {
    text-align: center;
    margin: 50px 0;
    padding: 40px;
    background: var(--bg-secondary);
    border-radius: var(--radius);
}

.related-articles {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.related-card {
    background: white;
    padding: 25px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    text-decoration: none;
    transition: all 0.2s ease;
}

.related-card:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 20px var(--shadow);
}

.related-card h3 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--text);
}

.related-card p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Footer */
.footer {
    background: var(--text);
    color: white;
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: none;
    margin-bottom: 15px;
}

.footer-logo .logo-icon {
    stroke: white;
}

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

.footer-links h4 {
    font-size: 1rem;
    margin-bottom: 20px;
    color: white;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links ul li a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Lists */
.feature-list, .warning-list, .stats-list {
    margin: 15px 0;
    padding-left: 25px;
}

.feature-list li, .warning-list li, .stats-list li {
    margin-bottom: 10px;
    color: var(--text);
}

.feature-list li strong {
    color: var(--text);
}

.warning-list {
    list-style: disc;
}

/* FAQ */
.faq-item {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border);
}

.faq-item h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: var(--text);
}

.faq-item p {
    color: var(--text-light);
}

/* Tips grid (safety, dating tips) */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.tip-card {
    background: white;
    padding: 25px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all 0.2s ease;
}

.tip-card:hover {
    border-color: var(--primary-light);
    box-shadow: 0 4px 20px var(--shadow);
}

.tip-card svg {
    width: 40px;
    height: 40px;
    stroke: var(--primary);
    margin-bottom: 12px;
}

.tip-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.tip-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0;
}

/* Features showcase */
.features-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-showcase-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.feature-showcase-item .feature-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-showcase-item .feature-icon svg {
    width: 26px;
    height: 26px;
    stroke: white;
}

.feature-showcase-item h3 {
    margin: 0 0 10px;
    font-size: 1.1rem;
}

.feature-showcase-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

/* Stories grid */
.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.story-card {
    background: white;
    padding: 30px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    text-align: center;
}

.story-avatar {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.story-avatar svg {
    width: 40px;
    height: 40px;
    stroke: white;
}

.story-card h3 {
    margin-bottom: 5px;
    color: var(--text);
}

.story-location {
    color: var(--primary);
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.story-card p {
    font-style: italic;
    color: var(--text);
    margin-bottom: 15px;
}

.story-date {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Values grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.value-card {
    background: white;
    padding: 25px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    text-align: center;
}

.value-card svg {
    width: 40px;
    height: 40px;
    stroke: var(--primary);
    margin-bottom: 12px;
}

.value-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.value-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

/* Guidelines sections */
.guidelines-section {
    margin: 25px 0 35px;
    padding: 25px;
    background: var(--bg-secondary);
    border-radius: var(--radius);
}

.guidelines-section h3 {
    margin-top: 0;
    margin-bottom: 15px;
    color: var(--text);
}

/* Internal button styles (non-affiliate) */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    color: white;
    background: var(--gradient);
    box-shadow: 0 4px 14px 0 rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
    color: white;
}

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

.btn-secondary:hover {
    background: var(--bg-secondary);
    color: var(--primary-dark);
}

/* Utility spacing */
.ml-1 {
    margin-left: 15px;
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 30px;
}

.button-group {
    text-align: center;
    margin-top: 40px;
}

/* Hero section */
.hero {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-content {
    flex: 1;
}

.hero-visual {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-icon {
    width: 100%;
    max-width: 400px;
    height: auto;
    stroke: var(--primary);
}

/* Feature card button spacing */
.feature-card .cta-btn {
    margin-top: 15px;
}

/* Section spacing and backgrounds */
.features,
.benefits,
.testimonials,
.safety {
    padding: 60px 0;
}

.features {
    background: var(--bg);
}

.benefits {
    background: var(--bg-secondary);
}

.testimonials {
    background: var(--bg-tertiary);
}

.safety {
    background: var(--primary);
    color: white;
}

.safety h2,
.safety p,
.safety .content-section p {
    color: white;
}

/* CTA variants */
.cta-primary {
    font-size: 1.1rem;
    padding: 16px 36px;
}

.cta-subtext {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 12px;
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .nav-list {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        gap: 0;
        border-bottom: 1px solid var(--border);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
    }

    .nav-list.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-list li a {
        padding: 15px;
        border-bottom: 1px solid var(--border);
    }

    .nav-list li:last-child a {
        border-bottom: none;
    }

    h1 {
        font-size: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cta-floating {
        bottom: 20px;
        right: 20px;
        padding: 14px 24px;
        font-size: 0.9rem;
    }

        .page-content {
            padding: 40px 0;
        }

        .hero .container {
            flex-direction: column;
        }
        .hero-visual {
            margin-top: 30px;
        }
        .hero-icon {
            max-width: 250px;
        }
        .ml-1 {
            margin-left: 0;
            margin-top: 10px;
        }
    }

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .features-grid,
    .steps,
    .tips-grid,
    .blog-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .page-actions {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
}

/* Ensure no horizontal overflow */
html, body {
    overflow-x: hidden;
    max-width: 100%;
}

/* Ensure images don't overflow */
img, svg {
    max-width: 100%;
    height: auto;
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Print styles */
@media print {
    .cta-floating,
    .mobile-menu-toggle {
        display: none !important;
    }
}