/* ============================================
   ZeitcoreAI Landing Page - Shared Styles
   ============================================ */

/* CSS VARIABLES - Based on Design System */
:root {
    /* Brand Colors */
    --brand-cyan: #00E5CC;
    --brand-cyan-light: #1DE9DC;
    --brand-cyan-dark: #00C9B3;
    --accent-cyan: #7FFFD4;

    /* Background Colors - Darker version */
    --brand-navy: #0A1628;
    --brand-navy-light: #1A2332;
    --dark-bg: #080D14;

    /* Text Colors */
    --text-white: #FFFFFF;
    --text-gray: #B4BCD0;
    --text-gray-dark: #8892A6;

    /* Semantic Colors */
    --success: #10b981;
    --error: #ef4444;
    --warning: #f59e0b;
    --info: #3b82f6;

    /* Legacy aliases */
    --primary-cyan: var(--brand-cyan);
    --primary-cyan-light: var(--brand-cyan-light);
    --primary-cyan-dark: var(--brand-cyan-dark);
    --dark-navy: var(--brand-navy);
    --dark-navy-light: var(--brand-navy-light);
}

/* GLOBAL RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    background: linear-gradient(135deg, var(--primary-cyan) 0%, var(--accent-cyan) 100%, var(--primary-cyan) 200%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease infinite;
    line-height: 1.3;
    min-height: 6rem;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.rotating-words {
    display: inline-block;
    min-width: 300px;
    text-align: left;
    transition: opacity 0.3s ease;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-white);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--primary-cyan);
}

p {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* CONTAINER */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* HEADER / NAVIGATION */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--dark-navy-light);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    height: 80px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a.btn-primary {
    color: var(--dark-navy) !important;
}

.nav-links a:hover,
.nav-links a:focus {
    color: var(--primary-cyan);
    outline: none;
}

.nav-links a.btn-primary:hover,
.nav-links a.btn-primary:focus {
    color: var(--dark-navy) !important;
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    gap: 0.5rem;
    background: var(--dark-navy-light);
    padding: 0.5rem;
    border-radius: 8px;
    position: relative;
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.5rem;
    background: var(--dark-navy-light);
    border: 2px solid var(--primary-cyan);
    border-radius: 8px;
    padding: 0.25rem;
    display: none;
    min-width: 80px;
    z-index: 1001;
}

.lang-dropdown.show {
    display: block;
}

.lang-option {
    display: block;
    padding: 0.3rem 0.8rem;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    font-size: 0.9rem;
}

.lang-option:hover {
    background: var(--primary-cyan);
    color: var(--dark-navy) !important;
}

.lang-btn {
    padding: 0.5rem 1rem;
    background: transparent;
    border: none;
    color: var(--text-gray);
    cursor: pointer;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.lang-btn.active {
    background: var(--primary-cyan);
    color: var(--dark-navy);
}

.lang-btn:hover:not(.active) {
    background: var(--dark-navy);
    color: var(--primary-cyan);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-cyan) 0%, var(--primary-cyan-dark) 100%);
    color: var(--dark-navy);
    box-shadow: 0 8px 24px rgba(0, 229, 204, 0.3);
}

.btn-primary:hover,
.btn-primary:focus {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 229, 204, 0.4);
    outline: 2px solid var(--primary-cyan);
    outline-offset: 2px;
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary-cyan);
    color: var(--primary-cyan);
}

.btn-secondary:hover,
.btn-secondary:focus {
    background: var(--primary-cyan);
    color: var(--dark-navy);
    outline: 2px solid var(--primary-cyan);
    outline-offset: 2px;
}

/* HERO SECTION */
.hero {
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 229, 204, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 8s ease-in-out infinite;
    z-index: 2;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.5; }
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 10;
}

.hero h1 {
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* BENEFITS SECTION */
.benefits {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-navy) 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    color: var(--primary-cyan);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-card {
    background: var(--dark-navy-light);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 229, 204, 0.1);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-cyan);
    box-shadow: 0 12px 32px rgba(0, 229, 204, 0.2);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-cyan) 0%, var(--accent-cyan) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

/* AGENTS SECTION */
.agents {
    padding: 100px 0;
    background: var(--dark-navy);
}

.agents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.agent-card {
    background: var(--dark-bg);
    border-radius: 16px;
    padding: 2rem;
    border: 2px solid var(--dark-navy-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.agent-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-cyan) 0%, var(--accent-cyan) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.agent-card:hover::before {
    transform: scaleX(1);
}

.agent-card:hover {
    border-color: var(--primary-cyan);
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 229, 204, 0.2);
}

.agent-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.agent-tag {
    display: inline-block;
    background: rgba(0, 229, 204, 0.1);
    color: var(--primary-cyan);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.agent-features {
    list-style: none;
    margin-top: 1.5rem;
}

.agent-features li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid var(--dark-navy-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.agent-features li:last-child {
    border-bottom: none;
}

.agent-features li::before {
    content: '\2713';
    color: var(--primary-cyan);
    font-weight: bold;
}

/* SOCIAL PROOF */
.social-proof {
    padding: 100px 0;
    background: var(--dark-bg);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-cyan) 0%, var(--accent-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.25rem;
    color: var(--text-gray);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--dark-navy-light);
    padding: 2.5rem;
    border-radius: 16px;
    border-left: 4px solid var(--primary-cyan);
}

.testimonial-text {
    font-size: 1.125rem;
    font-style: italic;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-cyan) 0%, var(--accent-cyan) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--dark-navy);
}

.author-info h4 {
    margin: 0;
    font-size: 1rem;
    color: var(--text-white);
}

.author-info p {
    margin: 0;
    font-size: 0.875rem;
    color: var(--text-gray-dark);
}

/* PROCESS SECTION */
.process {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--dark-navy) 0%, var(--dark-bg) 100%);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    position: relative;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-cyan) 0%, var(--accent-cyan) 100%);
    color: var(--dark-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 24px rgba(0, 229, 204, 0.3);
}

.step-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.step-description {
    color: var(--text-gray);
}

/* FAQ SECTION */
.faq {
    padding: 100px 0;
    background: var(--dark-navy);
}

.faq-container {
    max-width: 800px;
    margin: 4rem auto 0;
}

.faq-item {
    background: var(--dark-bg);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border: 1px solid var(--dark-navy-light);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-cyan);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: transparent;
    border: none;
    color: var(--text-white);
    font-size: 1.25rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
    font-family: inherit;
}

.faq-question:hover,
.faq-question:focus {
    color: var(--primary-cyan);
    outline: none;
}

.faq-question::after {
    content: '+';
    font-size: 2rem;
    color: var(--primary-cyan);
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 2rem;
}

.faq-answer.active {
    max-height: 1000px;
    padding: 0 2rem 1.5rem;
}

.faq-answer p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* CTA SECTION */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--dark-bg) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 229, 204, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 10;
}

.cta-content h2 {
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
}

/* FOOTER */
footer {
    background: var(--dark-navy);
    padding: 60px 0 30px;
    border-top: 1px solid var(--dark-navy-light);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.footer-section p,
.footer-section a {
    color: var(--text-gray);
    text-decoration: none;
    line-height: 2;
    transition: color 0.3s ease;
}

.footer-section a:hover,
.footer-section a:focus {
    color: var(--primary-cyan);
    outline: none;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--dark-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid var(--dark-navy-light);
    color: var(--text-gray);
}

.social-link:hover {
    background: var(--primary-cyan);
    border-color: var(--primary-cyan);
    transform: translateY(-3px);
    color: var(--dark-navy);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--dark-navy-light);
    color: var(--text-gray-dark);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
    .benefits-grid,
    .stats-grid,
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--dark-navy);
        padding: 2rem;
        gap: 1rem;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero {
        padding: 140px 0 60px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .agents-grid,
    .testimonials-grid,
    .process-steps {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .logo {
        height: 60px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    h1 {
        min-height: auto;
    }

    .rotating-words {
        min-width: auto;
        display: block;
        text-align: center;
    }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
.skip-to-content {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--primary-cyan);
    color: var(--dark-navy);
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: bold;
    z-index: 9999;
}

.skip-to-content:focus {
    top: 0;
}

*:focus-visible {
    outline: 2px solid var(--primary-cyan);
    outline-offset: 2px;
}

/* ============================================
   CONTACT FORM SECTION
   ============================================ */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--dark-bg) 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 229, 204, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.contact-wrapper {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    position: relative;
    z-index: 10;
    align-items: flex-start;
}

.contact-wrapper .contact-form {
    flex: 1;
    min-width: 0;
}

.contact-wrapper .contact-sidebar {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

/* Contact Form */
.contact-form {
    background: var(--dark-bg);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 229, 204, 0.15);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--text-white);
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    background: var(--dark-navy-light);
    border: 2px solid transparent;
    border-radius: 12px;
    color: var(--text-white);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-gray-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-cyan);
    background: var(--dark-navy);
    box-shadow: 0 0 0 4px rgba(0, 229, 204, 0.1);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2300E5CC' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-group select option {
    background: var(--dark-navy);
    color: var(--text-white);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Checkbox styling */
.checkbox-group {
    margin-bottom: 2rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
    accent-color: var(--primary-cyan);
    cursor: pointer;
}

.checkbox-label a {
    color: var(--primary-cyan);
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

/* Submit button */
.btn-submit {
    width: 100%;
    padding: 1.25rem;
    font-size: 1.125rem;
    position: relative;
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Form message */
.form-message {
    margin-top: 1.5rem;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    display: none;
    font-size: 0.95rem;
}

.form-message.success {
    display: block;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid var(--success);
    color: var(--success);
}

.form-message.error {
    display: block;
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid var(--error);
    color: var(--error);
}

/* Contact Info Cards */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-card {
    background: var(--dark-bg);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 229, 204, 0.1);
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    border-color: var(--primary-cyan);
    transform: translateY(-4px);
}

.contact-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-info-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.contact-info-card p {
    color: var(--text-gray);
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

.contact-info-card a {
    color: var(--primary-cyan);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact-info-card a:hover {
    opacity: 0.8;
}

/* Contact Form Responsive */
@media (max-width: 600px) {
    .contact-wrapper {
        flex-direction: column;
        gap: 2rem;
    }

    .contact-info {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .contact-info-card {
        flex: 1;
        min-width: 200px;
    }
}

@media (max-width: 768px) {
    .contact-form {
        padding: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-info {
        flex-direction: column;
    }

    .contact-info-card {
        min-width: auto;
    }
}

/* ============================================
   CHATBOX WIDGET
   ============================================ */
.chatbox-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Chat Toggle Button */
.chatbox-toggle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--dark-navy);
    border: 3px solid var(--primary-cyan);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(0, 229, 204, 0.4);
    transition: all 0.3s ease;
    position: relative;
    padding: 0;
    overflow: hidden;
}

.chatbox-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(0, 229, 204, 0.5);
}

.chatbox-toggle svg {
    width: 28px;
    height: 28px;
    fill: var(--dark-navy);
    transition: transform 0.3s ease;
}

.chatbox-toggle.active svg {
    transform: rotate(90deg);
}

.chatbox-toggle-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.chatbox-toggle:hover .chatbox-toggle-img {
    transform: scale(1.1);
}

/* Notification badge */
.chatbox-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 20px;
    height: 20px;
    background: var(--error);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: white;
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Chat Window */
.chatbox-window {
    position: fixed;
    bottom: 100px;
    right: 24px;
    width: 400px;
    height: 600px;
    background: var(--dark-bg);
    border-radius: 20px;
    border: 1px solid rgba(0, 229, 204, 0.2);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
    display: none;
    flex-direction: column;
    overflow: hidden;
    animation: slideUp 0.3s ease;
    z-index: 10000;
}

/* Hide quick replies */
.quick-replies {
    display: none;
}

.chatbox-window.active {
    display: flex;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Chat Header */
.chatbox-header {
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--dark-navy-light) 100%);
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0, 229, 204, 0.15);
}

.chatbox-header-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.chatbox-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-cyan) 0%, var(--accent-cyan) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.chatbox-header-text h4 {
    margin: 0;
    font-size: 1rem;
    color: var(--text-white);
}

.chatbox-header-text p {
    margin: 0;
    font-size: 0.8rem;
    color: var(--success);
}

.chatbox-close {
    background: none;
    border: none;
    color: var(--text-gray);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.chatbox-close:hover {
    background: var(--dark-bg);
    color: var(--text-white);
}

/* Chat Messages */
.chatbox-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chatbox-messages::-webkit-scrollbar {
    width: 6px;
}

.chatbox-messages::-webkit-scrollbar-track {
    background: var(--dark-navy);
}

.chatbox-messages::-webkit-scrollbar-thumb {
    background: var(--primary-cyan);
    border-radius: 3px;
}

/* Message bubbles */
.chat-message {
    max-width: 85%;
    padding: 1rem 1.25rem;
    border-radius: 16px;
    font-size: 0.95rem;
    line-height: 1.5;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.chat-message.bot {
    background: var(--dark-navy-light);
    color: var(--text-white);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.chat-message.user {
    background: linear-gradient(135deg, var(--primary-cyan) 0%, var(--primary-cyan-dark) 100%);
    color: var(--dark-navy);
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

/* Typing indicator */
.typing-indicator {
    display: flex;
    gap: 4px;
    padding: 1rem 1.25rem;
    background: var(--dark-navy-light);
    border-radius: 16px;
    border-bottom-left-radius: 4px;
    align-self: flex-start;
    max-width: 60px;
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    background: var(--text-gray);
    border-radius: 50%;
    animation: typing 1.4s ease-in-out infinite;
}

.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
    30% { transform: translateY(-8px); opacity: 1; }
}

/* Chat Input */
.chatbox-input {
    padding: 1rem 1.5rem;
    background: var(--dark-navy);
    border-top: 1px solid rgba(0, 229, 204, 0.15);
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.chatbox-input input {
    flex: 1;
    padding: 0.875rem 1rem;
    background: var(--dark-bg);
    border: 2px solid transparent;
    border-radius: 12px;
    color: var(--text-white);
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.chatbox-input input::placeholder {
    color: var(--text-gray-dark);
}

.chatbox-input input:focus {
    outline: none;
    border-color: var(--primary-cyan);
}

.chatbox-input button {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-cyan) 0%, var(--primary-cyan-dark) 100%);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.chatbox-input button:hover {
    transform: scale(1.05);
}

.chatbox-input button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.chatbox-input button svg {
    width: 20px;
    height: 20px;
    fill: var(--dark-navy);
}

/* Quick replies */
.quick-replies {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.quick-reply {
    padding: 0.5rem 1rem;
    background: transparent;
    border: 1px solid var(--primary-cyan);
    border-radius: 20px;
    color: var(--primary-cyan);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quick-reply:hover {
    background: var(--primary-cyan);
    color: var(--dark-navy);
}

/* Chatbox Responsive - Mobile */
@media screen and (max-width: 768px) {
    .chatbox-widget {
        bottom: 20px;
        right: 16px;
    }

    .chatbox-toggle {
        width: 56px;
        height: 56px;
    }

    .chatbox-window {
        position: fixed;
        top: 80px;
        left: 16px;
        right: 16px;
        bottom: 90px;
        width: auto;
        height: auto;
        max-height: none;
        border-radius: 16px;
        z-index: 10000;
    }
}

/* ============================================
   CONTACT SIDEBAR - Benefits & Tools
   ============================================ */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Benefits Stats with Circular Progress */
.sidebar-benefits {
    background: var(--dark-bg);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 229, 204, 0.15);
}

.sidebar-benefits h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--text-white);
    text-align: center;
}

.circular-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.circular-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.progress-ring {
    width: 100px;
    height: 100px;
    transform: rotate(-90deg);
}

.progress-ring-bg {
    fill: none;
    stroke: var(--dark-navy-light);
    stroke-width: 8;
}

.progress-ring-fill {
    fill: none;
    stroke: url(#gradient);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 283;
    stroke-dashoffset: calc(283 - (283 * var(--progress)) / 100);
    transition: stroke-dashoffset 1.5s ease-out;
    filter: drop-shadow(0 0 8px rgba(0, 229, 204, 0.5));
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { filter: drop-shadow(0 0 6px rgba(0, 229, 204, 0.4)); }
    50% { filter: drop-shadow(0 0 12px rgba(0, 229, 204, 0.8)); }
}

.stat-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: baseline;
    margin-top: -12px;
}

.stat-center .stat-number {
    font-size: 1.75rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-cyan) 0%, var(--accent-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-center .stat-suffix {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-cyan);
}

.circular-stat .stat-label {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-gray);
    text-align: center;
}

/* Tools Marquee */
.sidebar-tools {
    background: var(--dark-bg);
    padding: 1.5rem 0;
    border-radius: 20px;
    border: 1px solid rgba(0, 229, 204, 0.15);
    overflow: hidden;
}

.sidebar-tools h4 {
    font-size: 1rem;
    margin-bottom: 1.25rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    text-align: center;
    padding: 0 1.5rem;
}

.tools-marquee {
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
}

.marquee-track {
    display: flex;
    gap: 1.5rem;
    animation: marquee 20s linear infinite;
    width: max-content;
}

.marquee-track:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.tool-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 70px;
    padding: 0.75rem;
    background: var(--dark-navy-light);
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: default;
    position: relative;
}

.tool-item:hover {
    transform: scale(1.1);
    background: var(--dark-navy);
    box-shadow: 0 8px 24px rgba(0, 229, 204, 0.3);
}

.tool-item img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.tool-item:hover img {
    transform: rotate(360deg);
    transition: transform 0.6s ease;
}

.tool-fallback {
    display: none;
    width: 32px;
    height: 32px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--dark-navy);
    background: linear-gradient(135deg, var(--primary-cyan) 0%, var(--accent-cyan) 100%);
    border-radius: 8px;
    align-items: center;
    justify-content: center;
}

.tool-name {
    font-size: 0.7rem;
    color: var(--text-gray);
    margin-top: 0.5rem;
    white-space: nowrap;
}

.tool-item:hover .tool-name {
    color: var(--primary-cyan);
}

/* Contact Sidebar Responsive */
@media (max-width: 600px) {
    .contact-sidebar {
        flex-direction: column;
    }

    .sidebar-benefits {
        display: none;
    }

    .sidebar-tools {
        width: 100%;
    }
}

