/* ===== Base Styles ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --color-primary: #0b7a3e;
    --color-primary-dark: #085c2e;
    --color-primary-light: #e8f5e9;
    --color-text: #1a1a1a;
    --color-text-light: #555;
    --color-bg: #ffffff;
    --color-bg-alt: #f7f9fa;
    --color-border: #e0e0e0;
    --font-heading: 'Oswald', 'Arial Narrow', sans-serif;
    --font-body: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Oxygen, Ubuntu, Cantarell, sans-serif;
    --shadow: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-hover: 0 8px 24px rgba(0,0,0,0.12);
    --radius: 8px;
    --max-width: 1200px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

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

a:hover {
    text-decoration: underline;
}

/* ===== Utilities ===== */
.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;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--color-primary);
    color: #fff;
    padding: 8px 16px;
    z-index: 1000;
    transition: top 0.2s;
}

.skip-link:focus {
    top: 0;
}

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

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.btn-primary {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    text-decoration: none;
    transform: translateY(-1px);
}

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

.btn-secondary:hover {
    background: var(--color-primary-light);
    text-decoration: none;
    transform: translateY(-1px);
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* ===== Header ===== */
.site-header {
    background: #000;
    border-bottom: 1px solid #000;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    gap: 24px;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    transition: 0.3s;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 8px;
    align-items: center;
}

.nav-link {
    display: block;
    padding: 8px 16px;
    color: #fff;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    border-radius: 4px;
    transition: background 0.2s;
}

.nav-link:hover,
.nav-link:focus {
    background: #333;
    text-decoration: none;
}

.current-menu-item > .nav-link {
    background: transparent;
    color: #00FF00;
}

.has-dropdown {
    position: relative;
}

.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #111;
    border: 1px solid #333;
    border-radius: var(--radius);
    list-style: none;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: 0.2s;
    box-shadow: var(--shadow);
}

.has-dropdown:hover .sub-menu,
.has-dropdown:focus-within .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sub-menu .nav-link {
    padding: 10px 16px;
    white-space: nowrap;
}

.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #00FF00;
    color: #000;
    padding: 10px 20px;
    border-radius: var(--radius);
    font-weight: 600;
    transition: background 0.2s;
}

.header-cta:hover {
    background: #00CC00;
    text-decoration: none;
    color: #000;
}

/* ===== Hero ===== */
.hero {
    background: linear-gradient(135deg, #f0f9f4 0%, #e0f2e9 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.hero .container {
    position: relative;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    z-index: 1;
    pointer-events: none;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
    color: var(--color-text);
    margin-bottom: 24px;
}

.hero-title .highlight {
    color: var(--color-primary);
    position: relative;
}

.hero-features {
    margin-bottom: 32px;
}

.checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-text);
    font-size: 1.05rem;
}

.checklist svg {
    color: var(--color-primary);
    flex-shrink: 0;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-form-card {
    background: #fff;
    padding: 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-hover);
}

.hero-form-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--color-text);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(11, 122, 62, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* ===== Service Areas ===== */
.service-areas {
    background: #fff;
    padding: 48px 0;
    border-bottom: 1px solid var(--color-border);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
}

.area-col {
    grid-column: span 1;
    padding: 16px;
}

.area-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.area-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--color-text-light);
}

.area-list svg {
    color: var(--color-primary);
    flex-shrink: 0;
}

/* ===== Gallery ===== */
.gallery-strip {
    padding: 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.gallery-item {
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* ===== About ===== */
.about-intro {
    background: #fff;
    padding: 64px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.about-text h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--color-text);
}

.about-text p {
    color: var(--color-text-light);
    margin-bottom: 16px;
    font-size: 1.05rem;
}

.about-text .checklist {
    margin: 24px 0;
}

.about-text .btn {
    margin-top: 16px;
    margin-right: 12px;
}

/* ===== Emergency Banner ===== */
.emergency-banner {
    background: #FF0000;
    color: #fff;
    padding: 12px 0;
    text-align: center;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin: 0;
}

.emergency-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-align: center;
}

.emergency-inner h2 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
}

.emergency-inner p {
    font-size: 1rem;
    margin: 0;
}

/* ===== Service Cards ===== */
.service-cards {
    background: var(--color-bg-alt);
    padding: 64px 0;
}

.service-cards h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: box-shadow 0.3s, transform 0.3s;
    text-align: center;
    padding: 24px;
}

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

.card-image img {
    width: 128px;
    height: 128px;
    object-fit: contain;
    margin: 0 auto 20px;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 16px;
    color: var(--color-text);
}

.card-list {
    list-style: none;
    text-align: left;
}

.card-list li {
    padding: 6px 0;
    color: var(--color-text-light);
    font-size: 0.95rem;
    position: relative;
    padding-left: 20px;
}

.card-list li::before {
    content: "•";
    color: var(--color-primary);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* ===== Why Us ===== */
.why-us {
    background: #fff;
    padding: 64px 0;
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.why-us-image img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    width: 100%;
    max-width: 600px;
}

.why-us-content h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 20px;
}

.why-us-content p {
    color: var(--color-text-light);
    margin-bottom: 16px;
}

/* ===== Reviews ===== */
.reviews {
    background: var(--color-bg-alt);
    padding: 64px 0;
}

.reviews h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 32px;
}

.reviews-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.review-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.reviewer-info strong {
    display: block;
    font-size: 1.05rem;
}

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

.stars {
    color: #f7b500;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.review-body p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===== Services Grid ===== */
.services-grid-section {
    background: #fff;
    padding: 64px 0;
}

.services-grid-section h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-grid-item {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: box-shadow 0.3s, transform 0.3s;
    text-align: center;
}

.service-grid-item:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
    text-decoration: none;
}

.service-grid-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-grid-item h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    padding: 16px;
    color: var(--color-text);
}

/* ===== CTA ===== */
.cta-section {
    background: linear-gradient(135deg, #f0f9f4 0%, #e0f2e9 100%);
    padding: 64px 0;
    text-align: center;
}

.cta-section h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 24px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== FAQ ===== */
.faq-section {
    background: #fff;
    padding: 64px 0;
}

.faq-section h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 12px;
}

.faq-intro {
    text-align: center;
    color: var(--color-text-light);
    margin-bottom: 32px;
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
}

.accordion-trigger {
    width: 100%;
    background: #fff;
    border: none;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 600;
    font-family: inherit;
    color: var(--color-text);
    text-align: left;
    transition: background 0.2s;
}

.accordion-trigger:hover {
    background: var(--color-bg-alt);
}

.accordion-trigger[aria-expanded="true"] {
    background: var(--color-primary-light);
    color: var(--color-primary-dark);
}

.accordion-icon {
    transition: transform 0.3s;
    color: var(--color-primary);
}

.accordion-trigger[aria-expanded="true"] .accordion-icon {
    transform: rotate(180deg);
}

.accordion-panel {
    padding: 0 24px 20px;
    color: var(--color-text-light);
    line-height: 1.7;
}

.accordion-panel[hidden] {
    display: none;
}

/* ===== Contact ===== */
.contact-section {
    background: var(--color-bg-alt);
    padding: 64px 0;
}

.contact-section h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    max-width: 900px;
    margin: 0 auto;
}

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

.contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--color-text-light);
}

.contact-list svg {
    color: var(--color-primary);
    flex-shrink: 0;
    margin-top: 2px;
}

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

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

.contact-form-wrapper {
    background: #fff;
    padding: 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--color-text-light);
    margin-bottom: 24px;
}

.info-card {
    background: #fff;
    padding: 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 16px;
}

.info-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--color-text);
}

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

.info-card a {
    color: var(--color-primary);
    font-weight: 600;
}

/* ===== Footer ===== */
.site-footer {
    background: #1a1a1a;
    color: #ccc;
    padding: 48px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 48px;
    align-items: start;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    color: #ccc;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #fff;
    text-decoration: none;
}

.footer-logo img {
    height: 100px;
    width: auto;
}

.footer-contact .contact-list {
    gap: 12px;
}

.footer-contact .contact-list a {
    color: #ccc;
}

.footer-contact .contact-list svg {
    color: var(--color-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    margin-top: 32px;
    border-top: 1px solid #333;
    font-size: 0.9rem;
}

/* ===== Floating Call Now Button ===== */
.call-now-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #008A00;
    color: #fff;
    padding: 12px 20px;
    border-radius: 50px;
    display: none;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 999;
    transition: transform 0.2s;
}

.call-now-button:hover {
    transform: scale(1.05);
    text-decoration: none;
    color: #fff;
}

.call-now-button svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .call-now-button {
        display: inline-flex;
    }
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
    }
    
    .hero-form-wrapper {
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }
    
    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-us-grid {
        grid-template-columns: 1fr;
    }
    
    .why-us-image {
        order: -1;
        text-align: center;
    }
    
    .why-us-image img {
        max-width: 100%;
    }
    
    .cards-grid,
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .header-inner {
        height: auto;
        padding: 16px 0;
        flex-wrap: wrap;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .main-nav {
        order: 3;
        width: 100%;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 0;
        display: none;
        width: 100%;
        background: #111;
    }
    
    .nav-menu.is-open {
        display: flex;
    }
    
    .nav-link {
        padding: 12px 16px;
        border-bottom: 1px solid #333;
        color: #fff;
    }
    
    .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: #1a1a1a;
        display: none;
    }
    
    .has-dropdown.is-open .sub-menu {
        display: block;
    }
    
    .header-cta {
        display: none;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .areas-grid,
    .gallery-grid,
    .cards-grid,
    .services-grid,
    .reviews-slider {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .about-text .btn {
        width: auto;
    }
}

/* ===== Chat Widget ===== */

/* Floating toggle button */
.chat-toggle {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #1a1a1a;
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    z-index: 9999;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.chat-toggle:hover {
    transform: scale(1.05);
}

.chat-toggle svg {
    width: 26px;
    height: 26px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Hide toggle when chat is open */
body.chat-open .chat-toggle {
    opacity: 0;
    transform: scale(0.6);
    pointer-events: none;
    visibility: hidden;
}

/* Chat window */
.chat-widget {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: min(380px, calc(100vw - 40px));
    height: min(560px, calc(100vh - 40px));
    background: #0a0a0a;
    color: #fafafa;
    border-radius: 14px;
    border: 1px solid #2a2a2a;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px) scale(0.92);
    pointer-events: none;
    visibility: hidden;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0.3s;
}

/* Chat open state */
body.chat-open .chat-widget {
    opacity: 1;
    transform: none;
    pointer-events: auto;
    visibility: visible;
}

/* Chat header */
.chat-header {
    background: var(--color-primary, #0b7a3e);
    color: #fff;
    padding: 0.85rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}

.chat-header-title {
    font-weight: 600;
    font-size: 1rem;
    font-family: var(--font-body);
}

.chat-close {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    font-size: 1.25rem;
}

.chat-close:hover {
    opacity: 0.8;
}

/* Chat messages area */
.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    scroll-behavior: smooth;
}

.chat-messages::-webkit-scrollbar {
    width: 5px;
}

.chat-messages::-webkit-scrollbar-track {
    background: transparent;
}

.chat-messages::-webkit-scrollbar-thumb {
    background: #444;
    border-radius: 10px;
}

.chat-messages::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Message bubbles */
.chat-bubble {
    max-width: 85%;
    padding: 0.55rem 0.8rem;
    font-size: 0.9rem;
    line-height: 1.45;
    border-radius: 12px 12px 12px 3px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.chat-bubble--bot {
    align-self: flex-start;
    background: #1a1a1a;
    color: #e0e0e0;
}

.chat-bubble--user {
    align-self: flex-end;
    background: var(--color-primary, #0b7a3e);
    color: #fff;
    border-radius: 12px 12px 3px 12px;
}

/* Verify notice */
.chat-verify-notice {
    background: #1a1a1a;
    color: #c8a45a;
    border-radius: 12px;
    padding: 0.55rem 0.8rem;
    font-size: 0.8rem;
    margin: 0 12px 8px;
    align-self: stretch;
    text-align: center;
}

/* Chat input form */
.chat-input-form {
    display: flex;
    gap: 8px;
    padding: 12px;
    border-top: 1px solid #2a2a2a;
    flex-shrink: 0;
}

.chat-input {
    flex: 1;
    padding: 0.6rem 0.8rem;
    border-radius: 9px;
    border: 1px solid #333;
    background: #1a1a1a;
    color: #fafafa;
    font-size: 0.9rem;
    font-family: var(--font-body);
    resize: none;
    min-height: 40px;
    max-height: 100px;
    line-height: 1.45;
}

.chat-input:focus {
    outline: none;
    border-color: var(--color-primary, #0b7a3e);
}

.chat-send-btn {
    width: 42px;
    height: 42px;
    border-radius: 9px;
    border: none;
    background: var(--color-primary, #0b7a3e);
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s;
}

.chat-send-btn:hover {
    background: var(--color-primary-dark, #085c2e);
}

.chat-send-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* Mobile adjustments */
@media (max-width: 480px) {
    .chat-toggle {
        bottom: 90px;
        right: 16px;
        width: 50px;
        height: 50px;
    }

    .chat-widget {
        bottom: 0;
        right: 0;
        width: 100vw;
        height: 100vh;
        max-height: 100vh;
        border-radius: 0;
    }

    body.chat-open .chat-widget {
        border-radius: 0;
    }
}


/* Chat verify notice */
.chat-verify-notice {
    background: #1a1a1a;
    color: #c8a45a;
    border-radius: 12px;
    padding: 0.55rem 0.8rem;
    font-size: 0.8rem;
    margin: 0 12px 8px;
    align-self: stretch;
    text-align: center;
}

/* Turnstile container */
.chat-turnstile-container {
    padding: 12px;
    margin: 0 12px 8px;
}

/* Typing indicator */
.chat-typing {
    align-self: flex-start;
    background: #1a1a1a;
    color: #888;
    border-radius: 12px 12px 12px 3px;
    padding: 0.55rem 0.8rem;
    font-size: 0.9rem;
    font-style: italic;
    animation: chat-pulse 1.5s infinite;
}

@keyframes chat-pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}