* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Heebo', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Header */
header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
}

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

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: #F7D9E6;
}

.cta-btn {
    background: #F7D9E6;
    color: #333;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
}

.cta-btn:hover {
    background: #f0c4d6;
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #F7D9E6 0%, #fff 100%);
    padding: 120px 0 80px;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #666;
}

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

.btn-primary {
    background: #333;
    color: #fff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: #555;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #333;
    padding: 1rem 2rem;
    border: 2px solid #F7D9E6;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #F7D9E6;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #333;
}

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

.service-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}

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

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

.service-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.service-btn {
    background: #F7D9E6;
    color: #333;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 20px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.3s;
}

.service-btn:hover {
    background: #f0c4d6;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.gallery-item {
    aspect-ratio: 1;
    background: #f5f5f5;
    border-radius: 10px;
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.3s;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

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

.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.gallery-item.hidden {
    display: none;
}

/* Gallery Tabs */
.gallery-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.tab-btn {
    background: #fff;
    border: 2px solid #F7D9E6;
    color: #333;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-family: 'Rubik', sans-serif;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.tab-btn:hover {
    background: #F7D9E6;
    transform: translateY(-2px);
}

.tab-btn.active {
    background: #F7D9E6;
    color: #333;
    box-shadow: 0 5px 15px rgba(247, 217, 230, 0.4);
}

/* Category Grid */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.category-card {
    position: relative;
    aspect-ratio: 1;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.category-preview {
    position: relative;
    width: 100%;
    height: 100%;
}

.category-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.category-image.active {
    opacity: 1;
}

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    text-align: center;
}

.category-overlay h3 {
    margin: 0 0 0.5rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.category-overlay p {
    margin: 0 0 0.5rem;
    opacity: 0.9;
    font-size: 0.9rem;
}

.view-all {
    display: inline-block;
    background: #F7D9E6;
    color: #333;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s;
}

.category-card:hover .view-all {
    background: white;
    transform: scale(1.05);
}

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

.modal-content {
    background-color: #fefefe;
    margin: 2% auto;
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 1200px;
    max-height: 90vh;
    overflow: hidden;
    animation: slideIn 0.3s;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: #F7D9E6;
    border-bottom: 1px solid #eee;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.5rem;
    color: #333;
}

.modal-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    padding: 2rem;
    max-height: 70vh;
    overflow-y: auto;
}

.modal-gallery .gallery-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    background: #f5f5f5;
}

.modal-gallery .gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

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

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

/* Image Lightbox for modal */
.image-lightbox {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    animation: fadeIn 0.3s;
}

.lightbox-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    color: white;
    border: none;
    padding: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s;
}

.lightbox-nav:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 2rem;
}

.lightbox-next {
    right: 2rem;
}

.lightbox-close-btn {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: rgba(255,255,255,0.2);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s;
}

.lightbox-close-btn:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.1);
}

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

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

/* Reviews Section Improvements */
.reviews-header {
    text-align: center;
    margin-bottom: 3rem;
}

.reviews-header .btn-primary {
    font-size: 1.1rem;
    padding: 1rem 2rem;
    border-radius: 30px;
    box-shadow: 0 5px 20px rgba(247, 217, 230, 0.3);
    transition: all 0.3s;
}

.reviews-header .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(247, 217, 230, 0.4);
}

/* Review Modal */
.review-modal-content {
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
}

.review-form-container {
    padding: 2rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Rubik', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #F7D9E6;
    box-shadow: 0 0 0 3px rgba(247, 217, 230, 0.2);
}

.rating-input {
    margin: 0.5rem 0;
}

.stars-input {
    display: flex;
    gap: 0.25rem;
    font-size: 2rem;
    cursor: pointer;
}

.stars-input span {
    color: #ddd;
    transition: color 0.2s;
    user-select: none;
}

.stars-input span:hover,
.stars-input span.active {
    color: #ffd700;
}

.char-counter {
    text-align: left;
    font-size: 0.85rem;
    color: #666;
    margin-top: 0.25rem;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.form-actions button {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary {
    background: #f5f5f5;
    border: 2px solid #ddd;
    color: #666;
}

.btn-secondary:hover {
    background: #eee;
    border-color: #ccc;
}

/* Review Cards Animation */
.review-card {
    animation: fadeInUp 0.5s ease-out;
}

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

/* Blog */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

.blog-content {
    padding: 1.5rem;
}

.blog-date {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.blog-card h3 {
    margin-bottom: 1rem;
    color: #333;
}

.blog-card p {
    color: #666;
    margin-bottom: 1rem;
}

.read-more {
    color: #F7D9E6;
    text-decoration: none;
    font-weight: 600;
}

.read-more:hover {
    text-decoration: underline;
}

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

.review-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.review-name {
    font-weight: 600;
    margin-left: 1rem;
}

.stars {
    color: #ffc107;
}

/* Contact */
.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.contact-info h3 {
    margin-bottom: 1rem;
    color: #333;
}

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

.contact-form {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 15px;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Heebo', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #F7D9E6;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

/* Footer */
footer {
    background: #333;
    color: white;
    padding: 3rem 0 1rem;
    margin-top: auto;
}

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

.footer-section h3,
.footer-section h4 {
    color: #F7D9E6;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 1rem;
}

.footer-contact {
    color: #ccc;
    line-height: 1.6;
}

.footer-services,
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-services li,
.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-services a,
.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-services a:hover,
.footer-links a:hover {
    color: #F7D9E6;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

.footer-keywords small {
    color: #888;
    font-size: 0.8rem;
}

/* Legal Modal */
.legal-modal-content {
    max-width: 800px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    overflow: hidden; /* Prevent entire modal from scrolling */
}

.legal-content {
    padding: 2rem;
    line-height: 1.6;
    color: #333;
    max-height: 70vh; /* Limit content height */
    overflow-y: auto; /* Enable vertical scrolling on content only */
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
}

.legal-content h2 {
    color: #F7D9E6;
    margin-top: 2rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid #F7D9E6;
    padding-bottom: 0.5rem;
}

.legal-content h3 {
    color: #666;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.legal-content p,
.legal-content li {
    margin-bottom: 0.8rem;
}

.legal-content ul,
.legal-content ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-highlight {
    background: #fff3cd;
    padding: 1rem;
    border-left: 4px solid #ffc107;
    margin: 1rem 0;
}

/* Accessibility Button */
.accessibility-btn {
    position: fixed;
    top: 20px;
    left: 20px;
    background: #2196f3;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(33, 150, 243, 0.4);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.accessibility-btn:hover {
    background: #1976d2;
    transform: scale(1.1);
}

.accessibility-btn:focus {
    outline: 3px solid #ffeb3b;
    outline-offset: 2px;
}

/* Language Selector Button */
.language-btn {
    position: fixed;
    top: 80px;
    left: 20px;
    background: #4CAF50;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.4);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.language-btn:hover {
    background: #45a049;
    transform: scale(1.1);
}

.language-btn:focus {
    outline: 3px solid #ffeb3b;
    outline-offset: 2px;
}

/* Language Panel */
.language-panel {
    position: fixed;
    top: 140px;
    left: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    padding: 15px;
    width: 200px;
    z-index: 9998;
    transform: translateX(-100%);
    opacity: 0;
    transition: all 0.3s ease;
}

.language-panel.active {
    transform: translateX(0);
    opacity: 1;
}

.language-panel h4 {
    margin: 0 0 15px 0;
    color: #4CAF50;
    font-size: 1rem;
    text-align: center;
}

.language-option {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.2s;
    margin-bottom: 5px;
}

.language-option:hover {
    background: #f0f0f0;
}

.language-option.active {
    background: #e8f5e8;
    color: #4CAF50;
    font-weight: bold;
}

/* Flag emojis - simple and sharp on all devices */
.language-option .flag-emoji {
    font-size: 20px;
    margin-right: 10px;
    display: inline-block;
    line-height: 1;
    vertical-align: middle;
}

/* Old CSS flags - keep for backwards compatibility but hidden */
.language-option .flag {
    display: none;
}

.flag.he {
    background: #fff;
    position: relative;
}

/* Remove old CSS-based Israeli flag (now using emoji) */
.flag.he::after {
    display: none;
}

.flag.en {
    background: linear-gradient(to bottom, #B22234 0%, #B22234 7.69%, #FFFFFF 7.69%, #FFFFFF 15.38%, #B22234 15.38%, #B22234 23.08%, #FFFFFF 23.08%, #FFFFFF 30.77%, #B22234 30.77%, #B22234 38.46%, #FFFFFF 38.46%, #FFFFFF 46.15%, #B22234 46.15%, #B22234 53.85%, #FFFFFF 53.85%, #FFFFFF 61.54%, #B22234 61.54%, #B22234 69.23%, #FFFFFF 69.23%, #FFFFFF 76.92%, #B22234 76.92%, #B22234 84.62%, #FFFFFF 84.62%, #FFFFFF 92.31%, #B22234 92.31%);
    position: relative;
}

.flag.en::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 46.15%;
    background: #3C3B6E;
}

.flag.fr {
    background: linear-gradient(to right, #0055A4 33.33%, #FFFFFF 33.33%, #FFFFFF 66.66%, #EF4135 66.66%);
}

/* Mobile Responsive - Move buttons to bottom for better thumb accessibility */
/* Buttons stack at bottom-left with safe-area support for iPhone notch/home indicator */
@media (max-width: 768px) {
    .accessibility-btn {
        top: auto;
        bottom: calc(16px + env(safe-area-inset-bottom));
        left: 15px;
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
        box-shadow: 0 -2px 12px rgba(33, 150, 243, 0.5);
    }

    .language-btn {
        top: auto;
        bottom: calc(80px + env(safe-area-inset-bottom));
        left: 15px;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        box-shadow: 0 -2px 12px rgba(76, 175, 80, 0.5);
    }

    .accessibility-panel {
        top: auto;
        bottom: calc(76px + env(safe-area-inset-bottom));
        left: 15px;
        right: 15px;
        width: auto;
    }

    .language-panel {
        top: auto;
        bottom: calc(140px + env(safe-area-inset-bottom));
        left: 15px;
        right: 15px;
        width: auto;
    }
}

/* RTL Support */
body[dir="ltr"] {
    text-align: left;
}

body[dir="ltr"] .accessibility-btn,
body[dir="ltr"] .language-btn {
    left: auto;
    right: 20px;
}

body[dir="ltr"] .accessibility-panel,
body[dir="ltr"] .language-panel {
    left: auto;
    right: 20px;
}

@media (max-width: 768px) {
    body[dir="ltr"] .accessibility-btn,
    body[dir="ltr"] .language-btn {
        left: auto;
        right: 15px;
    }

    body[dir="ltr"] .accessibility-panel,
    body[dir="ltr"] .language-panel {
        left: 15px;
        right: 15px;
    }
}

/* Accessibility Panel */
.accessibility-panel {
    position: fixed;
    top: 80px;
    left: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    padding: 20px;
    width: 280px;
    z-index: 9998;
    transform: translateX(-100%);
    opacity: 0;
    transition: all 0.3s ease;
}

.accessibility-panel.active {
    transform: translateX(0);
    opacity: 1;
}

.accessibility-panel h3 {
    margin: 0 0 15px 0;
    color: #2196f3;
    font-size: 1.1rem;
    text-align: center;
}

.accessibility-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.accessibility-option:last-child {
    border-bottom: none;
}

.accessibility-option label {
    font-size: 0.9rem;
    color: #333;
    cursor: pointer;
    flex: 1;
}

.accessibility-toggle {
    position: relative;
    width: 50px;
    height: 25px;
    background: #ddd;
    border-radius: 25px;
    cursor: pointer;
    transition: background 0.3s;
}

.accessibility-toggle.active {
    background: #2196f3;
}

.accessibility-toggle::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 21px;
    height: 21px;
    background: white;
    border-radius: 50%;
    transition: transform 0.3s;
}

.accessibility-toggle.active::after {
    transform: translateX(25px);
}

.accessibility-slider {
    width: 100%;
    margin: 10px 0;
}

.accessibility-slider input {
    width: 100%;
}

/* High Contrast Mode */
body.high-contrast {
    background: #000 !important;
    color: #fff !important;
}

body.high-contrast .hero {
    background: #000 !important;
}

body.high-contrast .service-card,
body.high-contrast .category-card,
body.high-contrast .review-card,
body.high-contrast .blog-card {
    background: #222 !important;
    border: 2px solid #fff !important;
    color: #fff !important;
}

body.high-contrast .btn-primary,
body.high-contrast .btn-secondary {
    background: #fff !important;
    color: #000 !important;
    border: 2px solid #fff !important;
}

body.high-contrast footer {
    background: #111 !important;
}

/* Large Text Mode */
body.large-text {
    font-size: 1.2em !important;
}

body.large-text h1 {
    font-size: 3.5rem !important;
}

body.large-text h2 {
    font-size: 2.5rem !important;
}

body.large-text h3 {
    font-size: 2rem !important;
}

body.large-text .btn-primary,
body.large-text .btn-secondary {
    font-size: 1.1rem !important;
    padding: 15px 25px !important;
}

/* Enhanced Focus Mode */
body.enhanced-focus *:focus {
    outline: 3px solid #ffeb3b !important;
    outline-offset: 2px !important;
}

/* Reduced Motion */
body.reduced-motion *,
body.reduced-motion *::before,
body.reduced-motion *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
}

/* Skip to main content link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #000;
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 10000;
    border-radius: 0 0 4px 4px;
}

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

/* Keyboard focus improvements */
body.using-keyboard *:focus {
    outline: 2px solid #2196f3;
    outline-offset: 2px;
}

/* Screen reader only text */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

/* Better focus indicators for interactive elements */
button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid #2196f3;
    outline-offset: 2px;
}

/* High contrast improvements */
body.high-contrast .accessibility-btn {
    background: #fff !important;
    color: #000 !important;
    border: 2px solid #fff !important;
}

body.high-contrast .accessibility-panel {
    background: #000 !important;
    border: 2px solid #fff !important;
}

body.high-contrast .accessibility-panel h3,
body.high-contrast .accessibility-option label {
    color: #fff !important;
}



body[dir="ltr"] .accessibility-panel,
body[dir="ltr"] .language-panel {
    left: auto;
    right: 20px;
}

@media (max-width: 768px) {
    body[dir="ltr"] .accessibility-btn,
    body[dir="ltr"] .language-btn {
        left: auto;
        right: 15px;
    }

    body[dir="ltr"] .accessibility-panel,
    body[dir="ltr"] .language-panel {
        left: 15px;
        right: 15px;
    }
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: #f8f9fa;
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.chat-header {
    background: #F7D9E6;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-radius: 15px 15px 0 0;
}

.chat-avatar {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.chat-info h3 {
    margin: 0;
    color: #333;
    font-size: 1.1rem;
}

.chat-info p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

.chat-messages {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    max-height: 60vh;
    background: #fff;
}

.message {
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
}

.message.bot {
    align-items: flex-start;
}

.message.user {
    align-items: flex-end;
}

.message-bubble {
    max-width: 80%;
    padding: 0.75rem 1rem;
    border-radius: 18px;
    font-size: 0.95rem;
    line-height: 1.4;
}

.message.bot .message-bubble {
    background: #f1f1f1;
    color: #333;
    border-bottom-left-radius: 5px;
}

.message.user .message-bubble {
    background: #F7D9E6;
    color: #333;
    border-bottom-right-radius: 5px;
}

.message-time {
    font-size: 0.75rem;
    color: #999;
    margin-top: 0.25rem;
    padding: 0 0.5rem;
}

.chat-input {
    padding: 1rem;
    background: #fff;
    border-top: 1px solid #eee;
    border-radius: 0 0 15px 15px;
}

.quick-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.quick-option {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
}

.quick-option:hover {
    background: #F7D9E6;
    border-color: #F7D9E6;
}

.quick-option.selected {
    background: #F7D9E6;
    border-color: #F7D9E6;
    font-weight: 600;
}

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

.chat-text-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 25px;
    font-family: 'Heebo', sans-serif;
    font-size: 0.95rem;
}

.chat-text-input:focus {
    outline: none;
    border-color: #F7D9E6;
}

.send-btn {
    background: #F7D9E6;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.send-btn:hover {
    background: #f0c4d6;
    transform: scale(1.05);
}

.send-btn:disabled {
    background: #ddd;
    cursor: not-allowed;
    transform: none;
}

.modal-close {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #999;
}

.modal-close:hover {
    color: #333;
}

.step {
    display: none;
}

.step.active {
    display: block;
}

.step h3 {
    margin-bottom: 1.5rem;
    color: #333;
}

.radio-group {
    margin-bottom: 1rem;
}

.radio-group label {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    cursor: pointer;
    transition: all 0.3s;
}

.radio-group input[type="radio"] {
    margin-left: 0.5rem;
}

.radio-group label:hover {
    border-color: #F7D9E6;
}

.radio-group input[type="radio"]:checked + span {
    font-weight: 600;
}

.radio-group label:has(input[type="radio"]:checked) {
    border-color: #F7D9E6;
    background: #fef7fa;
}

.modal-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    gap: 1rem;
}

.btn-back {
    background: #e0e0e0;
    color: #333;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
}

.btn-back:hover {
    background: #d0d0d0;
}

.btn-next {
    background: #F7D9E6;
    color: #333;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
}

.btn-next:hover {
    background: #f0c4d6;
}

.btn-next:disabled {
    background: #e0e0e0;
    cursor: not-allowed;
}

.success-state {
    display: none;
    text-align: center;
}

.success-state h3 {
    color: #28a745;
    margin-bottom: 1rem;
}

.booking-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 3000;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    background: #f5f5f5;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    background: none;
    border: none;
}

/* Logo Animation */
.logo-animation-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.logo-animation-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.animated-logo {
    text-align: center;
}

.logo-letters {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.animated-logo-container {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto;
}

.animated-logo-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    opacity: 0;
    transform: scale(0.3);
    animation: logoAppear 1s ease forwards;
    animation-delay: 0.2s;
}

.background-letters {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 8rem;
    font-weight: 900;
    color: #F5C2C7;
    opacity: 0.4;
    font-family: serif;
    animation: backgroundLetterAppear 1s ease forwards;
    animation-delay: 0.6s;
    user-select: none;
    pointer-events: none;
}

.signature-text {
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 3.5rem;
    font-weight: 400;
    color: #333;
    font-family: 'Dancing Script', cursive;
    opacity: 0;
    animation: signatureAppear 2s ease forwards;
    animation-delay: 1s;
    white-space: nowrap;
}

.logo-subtext {
    position: absolute;
    top: 190px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.1rem;
    color: #333;
    letter-spacing: 4px;
    font-weight: 600;
    font-family: 'Heebo', sans-serif;
    white-space: nowrap;
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
    animation-delay: 3s;
}

.typing-text {
    overflow: hidden;
    border-right: 2px solid #333;
    white-space: nowrap;
    margin: 0 auto;
    letter-spacing: 0.1em;
    animation: typing 2s steps(40, end), blink-caret 0.75s step-end infinite;
    animation-delay: 1.8s;
}

/* Animation for click to continue text */
@keyframes fadeInOut {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

@keyframes letterAppear {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes logoAppear {
    to {
        opacity: 1;
        transform: scale(1);
    }
}



@keyframes backgroundLetterAppear {
    to {
        opacity: 0.4;
        transform: translateX(-50%) scale(1);
    }
}

@keyframes signatureAppear {
    0% {
        opacity: 0;
        transform: translateX(-50%) scale(0.8);
    }
    50% {
        opacity: 0.7;
        transform: translateX(-50%) scale(1.05);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) scale(1);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes typing {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes blink-caret {
    from, to {
        border-color: transparent;
    }
    50% {
        border-color: #333;
    }
}

@keyframes slideToSide {
    to {
        transform: translateX(-50vw) scale(0.3);
        opacity: 0;
    }
}

.logo-slide-out {
    animation: slideToSide 0.8s ease forwards;
    animation-delay: 4s;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    nav {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        background: #fff;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }
    
    nav.active {
        display: block;
    }
    
    nav ul {
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        width: 95%;
        max-width: 100%;
        max-height: 95vh;
        margin: 10px;
        border-radius: 20px;
    }
    
    .chat-header {
        padding: 0.75rem 1rem;
        border-radius: 20px 20px 0 0;
    }
    
    .chat-avatar {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
    
    .chat-info h3 {
        font-size: 1rem;
    }
    
    .chat-info p {
        font-size: 0.85rem;
    }
    
    .chat-messages {
        max-height: calc(100vh - 250px);
        padding: 0.75rem;
    }
    
    .message-bubble {
        max-width: 85%;
        padding: 0.65rem 0.9rem;
        font-size: 0.9rem;
    }
    
    .quick-option {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
        flex: 1 1 calc(50% - 0.25rem);
        min-width: 120px;
        text-align: center;
    }
    
    .chat-input {
        padding: 0.75rem;
    }
    
    .chat-text-input {
        padding: 0.65rem 0.9rem;
        font-size: 0.9rem;
    }
    
    .send-btn {
        width: 38px;
        height: 38px;
        font-size: 1.1rem;
    }
    
    .modal-close {
        top: 0.75rem;
        left: 0.75rem;
        font-size: 1.3rem;
        width: 32px;
        height: 32px;
        background: rgba(255,255,255,0.9);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .modal-buttons {
        flex-direction: column;
    }
    
    .animated-logo-container {
        width: 250px !important;
        height: 250px !important;
    }
    
    .background-letters {
        font-size: 6rem !important;
        top: 15px !important;
    }
    
    .signature-text {
        font-size: 2.8rem !important;
        top: 65px !important;
    }
    
    .logo-subtext {
        font-size: 0.9rem !important;
        top: 160px !important;
    }
}
