/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2563eb;
    --secondary-color: #64748b;
    --accent-color: #f59e0b;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --warning-color: #f59e0b;
    --dark-color: #1e293b;
    --light-color: #f8fafc;
    --white: #ffffff;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #2a2a2a;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--white);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

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

.btn-primary:hover {
    background-color: #1d4ed8;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

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

.btn-secondary:hover {
    background-color: #475569;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
/*    color: var(--white);*/
    color: #fff;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark-color);
    color: var(--white);
    padding: 1rem;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 1rem;
}

.cookie-buttons {
    display: flex;
    gap: 0.5rem;
}

/* Header */
.header {
    background-color: #fff;
    border-bottom: 1px solid var(--gray-200);
/*    position: fixed;*/
    z-index: 100;

    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: var(--shadow-md);
}

/*.header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: var(--shadow-md);
}*/

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    gap: 2rem;
}

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

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

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav a {
    text-decoration: none;
/*    color: var(--gray-700);*/
    color: #2a2a2a;
    font-weight: 500;
    transition: color 0.2s ease;
}

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

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    display: block;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--gray-100);
}

.dropdown-menu a:hover {
    background-color: var(--gray-50);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.language-switcher {
    display: flex;
    gap: 0.25rem;
}

.lang-btn {
    padding: 0.5rem;
    border: none;
    background: transparent;
    cursor: pointer;
    border-radius: var(--border-radius);
    transition: background-color 0.2s ease;
}

.lang-btn:hover,
.lang-btn.active {
/*    background-color: var(--gray-100);*/
    background-color: var(--secondary-color);
    color: #fff;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-info a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
/*    color: var(--gray-700);*/
    color: #2a2a2a;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

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

.header-buttons {
    display: flex;
    gap: 0.5rem;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--gray-700);
    transition: all 0.3s ease;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--white);
    z-index: 200;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.mobile-nav.active {
    transform: translateX(0);
}

.mobile-nav-content {
    padding: 2rem;
}

.mobile-nav ul {
    list-style: none;
}

.mobile-nav li {
    margin-bottom: 1rem;
}

.mobile-nav a {
    display: block;
    padding: 1rem 0;
    text-decoration: none;
    color: var(--gray-700);
    font-size: 1.125rem;
    font-weight: 500;
    border-bottom: 1px solid var(--gray-200);
}

/* Hero Section */
/* Hero Section */
.hero {
    position: relative;
    padding: 6rem 0 4rem;
    margin-top: 80px;
    overflow: hidden;
}

/* Фоновий псевдоелемент */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 120%; /* фон трохи ширший для руху */
    height: 100%;
    background-image: url("/images/bg_image.png");
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    transition: background-position 0.5s ease;
    z-index: -1; /* фон під контентом */
}

/* Анімація при наведенні */
.hero:hover::before {
    background-position: calc(100% - 20px) center; /* рух фону на 20px з права наліво */
}



.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #2563eb;
/*    text-shadow: 0 0 5px rgba(0,0,0,0.8);*/
    backdrop-filter: blur(3px);
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 5px;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: #2563eb;
/*    text-shadow: 0 0 8px rgba(0,0,0,0.8);*/
    backdrop-filter: blur(3px);
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 5px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.trust-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}



.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    /*color: #2a2a2a;*/
    font-size: 0.875rem;

    backdrop-filter: blur(3px);
    background-color: rgba(255, 255, 255, 0.3);
    color: black;
    padding: 1em;
    border-radius: 8px;
}

.badge i {
    color: var(--primary-color);
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
}

/* Sections */
section {
    padding: 4rem 0;
}

.section-header {
    text-align: center;
/*    margin-bottom: 3rem;*/
}

.section-header h2 {
    font-size: 2.5rem;
/*    color: var(--dark-color);*/
    color: #2a2a2a;
    margin-bottom: 0.1rem;
}

.section-header p {
    font-size: 1.125rem;
/*    color: var(--gray-600);*/
    color: #2a2a2a;
    max-width: 600px;
    margin: 0 auto;
}

.section-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Services */
.services-overview {
/*    background-color: var(--gray-50);*/
    background-color: #fff;
}

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

.service-card {
/*    background-color: var(--white);*/
    background-color: #fff;
    padding: 1.2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

.service-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
/*    color: var(--white);*/
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
/*    color: var(--dark-color);*/
    color: #2a2a2a;
    margin-bottom: 1rem;
}

.service-card p {
    color: #595959;
/*    color: var(--gray-600);*/
/*    margin-bottom: 1.1rem;*/
}

.modal-content p {
    color: #595959;
}

.service-card ul {
    list-style: none;
    margin-bottom: 1rem;
}

.modal-ul-list {
    list-style: none;
}

.modal-ul-list li {
    position: relative;
    padding-left: 20px;
}

.modal-ul-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
}

.service-card li {
    padding: 0.1rem 0;
/*    color: var(--gray-600);*/
    color: #737373;
    position: relative;
    padding-left: 1.5rem;
}

.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Pricing */
.pricing-teaser {
/*    background-color: var(--white);*/
    background-color: #fff;
}

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

.pricing-card {
/*    background-color: var(--white);*/
    background-color: #fff;
    border: 2px solid #cccccc;
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
/*    color: var(--white);*/
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-size: 0.875rem;
    font-weight: 500;
}

.pricing-header h3 {
    font-size: 1.5rem;
/*    color: var(--dark-color);*/
    color: #2a2a2a;
    margin-bottom: 0.5rem;
}

.pricing-header p {
/*    color: var(--gray-600);*/
    color: #595959;
    margin-bottom: 1.5rem;
}

.pricing-price {
    margin-bottom: 2rem;
}

.pricing-price .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.pricing-price .currency {
    font-size: 1rem;
/*    color: var(--gray-600);*/
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-100);
/*    color: var(--gray-700);*/
    color: #737373;
}

.pricing-features li:last-child {
    border-bottom: none;
}

/* Why Choose Us */
.why-choose-us {
/*    background-color: var(--gray-50);*/
    background-color: #fff;
}

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

.advantage-card {
/*    background-color: var(--white);*/
    background-color: #fff;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
/*    color: var(--white);*/
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.advantage-card h3 {
/*    color: var(--dark-color);*/
    color: #2a2a2a;
    margin-bottom: 1rem;
}

.advantage-card p {
/*    color: var(--gray-600);*/
    color: #595959;
}

/* Reviews */
.reviews {
/*    background-color: var(--white); */
    background-color: #fff;
}

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

.review-card {
/*    background-color: var(--gray-50);*/
    background-color: #fff;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
}

.review-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.review-rating i {
    color: var(--warning-color);
}

.review-text {
    font-style: italic;
/*    color: var(--gray-700);*/
    color: #2a2a2a;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.review-author strong {
    color: var(--dark-color);
    display: block;
    margin-bottom: 0.25rem;
}

.review-author span {
/*    color: var(--gray-600);*/
    color: #595959;
    font-size: 0.875rem;
}

/* FAQ */
.faq {
/*    background-color: var(--gray-50);*/
    background-color: #fff;
}

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

.faq-item {
/*    background-color: var(--white);*/
    background-color: #fff;
    border-radius: var(--border-radius-lg);
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.faq-question:hover {
/*    background-color: var(--gray-50);*/
    background-color: #f2f2f2;
}

.faq-question h3 {
/*    color: var(--dark-color);*/
    color: #2a2a2a;
    margin: 0;
    font-size: 1.125rem;
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.2s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 245px;
}

.faq-answer p {
/*    color: var(--gray-600);*/
    color: #595959;
    margin: 0;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1d4ed8 100%);
    color: var(--white);
}

.cta-content {
    text-align: center;
}

.cta-content h2 {
/*    color: var(--white);*/
    color: #fff;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    color: #fff;
}

.cta-form {
/*    background-color: var(--white);*/
    background-color: #fff;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-form h3 {
/*    color: var(--dark-color);*/
    color: #2a2a2a;
    margin-bottom: 1.5rem;
}

.quick-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.quick-form input,
.quick-form select,
.quick-form textarea {
    padding: 0.75rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: border-color 0.2s ease;
    width: 100%;
}

.quick-form input:focus,
.quick-form select:focus,
.quick-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.quick-form textarea {
    grid-column: 1 / -1;
    resize: vertical;
    min-height: 100px;
}

.form-consent {
    margin-bottom: 1.5rem;
}

.form-consent label {
   /* display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #595959;
    font-size: 0.875rem;
    cursor: pointer;*/

    display: flex;
    align-items: center;
    justify-content: center;
    color: #595959;
    gap: 8px;
    cursor: pointer;
}

.form-consent label input[type="checkbox"] {
    margin: 0;
    width: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 3rem 0 1rem;
}

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

.footer-section h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

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

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--gray-300);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-section a:hover {
    color: var(--white);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

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

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--gray-700);
    color: var(--white);
    border-radius: 50%;
    transition: background-color 0.2s ease;
}

.social-links a:hover {
    background-color: var(--primary-color);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.contact-item i {
    color: var(--primary-color);
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid var(--gray-700);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: var(--gray-300);
    text-decoration: none;
    font-size: 0.875rem;
}

.footer-legal a:hover {
    color: var(--white);
}

.footer-copyright {
    color: var(--gray-400);
    font-size: 0.875rem;
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
/*    background-color: var(--white);*/
    background-color: #fff;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    width: 90%;
    max-width: 500px;
    max-height: calc(100vh - 4rem);
    overflow-y: auto;
    position: relative;
    animation: slideIn 0.3s ease;
}

.modal-content h2 {
    color: #2a2a2a;
}

.close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gray-500);
    transition: color 0.2s ease;
}

.close:hover {
    color: var(--gray-800);
}

.modal-form {
    margin-top: 1rem;
}

.modal-form input,
.modal-form select,
.modal-form textarea {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

.modal-form input:focus,
.modal-form select:focus,
.modal-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.modal-form textarea {
    resize: vertical;
    min-height: 100px;
}

/* Mobile Action Bar */
.mobile-action-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    border-top: 1px solid var(--gray-200);
    padding: 1rem;
    z-index: 100;
}

.mobile-action-bar {
    display: flex;
    justify-content: space-around;
}

.action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem;
    background: none;
    border: none;
/*    color: var(--gray-600);*/
    color: #2a2a2a;
    text-decoration: none;
    font-size: 0.75rem;
    transition: color 0.2s ease;
}

.action-btn:hover {
    color: var(--primary-color);
}

.action-btn i {
    font-size: 1.25rem;
}

/* Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 350px;
    height: 500px;
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
    display: none;
    flex-direction: column;
    z-index: 1000;
}

.chat-widget.show {
    display: flex;
}

.chat-header {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1rem;
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header h4 {
    margin: 0;
    font-size: 1rem;
}

.chat-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

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

.chat-message {
    max-width: 80%;
    padding: 0.75rem;
    border-radius: var(--border-radius);
    word-wrap: break-word;
}

.bot-message {
    background-color: var(--gray-100);
    color: var(--gray-800);
    align-self: flex-start;
}

.user-message {
    background-color: var(--primary-color);
    color: var(--white);
    align-self: flex-end;
}

.chat-input {
    padding: 1rem;
    border-top: 1px solid var(--gray-200);
    display: flex;
    gap: 0.5rem;
}

.chat-input input {
    flex: 1;
    padding: 0.5rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--border-radius);
    font-size: 0.875rem;
}

.chat-input button {
    padding: 0.5rem 1rem;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-size: 0.875rem;
}

.chat-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
/*    color: var(--white);*/
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: all 0.3s ease;
}

.chat-toggle:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 2rem; }

.hidden { display: none; }
.visible { display: block; }


.mrg-bottom-3rem {
    margin-bottom: 3rem;
}

.mrg-bottom-1rem {
    margin-bottom: 1rem;
}

.mrg-top-4rem {
    margin-top: 4rem;
}

.modal-ul-list {
    color: #595959;
}

.text-about {
    color: #595959;
}

.color-dark {
    color: #595959;
}

/* модалка - карта побиту  */
.modal-karta-pobytu .modal-content {
    width: min(900px, 100%);
    max-width: 100%;
    max-height: calc(100vh - 4rem);
    overflow-y: auto;
    color: #2a2a2a;
}

.modal-karta-pobytu p {
    margin-bottom: 0;
}

.modal-karta-pobytu ul {
    list-style: none;
    padding-left: 1.2em;
}

.modal-karta-pobytu ul li::before {
  content: "-";
  margin-right: 0.5em;
}


.modal-karta-pobytu h4 {
    margin-bottom: 5px;
    margin-top: 1rem;
}

.color-blue {
    color: #2563eb;
}

.bold-text {
    font-weight: 800;
}

.text-high {
    margin-top: 15px;
    font-size: 1.3rem;
}

.text-bold {
    font-weight: 800;
}