/* --- Variables & Themes --- */
:root {
    /* Colors */
    --orange: #FF8C42;
    --orange-dark: #D43900;
    --blue: #2B5F9E;
    --light-gray: #f8f9fa;
    --dark: #1a1a1a;
    --text-color: #333;
    --bg-color: #ffffff;
    --card-bg: rgba(255, 255, 255, 0.7);
    --header-bg: rgba(255, 255, 255, 0.8);
    --border-color: rgba(255, 255, 255, 0.4);
    --shadow-color: rgba(0, 0, 0, 0.05);
    --modal-bg: rgba(255, 255, 255, 0.9);

    /* Gradients */
    --hero-gradient: linear-gradient(135deg, var(--blue) 0%, #1a4570 100%);
    --card-gradient: linear-gradient(135deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.1));
}

[data-theme="dark"] {
    --text-color: #e0e0e0;
    --bg-color: #121212;
    --card-bg: rgba(30, 30, 30, 0.6);
    --light-gray: #0f0f0f;
    --header-bg: rgba(18, 18, 18, 0.8);
    --border-color: rgba(255, 255, 255, 0.08);
    --shadow-color: rgba(0, 0, 0, 0.4);
    --modal-bg: rgba(30, 30, 30, 0.9);

    --hero-gradient: linear-gradient(135deg, #0d2b4a 0%, #081624 100%);
    --card-gradient: linear-gradient(145deg, rgba(40, 40, 40, 0.6), rgba(30, 30, 30, 0.4));
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--orange-dark);
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 9999;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
}

a:focus,
button:focus,
input:focus {
    outline: 3px solid var(--blue);
    outline-offset: 2px;
}

/* --- Header & Glassmorphism --- */
header {
    background: var(--header-bg);
    padding: 1rem 2%;
    box-shadow: 0 4px 30px var(--shadow-color);
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-container img {
    height: 50px;
    width: auto;
    max-width: 50px;
    object-fit: contain;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--text-color);
}

nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

nav a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    padding: 0.5rem 0;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--orange);
    transition: width 0.3s;
}

nav a:hover::after {
    width: 100%;
}

nav a:hover {
    color: var(--blue);
}

/* --- iOS Theme Switch --- */
.theme-switch {
    position: relative;
    display: inline-block;
    width: 42px;
    height: 24px;
    margin-left: 0.5rem;
}

.theme-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
    z-index: 2;
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

input:checked+.slider {
    background-color: var(--blue);
}

input:focus+.slider {
    box-shadow: 0 0 1px var(--blue);
}

input:checked+.slider:before {
    -webkit-transform: translateX(18px);
    -ms-transform: translateX(18px);
    transform: translateX(18px);
}

/* Icons inside slider */
.slider:after {
    content: '☀️';
    position: absolute;
    right: 5px;
    font-size: 11px;
    line-height: 24px;
    color: white;
}

input:checked+.slider:after {
    content: '🌙';
    left: 5px;
    right: auto;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-color);
}

/* --- Hero Section & Particles --- */
.hero {
    background: var(--hero-gradient);
    color: white;
    /* Always white text on dark gradient */
    padding: 8rem 5% 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

#particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Typewriter Effect */
.typewriter {
    border-right: 3px solid var(--orange);
    white-space: nowrap;
    overflow: hidden;
    display: inline-block;
    animation: blink-caret 0.75s step-end infinite;
}

@keyframes blink-caret {

    from,
    to {
        border-color: transparent
    }

    50% {
        border-color: var(--orange)
    }
}

.hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    opacity: 0.95;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.cta-button {
    display: inline-block;
    background: var(--orange-dark);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 15px rgba(212, 57, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 57, 0, 0.4);
}

/* --- Sections & Cards --- */
section {
    padding: 5rem 5%;
}

.section-light {
    background: var(--light-gray);
}

.section-white {
    background: var(--bg-color);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--card-bg);
    background-image: var(--card-gradient);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 var(--shadow-color);
    transition: transform 0.1s, box-shadow 0.3s;
    border: 1px solid var(--border-color);
}

.service-card:hover {
    /* Transform handled by JS for tilt */
    box-shadow: 0 15px 30px var(--shadow-color);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--orange), var(--blue));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--blue);
}

[data-theme="dark"] .service-card h3 {
    color: var(--orange);
}

.service-card p {
    color: var(--text-color);
    line-height: 1.7;
    opacity: 0.85;
}

/* --- Pricing --- */
.pricing-container {
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-section {
    margin-bottom: 3rem;
}

.pricing-section h3 {
    font-size: 1.8rem;
    color: var(--blue);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--orange);
}

[data-theme="dark"] .pricing-section h3 {
    color: var(--orange);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.price-item {
    background: var(--card-bg);
    background-image: var(--card-gradient);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px var(--shadow-color);
    border: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    /* flex-wrap: wrap; Removed */
    transition: box-shadow 0.3s, border-color 0.3s, transform 0.2s;
    position: relative;
    cursor: help;
}

.price-item:hover {
    box-shadow: 0 4px 12px var(--shadow-color);
    border-color: var(--orange);
    transform: translateY(-2px);
}

.price-item:hover .price-tooltip,
.price-item:focus .price-tooltip {
    opacity: 1;
    visibility: visible;
}

.price-tooltip {
    position: absolute;
    bottom: 110%;
    left: 0;
    right: 0;
    background: #333;
    color: white;
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    line-height: 1.5;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s, bottom 0.3s;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.price-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 20px;
    border: 8px solid transparent;
    border-top-color: #333;
}

.price-item-name {
    font-weight: 600;
    color: var(--text-color);
    flex: 1;
    min-width: 0;
    padding-right: 0.5rem;
}

.price-item-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--orange-dark);
    margin-left: 0;
    white-space: nowrap;
    flex-shrink: 0;
}

[data-theme="dark"] .price-item-price {
    color: var(--orange);
}

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

.rate-card {
    background: var(--card-bg);
    background-image: var(--card-gradient);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px var(--shadow-color);
    border: 1px solid var(--border-color);
}

.rate-card h3 {
    font-size: 1.4rem;
    color: var(--blue);
    margin-bottom: 1rem;
}

[data-theme="dark"] .rate-card h3 {
    color: var(--orange);
}

.rate-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--orange-dark);
    margin: 1rem 0;
}

[data-theme="dark"] .rate-price {
    color: var(--orange);
}

.pricing-note {
    background: rgba(255, 140, 66, 0.1);
    border-left: 4px solid var(--orange);
    padding: 1.2rem;
    margin: 2rem 0;
    border-radius: 4px;
}

.pricing-note p {
    color: var(--text-color);
    margin: 0;
    line-height: 1.6;
}

/* --- Why Us & References --- */
.why-us-content {
    max-width: 900px;
    margin: 0 auto;
}

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

.why-card {
    text-align: center;
    padding: 1.5rem;
}

.why-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.why-card:hover .why-icon {
    transform: scale(1.2) rotate(5deg);
}

.why-card h3 {
    font-size: 1.3rem;
    color: var(--blue);
    margin-bottom: 0.8rem;
}

[data-theme="dark"] .why-card h3 {
    color: var(--orange);
}

.why-card p {
    color: var(--text-color);
    opacity: 0.8;
}

.references-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 2rem auto;
}

.reference-card {
    background: var(--card-bg);
    background-image: var(--card-gradient);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px var(--shadow-color);
    border-left: 4px solid var(--orange);
    border: 1px solid var(--border-color);
    /* Add border for dark mode pop */
    border-left-width: 4px;
}

.reference-card h3 {
    font-size: 1.5rem;
    color: var(--blue);
    margin-bottom: 1rem;
}

[data-theme="dark"] .reference-card h3 {
    color: var(--orange);
}

.reference-card p {
    color: var(--text-color);
    line-height: 1.7;
    opacity: 0.9;
}

/* --- Contact --- */
.contact-content {
    max-width: 800px;
    margin: 0 auto;
}

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

.contact-card {
    background: var(--light-gray);
    /* Uses var */
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: transform 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-card h3 {
    font-size: 1.2rem;
    color: var(--blue);
    margin-bottom: 0.5rem;
}

[data-theme="dark"] .contact-card h3 {
    color: var(--orange);
}

.contact-card a {
    color: var(--orange-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

[data-theme="dark"] .contact-card a {
    color: var(--orange);
}

.contact-card a:hover {
    text-decoration: underline;
}

/* --- Certifications Box --- */
.cert-box-container {
    background: var(--card-bg);
    background-image: var(--card-gradient);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 3rem 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px var(--shadow-color);
    border: 1px solid var(--border-color);
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    /* overflow: hidden; Removed to allow tooltip popup */
}

.cert-box-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--blue-primary), var(--orange));
}

/* --- Cert Tooltip --- */
.cert-card {
    position: relative;
}

.cert-card:hover .cert-tooltip,
.cert-card:focus .cert-tooltip {
    opacity: 1;
    visibility: visible;
    bottom: 115%;
}

.cert-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 220px;
    background: #333;
    color: white;
    padding: 0.8rem;
    border-radius: 8px;
    font-size: 0.85rem;
    line-height: 1.4;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 20;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    pointer-events: none;
    text-align: center;
}

.cert-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-top-color: #333;
}

/* --- Footer --- */
footer {
    background: #111;
    /* Always dark for footer */
    color: white;
    padding: 3rem 5% 2rem;
    border-top: 1px solid #333;
}

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

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

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.8;
    text-decoration: none;
}

.footer-section a:hover {
    color: white;
    text-decoration: underline;
}

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

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-color);
        flex-direction: column;
        padding: 1rem 5%;
        box-shadow: 0 4px 6px var(--shadow-color);
        border-bottom: 1px solid var(--border-color);
    }

    [data-theme="dark"] nav {
        background: #1e1e1e;
    }

    nav a {
        padding: 0.125rem 0;
        width: 100%;
        text-align: center;
    }

    nav.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

    .theme-toggle {
        margin-right: 1rem;
        /* Separate from hamburger */
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .typewriter {
        white-space: normal;
        border-right: none;
        animation: none;
        display: block;
        /* Ensure it takes full width if needed */
    }


}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 50px;
    /* Offset for sticky header */
}

/* Animations */
.fade-in-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, visibility;
}

.fade-in-section.visible {
    opacity: 1;
    transform: none;
}

/* Modal for Legal Content */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    backdrop-filter: blur(5px);
}

.modal-content {
    background: var(--modal-bg);
    color: var(--text-color);
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    animation: modalSlideIn 0.3s ease-out;
    border: 1px solid var(--border-color);
}

#modal-body {
    overflow-y: auto;
    padding: 2rem;
    -webkit-overflow-scrolling: touch;
}

#close-modal {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-color);
    cursor: pointer;
    line-height: 1;
    z-index: 10;
    transition: color 0.2s;
    opacity: 0.7;
}

#close-modal:hover {
    color: var(--orange);
    opacity: 1;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Back to Top Button */
#back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--blue);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    display: none;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s, background 0.3s, opacity 0.3s;
    z-index: 99;
}

#back-to-top:hover {
    background: var(--orange-dark);
    transform: translateY(-5px);
}

#back-to-top.visible {
    display: flex;
    animation: fadeInUp 0.4s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Chat 404 Styles --- */
.chat-container {
    width: 90%;
    max-width: 400px;
    height: 500px;
    display: flex;
    flex-direction: column;
    padding: 0 !important;
    /* Override glass-card padding */
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    background: rgba(15, 23, 42, 0.85);
    /* Dark, high opacity background */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 10;
}

.chat-header {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.agent-avatar {
    width: 40px;
    height: 40px;
    background: var(--blue-primary, var(--blue));
    /* Fallback for conformo/nastavime diffs */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.agent-info h3 {
    margin: 0;
    font-size: 1rem;
    color: #ffffff;
    /* Force white for contrast */
}

.status-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #00cc88;
    border-radius: 50%;
    margin-right: 4px;
}

.agent-info {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    /* Lighter white */
    opacity: 1;
}

.chat-body {
    flex: 1;
    padding: 1.5rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chat-message {
    padding: 10px 15px;
    border-radius: 15px;
    max-width: 85%;
    font-size: 0.95rem;
    line-height: 1.4;
    position: relative;
    animation: popIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.bot-message {
    background: rgba(255, 255, 255, 0.8);
    color: #333;
    border-bottom-left-radius: 2px;
    align-self: flex-start;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

[data-theme="dark"] .bot-message {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

@keyframes popIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.typing-indicator span {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #aaa;
    border-radius: 50%;
    margin: 0 2px;
    animation: typing 1.4s infinite;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

.chat-footer {
    padding: 1rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
}

.teleport-btn {
    display: inline-block;
    background: var(--orange, var(--green-accent));
    /* Adapt to site color */
    color: white;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: bold;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.teleport-btn.visible {
    opacity: 1;
    transform: translateY(0);
}

.teleport-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    color: white;
}
/* Mobile Chat Tweaks */
@media (max-width: 480px) {
    .chat-container {
        width: 95%;
        height: 80vh;
        max-height: 600px;
    }
}
