/* EcoPicnic Main Styles */

/* ========================================
   ANIMATION DISABLING & FORCED VISIBILITY
   ======================================== */

/* Force visibility for all elements - preventing animation-related hiding */
* {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    animation-duration: 0s !important;
    animation-delay: 0s !important;
    transition-duration: 0s !important;
    transition-delay: 0s !important;
}

/* Gallery images forced visibility */
#gallery img,
.gallery img,
.gallery-item img,
img[data-sal],
[data-sal] img {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

/* Ensure all potential SAL-animated elements are visible */
.feature-card,
.service-card,
.pricing-card,
.team-member,
.review-card,
.case-study-card,
.process-step,
.faq-card,
.card,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-6 {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

/* Global animation override */
*,
*::before,
*::after {
    animation-duration: 0s !important;
    animation-delay: 0s !important;
    transition-duration: 0s !important;
    transition-delay: 0s !important;
}

/* Mobile responsive visibility */
@media (max-width: 768px) {
    * {
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
    }
}

/* CSS Variables - Eco-Friendly Color Palette */
:root {
    /* Primary Colors */
    --eco-green: #4a7c59;
    --eco-sage: #87a96b;
    --eco-earth: #8b7355;
    --eco-sky: #7fb3d3;
    --eco-cream: #f5f3e7;
    
    /* Light Shades */
    --eco-green-light: #6b9678;
    --eco-sage-light: #a5c088;
    --eco-earth-light: #a89072;
    --eco-sky-light: #9cc5de;
    --eco-cream-light: #fafaf7;
    
    /* Dark Shades */
    --eco-green-dark: #3a5f47;
    --eco-sage-dark: #6b8554;
    --eco-earth-dark: #6d5a43;
    --eco-sky-dark: #5f93b3;
    --eco-cream-dark: #e8e5d7;
    
    /* Typography */
    --font-size-base: 1rem;
    --font-size-small: 0.875rem;
    --font-size-large: 1.125rem;
    --line-height-base: 1.6;
    
    /* Spacing */
    --section-padding: 5rem 0;
    --element-margin: 1.5rem;
}

/* Base Typography - Conservative Sizing */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: #333;
    overflow-x: hidden;
}

/* Conservative Heading Sizes */
.navbar-brand {
    font-size: 1.25rem !important;
    font-weight: 600;
    color: var(--eco-green) !important;
}

h1, .h1 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--eco-green-dark);
}

h2, .h2 {
    font-size: 1.875rem;
    font-weight: 600;
    margin-bottom: 0.875rem;
    color: var(--eco-green-dark);
}

h3, .h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--eco-sage-dark);
}

h4, .h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.625rem;
}

h5, .h5 {
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

h6, .h6 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

p {
    font-size: var(--font-size-base);
    margin-bottom: 1rem;
}

.lead {
    font-size: var(--font-size-large);
    font-weight: 300;
}

.small {
    font-size: var(--font-size-small);
}

/* Bootstrap Color Overrides */
.btn-primary {
    background-color: var(--eco-green);
    border-color: var(--eco-green);
    color: white;
}

.btn-primary:hover {
    background-color: var(--eco-green-dark);
    border-color: var(--eco-green-dark);
}

.btn-outline-primary {
    color: var(--eco-green);
    border-color: var(--eco-green);
}

.btn-outline-primary:hover {
    background-color: var(--eco-green);
    border-color: var(--eco-green);
    color: white;
}

.text-primary {
    color: var(--eco-green) !important;
}

.bg-primary {
    background-color: var(--eco-green) !important;
}

.border-primary {
    border-color: var(--eco-green) !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--eco-cream) 0%, var(--eco-cream-light) 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-buttons .btn {
    margin-bottom: 0.5rem;
}

/* Section Styling */
section {
    padding: var(--section-padding);
}

.bg-light {
    background-color: var(--eco-cream) !important;
}

/* Card Styling */
.card {
    border: none;
    border-radius: 0.75rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.card-header {
    border-radius: 0.75rem 0.75rem 0 0;
    border: none;
}

/* Feature Icons */
.feature-icon {
    color: var(--eco-green);
}

/* Process Steps */
.process-icon .bg-primary,
.process-step .bg-primary {
    background-color: var(--eco-green) !important;
}

/* Timeline Styling */
.timeline-marker {
    background-color: var(--eco-green) !important;
}

/* Service Features */
.service-feature {
    padding: 2rem 1rem;
    transition: transform 0.3s ease;
}

.service-feature:hover {
    transform: translateY(-3px);
}

/* Sustainability Metrics */
.sustainability-metric {
    padding: 1rem;
    background: linear-gradient(135deg, var(--eco-cream-light), var(--eco-cream));
    border-radius: 1rem;
    margin-bottom: 1rem;
}

.sustainability-metric .display-4 {
    margin: 0;
}

/* Forms */
.form-control:focus {
    border-color: var(--eco-green);
    box-shadow: 0 0 0 0.2rem rgba(74, 124, 89, 0.25);
}

.form-check-input:checked {
    background-color: var(--eco-green);
    border-color: var(--eco-green);
}

/* Navigation */
.navbar {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    background-color: white !important;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--eco-green-dark) !important;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--eco-green) !important;
}

/* Footer */
footer {
    background-color: var(--eco-green-dark) !important;
}

footer h5, footer h6 {
    color: var(--eco-cream);
}

footer .text-light-emphasis {
    color: var(--eco-cream-light) !important;
}

footer .text-light-emphasis:hover {
    color: white !important;
}

/* Breadcrumbs */
.breadcrumb-section {
    padding: 1rem 0;
}

.breadcrumb {
    background: transparent;
    padding: 0;
}

.breadcrumb-item img {
    filter: opacity(0.7);
}

/* Gallery */
#gallery img {
    transition: transform 0.3s ease, filter 0.3s ease;
}

#gallery img:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* Badge Styling */
.badge {
    font-weight: 500;
}

.bg-success {
    background-color: var(--eco-sage) !important;
}

.bg-info {
    background-color: var(--eco-sky) !important;
}

.bg-warning {
    background-color: var(--eco-earth) !important;
}

.bg-secondary {
    background-color: var(--eco-green-dark) !important;
}

.text-success {
    color: var(--eco-sage) !important;
}

.text-info {
    color: var(--eco-sky) !important;
}

.text-warning {
    color: var(--eco-earth) !important;
}

/* Social Links */
.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.1);
    transition: background-color 0.3s ease;
}

.social-links a:hover {
    background-color: var(--eco-green);
    color: white !important;
}

/* Star Ratings */
.text-warning {
    color: #ffc107 !important;
}

/* Animations - Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .card:hover {
        transform: none;
    }
    
    .service-feature:hover {
        transform: none;
    }
    
    #gallery img:hover {
        transform: none;
    }
}

/* Utility Classes */
.text-eco-green {
    color: var(--eco-green);
}

.text-eco-sage {
    color: var(--eco-sage);
}

.text-eco-earth {
    color: var(--eco-earth);
}

.text-eco-sky {
    color: var(--eco-sky);
}

.bg-eco-cream {
    background-color: var(--eco-cream);
}

/* Contact Info Styling */
.contact-info .fas {
    color: var(--eco-green);
    width: 20px;
}

/* Price Display */
.price-display {
    padding: 1rem;
    background: linear-gradient(135deg, var(--eco-cream-light), var(--eco-cream));
    border-radius: 0.5rem;
}

/* Team Member Cards */
.card img.rounded-circle {
    border: 3px solid var(--eco-green-light);
    transition: border-color 0.3s ease;
}

.card:hover img.rounded-circle {
    border-color: var(--eco-green);
}

/* Input Group Styling */
.input-group .btn {
    border-left: none;
}

.input-group .form-control {
    border-right: none;
}

.input-group .form-control:focus {
    border-right: none;
    box-shadow: none;
}

/* Additional Spacing */
.mb-custom {
    margin-bottom: var(--element-margin);
}

.mt-custom {
    margin-top: var(--element-margin);
}

/* Loading States */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Focus Styles for Accessibility */
.btn:focus,
.form-control:focus,
.form-check-input:focus {
    outline: 2px solid var(--eco-green);
    outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    :root {
        --eco-green: #2d5a3d;
        --eco-sage: #4a6b3a;
        --eco-earth: #5c4a35;
        --eco-sky: #2e5c7a;
        --eco-cream: #ffffff;
    }
    
    .card {
        border: 1px solid #333;
    }
    
    .btn-outline-primary {
        border-width: 2px;
    }
} 

.hero-section h1 {
    padding-top: 250px;
}


/* Team Social Links - Modern Style */
.team-social-links {
    margin-top: 25px;
    padding: 20px 0;
}

.social-icons-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 22px;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    transform: scale(0);
    border-radius: inherit;
    transition: transform 0.5s ease;
}

.social-link:hover::before {
    transform: scale(1.2);
}

.social-link:hover {
    transform: translateY(-8px) rotate(10deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(45deg, #1877f2, #00c6ff);
}

.linkedin-link {
    background: linear-gradient(45deg, #0a66c2, #0099cc);
}

.instagram-link {
    background: linear-gradient(45deg, #e4405f, #f093fb, #f5576c);
}

.x-link {
    background: linear-gradient(45deg, #000000, #434343);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 24px;
    z-index: 2;
    position: relative;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 15px;
    }
    
    .social-link {
        width: 46px;
        height: 46px;
        font-size: 20px;
    }
}



/* Organization Social Links */
.org-social-links {
    margin: 25px 0;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid rgba(0,0,0,0.1);
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.org-social-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-primary, #333);
}

.org-social-grid {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.org-social-link {
    display: inline-flex;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.org-social-link:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    color: white;
    text-decoration: none;
}

/* Organization Social Networks Colors */
.org-facebook-link {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
}

.org-instagram-link {
    background: linear-gradient(135deg, #e4405f, #f77737, #fcaf45);
}

.org-linkedin-link {
    background: linear-gradient(135deg, #0a66c2, #2196f3);
}

.org-x-link {
    background: linear-gradient(135deg, #000000, #333333);
    position: relative;
}

.org-x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 20px;
    z-index: 2;
    position: relative;
}

.org-x-link i {
    display: none;
}

.org-youtube-link {
    background: linear-gradient(135deg, #ff0000, #ff4444);
}

.org-medium-link {
    background: linear-gradient(135deg, #000000, #1a1a1a);
}

.org-tiktok-link {
    background: linear-gradient(135deg, #fe2c55, #25f4ee);
}

.org-pinterest-link {
    background: linear-gradient(135deg, #bd081c, #e60023);
}

.org-telegram-link {
    background: linear-gradient(135deg, #0088cc, #229ed9);
}

.org-discord-link {
    background: linear-gradient(135deg, #5865f2, #7289da);
}

@media (max-width: 768px) {
    .org-social-grid {
        gap: 8px;
    }
    
    .org-social-link {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
    
    .org-social-title {
        font-size: 16px;
    }
}



/* Newsletter Form - Card Style */
.newsletter-section {
    margin: 30px 0;
    padding: 0;
}

.newsletter-card {
    max-width: 450px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    border: 1px solid #f0f0f0;
    overflow: hidden;
}

.newsletter-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 25px;
    text-align: center;
    color: white;
}

.newsletter-title {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 8px;
}

.newsletter-subtitle {
    font-size: 13px;
    color: rgba(255,255,255,0.9);
    line-height: 1.4;
}

.newsletter-body {
    padding: 25px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.newsletter-input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #f0f0f0;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102,126,234,0.1);
}

.newsletter-button {
    padding: 12px 20px;
    background: #667eea;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.newsletter-button:hover {
    background: #5a6fd8;
    transform: translateY(-1px);
}

.newsletter-success {
    display: none;
    margin-top: 20px;
    padding: 15px;
    background: #d1f2eb;
    border: 1px solid #a7f3d0;
    border-radius: 8px;
    color: #065f46;
    text-align: center;
    font-size: 14px;
}

.newsletter-success.show {
    display: block;
}

@media (max-width: 768px) {
    .newsletter-header {
        padding: 20px;
    }
    
    .newsletter-body {
        padding: 20px;
    }
    
    .newsletter-form {
        max-width: 100%;
    }
}



/* Live Chat FAQ Widget - Corporate Style - Enhanced Specificity */
div.website-livechat-widget,
.website-livechat-widget {
    position: fixed !important;
    right: 20px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 310px !important;
    background: #1a1a1a !important;
    border-radius: 0 !important;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3) !important;
    z-index: 999999 !important;
    color: #ffffff !important;
    font-family: 'Arial', sans-serif !important;
    font-size: 14px !important;
    line-height: 1.4 !important;
    text-align: left !important;
    transition: all 0.3s ease !important;
    border-left: 4px solid #007bff !important;
    opacity: 1 !important;
    visibility: visible !important;
}

div.website-livechat-widget div.website-livechat-header,
.website-livechat-widget .website-livechat-header {
    padding: 16px 20px !important;
    border-bottom: 1px solid #333333 !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    background: #2a2a2a !important;
    color: #ffffff !important;
    margin: 0 !important;
}

div.website-livechat-widget h5.website-livechat-title,
div.website-livechat-widget .website-livechat-title,
.website-livechat-widget .website-livechat-title,
.website-livechat-title {
    font-size: 16px !important;
    font-weight: 600 !important;
    margin: 0 !important;
    padding: 0 !important;
    color: #ffffff !important;
    background: transparent !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    text-shadow: none !important;
    line-height: 1.2 !important;
    font-family: inherit !important;
}

div.website-livechat-widget button.website-livechat-toggle,
div.website-livechat-widget .website-livechat-toggle,
.website-livechat-widget .website-livechat-toggle {
    background: none !important;
    border: 1px solid #666666 !important;
    color: #ffffff !important;
    font-size: 14px !important;
    cursor: pointer !important;
    pointer-events: auto !important;
    user-select: none !important;
    padding: 6px 8px !important;
    border-radius: 0 !important;
    transition: all 0.3s ease !important;
    outline: none !important;
    margin: 0 !important;
    width: auto !important;
    height: auto !important;
    text-decoration: none !important;
}

div.website-livechat-widget button.website-livechat-toggle:hover,
.website-livechat-widget .website-livechat-toggle:hover {
    background: #007bff !important;
    border-color: #007bff !important;
    color: #ffffff !important;
}

div.website-livechat-widget button.website-livechat-toggle i,
div.website-livechat-widget .website-livechat-toggle i,
.website-livechat-widget .website-livechat-toggle i {
    color: #ffffff !important;
    font-size: 14px !important;
    font-weight: 900 !important;
    font-family: "Font Awesome 6 Free" !important;
    display: inline-block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

div.website-livechat-widget div.website-livechat-content,
.website-livechat-widget .website-livechat-content {
    padding: 16px 20px 20px !important;
    max-height: 380px !important;
    overflow-y: auto !important;
    background: transparent !important;
    color: #ffffff !important;
    margin: 0 !important;
}

div.website-livechat-widget div.website-livechat-content.hidden,
.website-livechat-widget .website-livechat-content.hidden {
    display: none !important;
}

div.website-livechat-widget div.website-faq-item,
.website-livechat-widget .website-faq-item {
    margin-bottom: 12px !important;
    padding-bottom: 12px !important;
    border-bottom: 1px solid #333333 !important;
    background: transparent !important;
    color: #ffffff !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    padding-top: 0 !important;
}

div.website-livechat-widget div.website-faq-item:last-child,
.website-livechat-widget .website-faq-item:last-child {
    border-bottom: none !important;
    margin-bottom: 0 !important;
}

div.website-livechat-widget div.website-faq-question,
.website-livechat-widget .website-faq-question {
    font-size: 14px !important;
    font-weight: 500 !important;
    margin-bottom: 6px !important;
    margin-top: 0 !important;
    color: #ffffff !important;
    cursor: pointer !important;
    pointer-events: auto !important;
    user-select: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    text-transform: none !important;
    background: transparent !important;
    padding: 0 !important;
    border: none !important;
    text-align: left !important;
    line-height: 1.4 !important;
    font-family: inherit !important;
    text-decoration: none !important;
}

div.website-livechat-widget div.website-faq-question:hover,
.website-livechat-widget .website-faq-question:hover {
    color: #007bff !important;
    background: transparent !important;
}

div.website-livechat-widget div.website-faq-question span,
.website-livechat-widget .website-faq-question span {
    color: #ffffff !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    line-height: 1.4 !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
}

div.website-livechat-widget div.website-faq-answer,
.website-livechat-widget .website-faq-answer {
    font-size: 13px !important;
    line-height: 1.4 !important;
    color: #cccccc !important;
    display: none !important;
    padding-top: 6px !important;
    padding-bottom: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    border: none !important;
    text-align: left !important;
    font-family: inherit !important;
}

div.website-livechat-widget div.website-faq-answer.show,
.website-livechat-widget .website-faq-answer.show {
    display: block !important;
    color: #cccccc !important;
}

div.website-livechat-widget i.website-faq-icon,
.website-livechat-widget .website-faq-icon {
    transition: transform 0.3s ease !important;
    font-size: 12px !important;
    color: #007bff !important;
    font-weight: 900 !important;
    font-family: "Font Awesome 6 Free" !important;
    display: inline-block !important;
    opacity: 1 !important;
    visibility: visible !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
}

div.website-livechat-widget i.website-faq-icon.rotated,
.website-livechat-widget .website-faq-icon.rotated {
    transform: rotate(180deg) !important;
    color: #007bff !important;
}

@media (max-width: 768px) {
    div.website-livechat-widget,
    .website-livechat-widget {
        display: none !important;
    }
}



/* Google Maps Section */
.website-google-maps-section {
    padding: 60px 0 !important;
    background: #f8f9fa !important;
    margin: 0 !important;
    border-top: 1px solid #e0e0e0 !important;
}

.website-maps-container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 15px !important;
}

.website-maps-title {
    text-align: center !important;
    font-size: 28px !important;
    font-weight: 600 !important;
    margin-bottom: 15px !important;
    color: #333333 !important;
    font-family: inherit !important;
}

.website-maps-subtitle {
    text-align: center !important;
    font-size: 16px !important;
    color: #666666 !important;
    margin-bottom: 40px !important;
    font-family: inherit !important;
}

.website-google-map {
    width: 100% !important;
    height: 400px !important;
    border: none !important;
    border-radius: 10px !important;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1) !important;
}

@media (max-width: 768px) {
    .website-google-maps-section {
        padding: 40px 0 !important;
    }
    
    .website-maps-title {
        font-size: 24px !important;
    }
    
    .website-google-map {
        height: 300px !important;
    }
}



/* CTA Section - Bold Style */
.website-cta-section {
    padding: 50px 0 !important;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
    text-align: center !important;
    margin: 0 !important;
}

.website-cta-container {
    max-width: 800px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
}

.website-cta-title {
    font-size: 32px !important;
    font-weight: 700 !important;
    margin-bottom: 15px !important;
    color: white !important;
    font-family: inherit !important;
}

.website-cta-subtitle {
    font-size: 18px !important;
    margin-bottom: 30px !important;
    color: rgba(255,255,255,0.9) !important;
    font-family: inherit !important;
}

.website-cta-button {
    display: inline-flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 18px 35px !important;
    background: rgba(255,255,255,0.2) !important;
    color: white !important;
    text-decoration: none !important;
    border-radius: 50px !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    border: 2px solid rgba(255,255,255,0.3) !important;
    backdrop-filter: blur(10px) !important;
}

.website-cta-button:hover {
    background: rgba(255,255,255,0.3) !important;
    border-color: rgba(255,255,255,0.5) !important;
    transform: translateY(-2px) !important;
    color: white !important;
    text-decoration: none !important;
}

.website-cta-phone-icon {
    font-size: 20px !important;
}

@media (max-width: 768px) {
    .website-cta-section {
        padding: 40px 0 !important;
    }
    
    .website-cta-title {
        font-size: 26px !important;
    }
    
    .website-cta-subtitle {
        font-size: 16px !important;
    }
    
    .website-cta-button {
        font-size: 16px !important;
        padding: 16px 30px !important;
    }
}



/* Security Badges */
.website-security-badges {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 20px !important;
    padding: 25px 0 !important;
    flex-wrap: wrap !important;
    background: #f8f9fa !important;
    border-top: 1px solid #e0e0e0 !important;
    border-bottom: 1px solid #e0e0e0 !important;
}

.website-security-badge {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 10px 15px !important;
    background: white !important;
    border-radius: 8px !important;
    border: 1px solid #e0e0e0 !important;
    text-decoration: none !important;
    color: #333333 !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05) !important;
}

.website-security-badge:hover {
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1) !important;
    color: #333333 !important;
    text-decoration: none !important;
}

.website-security-badge-icon {
    font-size: 16px !important;
    color: #28a745 !important;
}

.website-security-badge.ssl .website-security-badge-icon {
    color: #28a745 !important;
}

.website-security-badge.payment .website-security-badge-icon {
    color: #007bff !important;
}

.website-security-badge.privacy .website-security-badge-icon {
    color: #6c757d !important;
}

.website-security-badge.support .website-security-badge-icon {
    color: #17a2b8 !important;
}

@media (max-width: 768px) {
    .website-security-badges {
        gap: 10px !important;
        padding: 20px 10px !important;
    }
    
    .website-security-badge {
        font-size: 12px !important;
        padding: 8px 12px !important;
    }
}



/* Floating Decorative Icons */
.website-floating-icons {
    position: relative !important;
    overflow: hidden !important;
}

.website-floating-icon {
    position: absolute !important;
    font-size: 20px !important;
    color: rgba(0,0,0,0.05) !important;
    z-index: 1 !important;
    pointer-events: none !important;
    animation: websiteFloatAnimation 8s ease-in-out infinite !important;
}

.website-floating-icon.variant-1 {
    top: 10% !important;
    right: 5% !important;
    animation-delay: 0s !important;
}

.website-floating-icon.variant-2 {
    top: 60% !important;
    right: 3% !important;
    animation-delay: 2s !important;
    font-size: 16px !important;
}

.website-floating-icon.variant-3 {
    top: 30% !important;
    left: 3% !important;
    animation-delay: 4s !important;
    font-size: 24px !important;
}

@keyframes websiteFloatAnimation {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) !important;
        opacity: 0.3 !important;
    }
    25% {
        transform: translateY(-10px) rotate(5deg) !important;
        opacity: 0.5 !important;
    }
    50% {
        transform: translateY(-20px) rotate(0deg) !important;
        opacity: 0.3 !important;
    }
    75% {
        transform: translateY(-10px) rotate(-5deg) !important;
        opacity: 0.5 !important;
    }
}

@media (max-width: 768px) {
    .website-floating-icon {
        display: none !important;
    }
}


/* Cookie Manager theme (auto-injected) */
/**
 * САЙТ-СПЕЦИФИЧНЫЕ СТИЛИ
 * Тема: glass
 * Toggle: 5
 * Содержит только стили для выбранной темы
 * Сгенерировано автоматически - НЕ РЕДАКТИРОВАТЬ ВРУЧНУЮ
 */

/**
 * OptimizedCookieManager Styles
 * Уникальные классы с префиксом ocm- для избежания конфликтов
 * Все стили с !important для гарантированного применения
 */

/* ===== БАЗОВЫЕ СТИЛИ ===== */
.ocm-banner {
    position: fixed !important;
    z-index: 999999 !important;
    max-width: 400px !important;
    min-width: 320px !important;
    background: #ffffff !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15) !important;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
    color: #333333 !important;
    transform: translateY(100px) !important;
    opacity: 0 !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    border: 1px solid #e5e5e5 !important;
    overflow: hidden !important;
}

.ocm-banner.ocm-show {
    transform: translateY(0) !important;
    opacity: 1 !important;
}

/* ===== ПОЗИЦИОНИРОВАНИЕ ===== */
.ocm-position-bottom-right {
    bottom: 20px !important;
    right: 20px !important;
}

.ocm-position-bottom-left {
    bottom: 20px !important;
    left: 20px !important;
}

.ocm-position-bottom-center {
    bottom: 20px !important;
    left: 50% !important;
    transform: translateX(-50%) translateY(100px) !important;
}

.ocm-position-bottom-center.ocm-show {
    transform: translateX(-50%) translateY(0) !important;
}

.ocm-position-top-right {
    top: 20px !important;
    right: 20px !important;
    transform: translateY(-100px) !important;
}

.ocm-position-top-right.ocm-show {
    transform: translateY(0) !important;
}

/* ===== СОДЕРЖИМОЕ БАННЕРА ===== */
.ocm-banner-content,
.ocm-settings {
    padding: 24px !important;
}

.ocm-header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-bottom: 16px !important;
}

.ocm-title {
    margin: 0 !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    color: #1a1a1a !important;
}

.ocm-close {
    background: none !important;
    border: none !important;
    font-size: 24px !important;
    color: #666666 !important;
    cursor: pointer !important;
    padding: 0 !important;
    width: 30px !important;
    height: 30px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 6px !important;
    transition: all 0.2s ease !important;
}

.ocm-close:hover {
    background: #f5f5f5 !important;
    color: #333333 !important;
}

.ocm-description {
    margin: 0 0 20px 0 !important;
    color: #666666 !important;
    line-height: 1.6 !important;
}

.ocm-buttons {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
}

.ocm-btn {
    padding: 12px 20px !important;
    border-radius: 8px !important;
    border: none !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    text-align: center !important;
    text-decoration: none !important;
    display: inline-block !important;
    font-family: inherit !important;
}

.ocm-btn-accept {
    background: #007bff !important;
    color: #ffffff !important;
}

.ocm-btn-accept:hover {
    background: #0056b3 !important;
    transform: translateY(-1px) !important;
}

.ocm-btn-reject {
    background: #6c757d !important;
    color: #ffffff !important;
}

.ocm-btn-reject:hover {
    background: #545b62 !important;
    transform: translateY(-1px) !important;
}

.ocm-btn-customize {
    background: transparent !important;
    color: #007bff !important;
    border: 2px solid #007bff !important;
}

.ocm-btn-customize:hover {
    background: #007bff !important;
    color: #ffffff !important;
}

.ocm-btn-save {
    background: #28a745 !important;
    color: #ffffff !important;
}

.ocm-btn-save:hover {
    background: #1e7e34 !important;
    transform: translateY(-1px) !important;
}

.ocm-back {
    background: none !important;
    border: none !important;
    color: #007bff !important;
    cursor: pointer !important;
    font-size: 14px !important;
    padding: 5px 10px !important;
    border-radius: 6px !important;
    transition: all 0.2s ease !important;
    font-family: inherit !important;
}

.ocm-back:hover {
    background: #f8f9fa !important;
}

/* ===== НАСТРОЙКИ COOKIE ===== */
.ocm-category {
    margin-bottom: 20px !important;
    padding: 16px !important;
    background: #f8f9fa !important;
    border-radius: 8px !important;
    border: 1px solid #e9ecef !important;
}

.ocm-category-header {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    margin-bottom: 8px !important;
}

.ocm-category-title {
    font-weight: 500 !important;
    color: #1a1a1a !important;
    font-size: 15px !important;
}

.ocm-category-desc {
    margin: 0 !important;
    color: #666666 !important;
    font-size: 13px !important;
    line-height: 1.4 !important;
}

/* ===== ПЕРЕКЛЮЧАТЕЛИ ===== */
.ocm-switch {
    position: relative !important;
    display: inline-block !important;
    width: 50px !important;
    height: 24px !important;
}

.ocm-switch input {
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
}

.ocm-slider {
    position: absolute !important;
    cursor: pointer !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background-color: #ccc !important;
    border-radius: 24px !important;
    transition: all 0.3s ease !important;
}

.ocm-slider:before {
    position: absolute !important;
    content: "" !important;
    height: 18px !important;
    width: 18px !important;
    left: 3px !important;
    bottom: 3px !important;
    background-color: white !important;
    border-radius: 50% !important;
    transition: all 0.3s ease !important;
}

input:checked + .ocm-slider {
    background-color: #007bff !important;
}

input:checked + .ocm-slider:before {
    transform: translateX(26px) !important;
}

input:disabled + .ocm-slider {
    background-color: #28a745 !important;
    opacity: 0.7 !important;
    cursor: not-allowed !important;
}

/* ===== КНОПКА ПЕРЕКЛЮЧЕНИЯ - БАЗОВЫЕ СТИЛИ ===== */
.ocm-toggle {
    position: fixed !important;
    width: 50px !important;
    height: 50px !important;
    border: none !important;
    color: white !important;
    font-size: 20px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    z-index: 999998 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-family: inherit !important;
}

/* ===== ПОЗИЦИОНИРОВАНИЕ TOGGLE КНОПКИ ===== */
.ocm-toggle.ocm-toggle-position-bottom-right {
    bottom: 20px !important;
    right: 20px !important;
}

.ocm-toggle.ocm-toggle-position-bottom-left {
    bottom: 20px !important;
    left: 20px !important;
}

.ocm-toggle.ocm-toggle-position-top-right {
    top: 20px !important;
    right: 20px !important;
}

.ocm-toggle.ocm-toggle-position-top-left {
    top: 20px !important;
    left: 20px !important;
}

.ocm-toggle.ocm-toggle-position-center-left {
    top: 50% !important;
    left: 20px !important;
    transform: translateY(-50%) !important;
}

.ocm-toggle.ocm-toggle-position-center-right {
    top: 50% !important;
    right: 20px !important;
    transform: translateY(-50%) !important;
}

/* ===== TOGGLE СТИЛЬ 5: ЯРКИЙ ГРАДИЕНТ ===== */
.ocm-toggle.ocm-toggle-style-5 {
    border-radius: 50% !important;
    background: conic-gradient(from 0deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #ff6b6b) !important;
    animation: ocm-rotate 4s linear infinite !important;
    width: 52px !important;
    height: 52px !important;
}

.ocm-toggle.ocm-toggle-style-5:hover {
    animation-duration: 2s !important;
    transform: scale(1.05) !important;
}

@keyframes ocm-rotate {
    from { background-position: 0deg; }
    to { background-position: 360deg; }
}

/* ===== ДОПОЛНИТЕЛЬНЫЕ ЭЛЕМЕНТЫ ===== */
.ocm-settings-buttons {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-top: 20px !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
}

.ocm-policy-link {
    color: #007bff !important;
    text-decoration: none !important;
    font-size: 13px !important;
    border-bottom: 1px solid transparent !important;
    transition: border-color 0.2s ease !important;
}

.ocm-policy-link:hover {
    border-bottom-color: #007bff !important;
}

/* ===== ТЕМА: GLASS ===== */
.ocm-theme-glass {
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 20px !important;
}

.ocm-theme-glass .ocm-btn {
    backdrop-filter: blur(10px) !important;
    border-radius: 10px !important;
}

.ocm-theme-glass .ocm-btn-accept {
    background: rgba(0, 123, 255, 0.9) !important;
}

.ocm-theme-glass .ocm-category {
    background: rgba(248, 249, 250, 0.6) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

/* ===== АДАПТИВНОСТЬ ===== */
@media (max-width: 480px) {
    .ocm-banner {
        max-width: calc(100vw - 40px) !important;
        min-width: calc(100vw - 40px) !important;
    }
    
    .ocm-buttons {
        flex-direction: column !important;
    }
    
    .ocm-settings-buttons {
        flex-direction: column !important;
        align-items: stretch !important;
    }
    
    .ocm-category-header {
        flex-wrap: wrap !important;
    }
}

/* ===== АНИМАЦИИ ===== */
@keyframes ocm-slideUp {
    from {
        transform: translateY(100%) !important;
        opacity: 0 !important;
    }
    to {
        transform: translateY(0) !important;
        opacity: 1 !important;
    }
}

@keyframes ocm-fadeIn {
    from {
        opacity: 0 !important;
    }
    to {
        opacity: 1 !important;
    }
}

/* ===== ТЕМНАЯ ТЕМА (медиазапрос) ===== */
@media (prefers-color-scheme: dark) {
    .ocm-banner:not(
    
    .ocm-banner:not(
    
    .ocm-banner:not(
    
    .ocm-banner:not(
    
    .ocm-banner:not(
    
    .ocm-banner:not(
}
