/* NetSurf - Complete CSS */
:root {
    /* Branding Colors */
    --primary: #00AEEF;
    /* Lighter Cyan/Blue from logo */
    --primary-dark: #008AC0;
    --secondary: #00D4FF;
    --accent: #FF6B35;
    --dark: #001233;
    /* Very Dark Navy from logo background */
    --light: #F4F7FA;
    --gray: #6C757D;
    --white: #FFFFFF;

    /* Effects */
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 15px 30px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: #333;
    background: var(--white);
    overflow-x: hidden;
}

/* Header & Navigation */
header {
    background: var(--dark);
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    /* Ensure header is on top */
    height: 80px;
}

/* ... existing styles ... */

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--white);
    padding: 0.5rem;
    z-index: 1001;
    /* Ensure button is clickable */
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    transition: var(--transition);
    padding: 0.5rem 0;
    position: relative;
    font-size: 1rem;
}

/* Special Button Styling for Header */
.nav-links .cta-button {
    padding: 0.7rem 1.8rem;
    /* Smaller padding for header */
    margin: 0;
    color: var(--white) !important;
    background: var(--primary);
}

.nav-links .cta-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    color: var(--white) !important;
}

.nav-links a:not(.cta-button)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--primary);
    transition: var(--transition);
}

.nav-links a:not(.cta-button):hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--white);
    padding: 0.5rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(0, 18, 51, 0.95), rgba(0, 174, 239, 0.85)),
        url('../images/hero-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    padding: 180px 2rem 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: slideUp 0.8s ease-out;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: slideUp 0.8s ease-out 0.2s both;
}

/* CTA Buttons */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    animation: slideUp 0.8s ease-out 0.4s both;
}

.cta-button {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 174, 239, 0.3);
}

.cta-button:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 174, 239, 0.4);
    color: var(--white);
}

.cta-secondary {
    background: transparent;
    border: 2px solid var(--white);
    box-shadow: none;
}

.cta-secondary:hover {
    background: var(--white);
    color: var(--dark) !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* Quick Action Buttons (Inverted) */
.quick-action .cta-button {
    color: var(--dark) !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Services and Icon Grids */
.services-grid,
.contact-options-grid,
.quick-actions-grid,
.departments-grid,
.location-section,
.contact-form-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
    margin: -2.5rem -2rem 2rem;
    width: calc(100% + 4rem);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: rgba(0, 174, 239, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary);
}

.service-card h3 {
    margin: 0.5rem 0 1rem;
    color: var(--dark);
    font-size: 1.5rem;
}

.service-card p {
    margin-bottom: 2rem;
    color: var(--gray);
}

/* NEW: Pricing Cards (Services Page) */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
    align-items: center;
}

.pricing-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid #eee;
    position: relative;
    background-clip: padding-box;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.pricing-card.featured {
    transform: scale(1.05);
    /* Make it pop */
    border: 2px solid var(--primary);
    box-shadow: 0 10px 30px rgba(0, 174, 239, 0.15);
    z-index: 10;
}

.pricing-card.featured:hover {
    transform: scale(1.08);
}

.pricing-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
}

.pricing-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin: 1rem 0;
}

/* Dealer Section */
.dealer-section {
    background: linear-gradient(135deg, #001233 0%, #002B5E 100%);
    color: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-hover);
    margin-top: 3rem;
    overflow: hidden;
}

.dealer-section h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.dealer-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.dealer-section ul {
    list-style: none;
    margin-top: 1.5rem;
}

.dealer-section li {
    margin-bottom: 0.8rem;
    font-weight: 500;
}

/* Partner Page Specifics */
.partner-hero {
    background: linear-gradient(rgba(0, 18, 51, 0.9), rgba(0, 18, 51, 0.9)), url('../images/hero-bg.png');
    background-size: cover;
    background-position: center;
    padding: 180px 2rem 100px;
    text-align: center;
    color: var(--white);
}

.partner-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.partner-hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Testimonials */
.testimonials {
    background: var(--light);
    padding: 6rem 2rem;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 3rem;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    text-align: center;
}

.client-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    object-fit: cover;
    border: 3px solid var(--primary);
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #555;
    font-size: 1.1rem;
}

.testimonial-card h4 {
    color: var(--dark);
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
}

.testimonial-card span {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
}

/* Newsletter */
.newsletter {
    background: var(--dark);
    color: var(--white);
    padding: 6rem 2rem;
    text-align: center;
    background-image: linear-gradient(rgba(0, 18, 51, 0.9), rgba(0, 18, 51, 0.9)), url('../images/hero-bg.png');
    background-size: cover;
    background-attachment: fixed;
}

.newsletter h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.newsletter-form {
    max-width: 500px;
    margin: 2.5rem auto 0;
    display: flex;
    gap: 1rem;
}

.newsletter-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transition: var(--transition);
}

.newsletter-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--white);
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

/* Footer */
footer {
    background: #000B1F;
    /* Specific footer dark */
    color: var(--white);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
}

.footer-links h3 {
    margin-bottom: 1.5rem;
    color: var(--primary);
    font-size: 1.3rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: #a0aebf;
    text-decoration: none;
    transition: var(--transition);
    display: block;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icons a {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    margin: 0;
    padding: 0 !important;
}

.social-icons a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #7a8b9f;
    font-size: 0.9rem;
}

/* Agent Bot (Fixed styling) */
.agent-bot {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.bot-button {
    background: var(--primary);
    color: var(--white) !important;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0, 174, 239, 0.4);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.bot-button:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

.bot-options {
    position: absolute;
    bottom: 75px;
    right: 0;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    padding: 0.5rem;
    display: none;
    min-width: 220px;
    overflow: hidden;
    animation: slideUp 0.3s ease;
}

.bot-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 1rem;
    text-decoration: none;
    color: var(--dark);
    transition: var(--transition);
    border-radius: 8px;
    font-weight: 500;
}

.bot-option:hover {
    background: var(--light);
    color: var(--primary);
}

/* Contact Form Styling Fixes */
.contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    width: 100%;
    /* Force full width within container */
}

#contactForm,
form {
    width: 100%;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark);
}

.form-control {
    width: 100%;
    padding: 0.85rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 174, 239, 0.1);
}

textarea.form-control {
    resize: vertical;
}

/* Cookie Consent */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 18, 51, 0.95);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    /* JS will toggle */
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

/* Job Listing Actions */
.job-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    header {
        height: 70px;
    }

    .logo img {
        height: 40px;
    }

    /* Force all grids to single column */
    .services-grid,
    .contact-options-grid,
    .quick-actions-grid,
    .departments-grid,
    .location-section,
    .contact-form-section,
    .testimonial-grid,
    .footer-content,
    .pricing-grid {
        grid-template-columns: 1fr !important;
        padding: 4rem 1.5rem;
        gap: 2rem;
    }

    .pricing-card.featured {
        transform: none;
        /* Disable scale on mobile */
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--dark);
        /* Dark menu on mobile */
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        gap: 0;
        height: calc(100vh - 70px);
        overflow-y: auto;
        z-index: 999;
        /* Maintain stacking context */
    }

    .nav-links.active {
        display: flex;
        animation: slideDown 0.3s ease;
        z-index: 999;
        /* Ensure it stays visible */
    }

    .nav-links a {
        padding: 1rem;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* Fix mobile button padding */
    .nav-links .cta-button {
        background: var(--primary);
        color: var(--white) !important;
        margin-top: 1rem;
        width: 100%;
        max-width: 250px;
    }

    .mobile-menu-btn {
        display: block !important;
    }

    .hero,
    .partner-hero {
        padding: 140px 1.5rem 80px;
    }

    .hero h1,
    .partner-hero h1 {
        font-size: 2.2rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-content div {
        justify-content: center;
        width: 100%;
    }

    /* Mobile Button Optimization */
    .cta-button {
        padding: 0.8rem 1.5rem;
        /* Reduce padding to save space */
        white-space: normal;
        /* Allow text to wrap if absolutely necessary */
        line-height: 1.2;
        text-align: center;
        max-width: 100%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        height: auto;
        min-height: 50px;
        /* Ensure touch target size */
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        padding: 0 2rem;
        gap: 1.5rem !important;
        /* Force gap */
    }

    .hero-buttons .cta-button {
        width: 100%;
        margin-bottom: 0;
        /* Let gap handle it, but can add if needed */
    }

    .hero-buttons .cta-button {
        width: 100%;
    }

    /* Job Actions Mobile Optimization */
    .job-actions {
        flex-direction: column;
        width: 100%;
    }

    .job-actions .cta-button,
    .job-actions .save-job {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .job-actions .save-job {
        padding: 0.8rem 1.5rem !important;
        /* Match cta-button padding */
    }

    /* Bulk Internet/Dealer Section Mobile */
    .dealer-section>div {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        padding: 1rem !important;
    }

    .dealer-section img {
        height: 200px;
        object-fit: cover;
    }

    /* Pricing Card Mobile Optimization */
    .pricing-card {
        padding: 1.5rem !important;
        margin-bottom: 1rem;
    }

    .pricing-card h3 {
        font-size: 1.5rem;
    }

    .pricing-card ul {
        padding-left: 0;
    }

    .pricing-card li {
        font-size: 0.95rem;
    }
}

/* Infrastructure Section Enhancements */
.infra-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.infra-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.infra-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.infra-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.infra-card:hover::before {
    transform: scaleX(1);
}

.infra-icon-wrapper {
    width: 70px;
    height: 70px;
    background: rgba(0, 174, 239, 0.08);
    /* Very light blue */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.infra-card:hover .infra-icon-wrapper {
    background: var(--primary);
    transform: rotateY(180deg);
}

.infra-icon {
    font-size: 2rem;
    color: var(--primary);
    transition: var(--transition);
}

.infra-card:hover .infra-icon {
    color: var(--white);
    transform: rotateY(-180deg);
    /* Counter-rotate to keep icon upright if desired, or let it flip */
}

.infra-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.infra-card p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    /* Opposite side of the agent bot */
    width: 50px;
    height: 50px;
    background: var(--dark);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
    border: 2px solid rgba(255, 255, 255, 0.1);
    font-size: 1.2rem;
    text-decoration: none;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary);
    transform: translateY(-5px);
    color: var(--white);
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        left: 20px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* FAQ Accordion Styles */
.faq-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    cursor: pointer;
    font-weight: 600;
    color: var(--dark);
    font-size: 1.1rem;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-answer {
    display: none;
    padding-bottom: 1.5rem;
    color: var(--gray);
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    display: block;
    animation: slideDown 0.3s ease;
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 300;
}

/* Contact Page Button Alignment Fix */
.contact-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    gap: 1.5rem;
    /* Ensure consistent spacing */
}

.contact-option .cta-button {
    margin-top: auto !important;
    min-width: 200px;
    text-align: center;
}

/* Contact Form Section */
.contact-form-section {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.section-desc {
    margin: 1.5rem 0;
    color: var(--gray);
    line-height: 1.7;
}

.office-hours {
    margin-top: 2rem;
}

.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark);
}

.form-control {
    width: 100%;
    padding: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 174, 239, 0.1);
}

@media (max-width: 768px) {
    .contact-form-section {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-form {
        padding: 1.5rem;
    }
}

/* Live Chat Widget */
.live-chat {
    display: none;
    /* Hidden by default */
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 350px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    overflow: hidden;
    animation: slideUp 0.3s ease;
}

.chat-header {
    background: var(--primary);
    color: var(--white);
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header h4 {
    margin: 0;
    font-size: 1.1rem;
}

.chat-header button {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.chat-messages {
    height: 300px;
    overflow-y: auto;
    padding: 1rem;
    background: #f8f9fa;
}

.chat-input {
    padding: 1rem;
    border-top: 1px solid #eee;
    background: var(--white);
}

.chat-input form {
    display: flex;
    gap: 0.5rem;
}

.chat-input input {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 20px;
    outline: none;
}

.chat-input button {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
}

@media (max-width: 480px) {
    .live-chat {
        width: 100%;
        bottom: 0;
        right: 0;
        border-radius: 12px 12px 0 0;
    }
}
