:root {
    --primary-color: #8B6F4E;
    --primary-light: #A68B6C;
    --secondary-color: #D6CCBE;
    --accent-color: #7A5A3A;
    --accent-dark: #5E4430;
    --text-dark: #4B3E32;
    --text-light: #7A6E62;
    --bg-body: #F9F6F0;
    --bg-section: #F3EFE7;
    --card-bg: #FFFFFF;
    --feature-bg: #FBF8F3;
    --faq-bg: #FFFFFF;
    --faq-open-bg: #FEFCF8;
    --footer-bg: #4B3E32;
    --footer-text: #F3EFE7;
    --header-bg: rgba(249, 246, 240, 0.95);
    --header-shadow: 0 2px 12px rgba(100, 80, 60, 0.06);
    --nav-link-color: #4B3E32;
    --mobile-menu-bg: #F9F6F0;
    --shadow: 0 10px 30px rgba(100, 80, 60, 0.06);
    --shadow-hover: 0 20px 40px rgba(100, 80, 60, 0.1);
    --btn-bg: var(--primary-color);
    --btn-text: #FFFFFF;
    --btn-hover-bg: var(--accent-dark);
    --btn-hover-text: #FFFFFF;
    --btn-outline-border: var(--primary-color);
    --btn-outline-color: var(--primary-color);
    --btn-outline-hover-bg: var(--primary-color);
    --btn-outline-hover-color: #FFFFFF;
    --hero-overlay-1: rgba(139, 111, 78, 0.6);
    --hero-overlay-2: rgba(94, 68, 48, 0.75);
    --logo-filter: none;
    --radius: 20px;
    --radius-lg: 24px;
    --transition: all 0.3s ease;
    --white: #FFFFFF;
    --bg-light: #F9F6F0;
    --progress-height: 3px;
    --progress-color: var(--primary-color);
    --surface: #FFFFFF;
    --border: #E2D9CF;
    --text-main: #3E2E22;
    --danger: #D97A5C;
    --danger-dark: #C25A3A;
}
body.dark {
    --primary-color: #C4A87C;
    --primary-light: #DBC29A;
    --secondary-color: #5E5040;
    --accent-color: #B49466;
    --accent-dark: #A0845C;
    --text-dark: #F3EFE7;
    --text-light: #D0C4B6;
    --bg-body: #2A2620;
    --bg-section: #35302A;
    --card-bg: #3E3832;
    --feature-bg: #312C26;
    --faq-bg: #3E3832;
    --faq-open-bg: #4A433C;
    --footer-bg: #1A1713;
    --footer-text: #F3EFE7;
    --header-bg: rgba(42, 38, 32, 0.94);
    --header-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
    --nav-link-color: #F3EFE7;
    --mobile-menu-bg: #2A2620;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    --shadow-hover: 0 20px 40px rgba(196, 168, 124, 0.2);
    --btn-bg: var(--primary-light);
    --btn-text: #2A2620;
    --btn-hover-bg: #FFFFFF;
    --btn-hover-text: #2A2620;
    --btn-outline-border: var(--primary-light);
    --btn-outline-color: var(--primary-light);
    --btn-outline-hover-bg: var(--primary-light);
    --btn-outline-hover-color: #2A2620;
    --hero-overlay-1: rgba(160, 132, 92, 0.6);
    --hero-overlay-2: rgba(120, 95, 65, 0.75);
    --logo-filter: brightness(1.2);
    --surface: #2C2822;
    --border: #5E5548;
    --text-main: #F3EFE7;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}
body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: var(--bg-body);
    overflow-x: hidden;
    letter-spacing: 0.01em;
    transition: background 0.3s ease, color 0.3s ease;
}
body, body *,
.glass-header, .glass-header *,
.service-card, .service-card *,
.review-card, .review-card *,
.overall-rating, .feature, .faq-item, .faq-item *,
.contact-cta, footer, footer *, .btn, .theme-toggle, .mobile-menu-btn span,
.glass-header::before, .logo img, .service-card img, .progress-bar {
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, opacity 0.3s ease, transform 0.2s ease, filter 0.3s ease;
}
.progress-bar-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--progress-height);
    background: transparent;
    z-index: 1001;
}
.progress-bar {
    width: 0%;
    height: 100%;
    background: var(--progress-color);
}
.glass-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--header-bg);
    backdrop-filter: blur(10px);
    box-shadow: var(--header-shadow);
    z-index: 1000;
    padding: 1rem 0;
}
.glass-header.scrolled {
    padding: 0.75rem 0;
    box-shadow: 0 4px 20px rgba(100, 80, 60, 0.1);
}
.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo img {
    height: 60px;
    width: auto;
    display: block;
    filter: var(--logo-filter);
}
.logo:hover {
    transform: scale(1.03);
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}
.nav-links a {
    font-weight: 500;
    color: var(--nav-link-color);
    position: relative;
    padding: 0.5rem 0;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width var(--transition);
}
.nav-links a:hover::after {
    width: 100%;
}
.nav-links a.dikidi-link {
    background: transparent;
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 40px;
    font-weight: 600;
}
.nav-links a.dikidi-link::after {
    display: none;
}
.nav-links a.dikidi-link:hover {
    background: rgba(139, 111, 78, 0.1);
}
.nav-links a#mobileReportErrorBtn,
.nav-links a#mobileInquiryBtn,
.footer-error-link,
.footer-inquiry-link {
    font-size: 1.2rem;
    line-height: 1;
    padding: 0.3rem 0.6rem;
}
.nav-links a#mobileReportErrorBtn span,
.nav-links a#mobileInquiryBtn span,
.footer-error-link span,
.footer-inquiry-link span {
    display: none;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2rem;
    background: var(--btn-bg);
    color: var(--btn-text);
    border-radius: 50px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    gap: 8px;
    transition: all 0.2s ease;
}
.btn:hover {
    background: var(--btn-hover-bg);
    color: var(--btn-hover-text);
    transform: translateY(-2px);
}
.btn-outline {
    background: transparent;
    border: 2px solid var(--btn-outline-border);
    color: var(--btn-outline-color);
}
.btn-outline:hover {
    background: var(--btn-outline-hover-bg);
    color: var(--btn-outline-hover-color);
    border-color: var(--btn-outline-hover-bg);
}
.dikidi-hero-btn {
    border-color: #4A6FA5 !important;
    color: #4A6FA5 !important;
}
.dikidi-hero-btn:hover {
    background: #4A6FA5 !important;
    color: white !important;
}
.btn-sm {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
}
.theme-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    margin-right: 0.5rem;
    font-size: 1.3rem;
    color: var(--nav-link-color);
}
body:not(.dark) .theme-toggle .fa-sun { display: none; }
body.dark .theme-toggle .fa-moon { display: none; }
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0.5rem;
    background: none;
    border: none;
}
.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
}
.hero {
    margin-top: 70px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #FFFFFF;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/fon.jpeg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -2;
    transition: transform 0.1s ease-out;
    transform: scale(1);
}
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.1) 0%, transparent 40%), linear-gradient(135deg, var(--hero-overlay-1), var(--hero-overlay-2));
    z-index: -1;
    transition: background 0.3s ease;
}
.hero-content {
    max-width: 800px;
    animation: fadeInUp 1s ease;
    position: relative;
    z-index: 1;
}
.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.15);
    color: #FFFFFF;
}
.hero p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    opacity: 0.95;
}
section {
    padding: 6rem 2rem;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
}
.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}
.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}
#services {
    background: var(--bg-section);
    position: relative;
    padding-bottom: 6rem;
}
#services::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: var(--bg-body);
    clip-path: ellipse(60% 100% at 50% 100%);
    transition: background 0.3s ease;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}
.service-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    border: 1px solid transparent;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--secondary-color);
}
.service-img {
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: var(--bg-section);
}
.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.service-card:hover img {
    transform: scale(1.05);
}
.service-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.service-content h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}
.service-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
    flex-grow: 1;
}
.service-duration {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.service-duration i {
    color: var(--primary-color);
    font-size: 1rem;
}
.service-price {
    font-size: 1.6rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1.2rem;
}
.service-card .btn {
    align-self: flex-start;
}
.overall-rating {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.rating-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    line-height: 1;
}
.rating-stars {
    color: #D4A74A;
    font-size: 1.5rem;
    margin: 1rem 0;
    letter-spacing: 3px;
}
.rating-count {
    color: var(--text-light);
    font-size: 1rem;
}
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.review-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    position: relative;
}
.review-card .review-stars {
    color: #D4A74A;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    letter-spacing: 2px;
}
.review-card .review-text {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}
.review-card .review-author {
    font-weight: 600;
    color: var(--primary-color);
}
.review-card .review-date {
    font-size: 0.85rem;
    color: var(--text-light);
    opacity: 0.7;
    margin-top: 0.3rem;
}
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.about-img {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    aspect-ratio: 4/5;
}
.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius);
}
.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}
.feature {
    text-align: center;
    padding: 1.5rem;
    background: var(--feature-bg);
    border-radius: 15px;
}
.feature-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    background: var(--faq-bg);
    border-radius: 15px;
    margin-bottom: 1rem;
    box-shadow: 0 3px 15px rgba(100, 80, 60, 0.04);
    overflow: hidden;
}
.faq-item summary {
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-item summary::after {
    content: '▼';
    font-size: 1.2rem;
    transition: transform 0.3s;
    color: var(--primary-color);
}
.faq-item[open] summary {
    color: var(--accent-dark);
}
.faq-item[open] summary::after {
    transform: rotate(180deg);
}
.faq-item p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-light);
    line-height: 1.7;
}
.contacts-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2rem;
    align-items: start;
}
.contacts-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.contact-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid transparent;
}
.contact-card:hover {
    transform: translateY(-3px);
    border-color: var(--secondary-color);
}
.contact-card i {
    font-size: 1.8rem;
    color: var(--primary-color);
    flex-shrink: 0;
}
.contact-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}
.contact-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}
.small-note {
    font-size: 0.8rem;
    opacity: 0.7;
    margin-top: 0.25rem;
}
.btn-copy-address {
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 40px;
    font-size: 0.75rem;
    cursor: pointer;
    margin-top: 0.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: var(--transition);
}
.btn-copy-address:hover {
    background: var(--primary-color);
    color: white;
}
.map-container {
    position: relative;
    background: var(--card-bg);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.map-container.map-blocked {
    pointer-events: none;
}
.map-activate-btn {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 40px;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    cursor: pointer;
    z-index: 20;
    white-space: nowrap;
    pointer-events: auto;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    transition: all 0.2s;
}
.map-activate-btn:hover {
    background: var(--accent-dark);
}
@media (min-width: 768px) {
    .map-activate-btn {
        display: none;
    }
}
footer {
    background: var(--footer-bg);
    color: var(--footer-text);
    padding: 3rem 2rem 1.5rem;
    text-align: center;
}
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}
.footer-logo img {
    height: 60px;
    width: auto;
    margin: 0 auto 1rem;
    display: block;
    filter: none;
    opacity: 0.9;
    transition: opacity 0.3s ease, transform 0.2s ease;
}
.footer-logo:hover img {
    opacity: 1;
    transform: scale(1.02);
}
body.dark .footer-logo img {
    filter: none;
}
.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}
.footer-links a {
    opacity: 0.85;
}
.footer-links a:hover {
    opacity: 1;
    color: var(--secondary-color);
}
.footer-dikidi {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.footer-dikidi i {
    font-size: 0.9rem;
}
.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 1.5rem 0;
}
.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(160, 132, 92, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.1rem;
}
.social-links a:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
}
.social-links a.dikidi-social {
    background: #4A6FA5;
    color: white;
}
.social-links a.dikidi-social:hover {
    background: #3D5A8C;
    transform: translateY(-3px);
}
.footer-bottom {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
    opacity: 0.7;
}
#scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: var(--btn-accent-text);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    border: none;
}
#scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}
#scroll-to-top:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}
.skeleton {
    background: linear-gradient(90deg, var(--bg-section) 25%, var(--card-bg) 50%, var(--bg-section) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: var(--radius);
}
.skeleton-card {
    height: 200px;
    margin-bottom: 1rem;
}
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
@media (max-width: 768px) {
    .mobile-menu-btn { display: flex; }
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--mobile-menu-bg);
        flex-direction: column;
        padding: 1.5rem 2rem;
        gap: 1rem;
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    }
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
    .about-content { grid-template-columns: 1fr; }
    .features { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2.5rem; }
    .contacts-wrapper { grid-template-columns: 1fr; }
    .about-text, .about-text .features, .faq-container {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    .pwa-install-btn {
        display: block !important;
        bottom: 70px;
    }
    .service-img {
        aspect-ratio: 1 / 1;
    }
    .service-card {
        max-width: 100%;
    }
}
@media (min-width: 1400px) {
    .container, .header-container, .footer-content { max-width: 1400px; }
    .hero h1 { font-size: 4.5rem; }
    .hero p { font-size: 1.5rem; }
    .services-grid, .reviews-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 2.5rem;
    }
    section { padding: 7rem 3rem; }
}
@media (min-width: 1920px) {
    .hero h1 { font-size: 5rem; }
    .services-grid, .reviews-grid { grid-template-columns: repeat(4, 1fr); }
    .container, .header-container, .footer-content { max-width: 1600px; }
    section { padding: 8rem 4rem; }
}
.discounts-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}
.badge-count {
    background: var(--card-bg);
    padding: 0.2rem 0.8rem;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--primary-color);
}
.toolbar {
    display: flex;
    gap: 10px;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}
.sort-select {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 60px;
    padding: 0.4rem 1rem;
    font-family: inherit;
    color: var(--text-main);
    cursor: pointer;
}
.discount-grid, .discounts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.8rem;
    margin-bottom: 2rem;
}
.discount-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
    position: relative;
    cursor: grab;
}
.discount-card:active { cursor: grabbing; }
.discount-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--secondary-color);
}
.discount-checkbox {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--primary-color);
}
.discount-percent {
    display: inline-block;
    background: rgba(160,132,92,0.15);
    color: var(--accent-color);
    font-weight: 800;
    font-size: 1.6rem;
    padding: 0.2rem 0.8rem;
    border-radius: 80px;
    align-self: flex-start;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}
body.dark .discount-percent { background: rgba(196,168,124,0.25); }
.discount-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}
.discount-desc {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.4;
    flex: 1;
}
.discount-expiry {
    font-size: 0.75rem;
    background: var(--bg-section);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    display: inline-block;
    width: fit-content;
    margin: 0.75rem 0;
    color: var(--text-light);
}
.discount-expiry.warning { background: rgba(224,166,74,0.2); color:#E0A64A; font-weight:500; }
.card-actions {
    display: flex;
    justify-content: flex-end;
    gap: 0.8rem;
    margin-top: 0.5rem;
}
.icon-btn {
    background: transparent;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    color: var(--text-light);
    transition: var(--transition);
    padding: 0.3rem;
    border-radius: 40px;
}
.icon-btn:hover { color:#D97A5C; background:rgba(217,122,92,0.1); }
.edit-btn:hover { color: var(--primary-color); }
.form-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-top: 2rem;
    border: 1px solid var(--secondary-color);
    box-shadow: var(--shadow);
}
.form-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}
.form-group input, .form-group textarea {
    flex: 1;
    background: var(--bg-body);
    border: 1px solid var(--secondary-color);
    padding: 0.7rem 1rem;
    border-radius: 12px;
    font-family: inherit;
    color: var(--text-dark);
}
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    z-index: 3000;
    justify-content: center;
    align-items: center;
}
.modal.active { display: flex; }
.modal-content {
    background: var(--card-bg);
    border-radius: var(--radius);
    max-width: 500px;
    width: 90%;
    padding: 1.8rem;
}
.toast-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 340px;
}
.toast {
    background: var(--footer-bg);
    color: var(--footer-text);
    padding: 0.8rem 1.2rem;
    border-radius: 20px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    animation: slideIn 0.25s ease;
    border-left: 4px solid var(--primary-color);
}
@keyframes slideIn {
    from { opacity: 0; transform: translateX(60px); }
    to { opacity: 1; transform: translateX(0); }
}
.btn-sm { padding: 0.4rem 1rem; font-size:0.8rem; }
.btn-outline-light {
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}
.empty-state, .discounts-empty {
    text-align: center;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: var(--radius);
    color: var(--text-light);
}
.discounts-empty i { font-size:3rem; margin-bottom:1rem; opacity:0.6; }
.discount-promocode {
    font-size: 0.75rem;
    background: rgba(160,132,92,0.15);
    padding: 0.25rem 0.75rem;
    border-radius: 40px;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    width: fit-content;
    margin: 0.5rem 0;
    color: var(--accent-color);
}
body.dark .discount-promocode { background: rgba(196,168,124,0.25); }
body:not(.dark) .discount-percent { background: rgba(122,92,62,0.12); color:#5C4028; }
body:not(.dark) .discount-title { color:#2E241E; }
body:not(.dark) .discount-desc { color:#4A3A2C; }
body:not(.dark) .discount-expiry { background:#EDE5DB; color:#5A4A3A; }
body:not(.dark) .form-card { border-color:#D6CCBE; background:#FFFFFF; }
body:not(.dark) .form-group input, body:not(.dark) .form-group textarea { background:#FEFCF8; border-color:#D6CCBE; color:#2E241E; }
body:not(.dark) .modal-content { background:#FFFFFF; }
body:not(.dark) .badge-count { background:#EDE5DB; color:#5C4028; }
body:not(.dark) .sort-select { background:#FEFCF8; color:#2E241E; }
body:not(.dark) .filter-btn { background:#FEFCF8; color:#2E241E; }
body:not(.dark) .filter-btn.active { background:var(--primary-color); color:white; }
body.dark .logo img { filter: none; }
.review-form-container {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: var(--radius);
    margin-top: 2rem;
}
.review-form-container h3 { margin-bottom:1rem; color:var(--primary-color); }
.stat-card {
    text-align: center;
    padding: 0.5rem;
    background: var(--bg-section);
    border-radius: 12px;
    min-width: 100px;
}
.stat-card i { font-size:1.5rem; color:var(--primary-color); margin-right:0.5rem; }
.stat-card span { font-weight:bold; font-size:1.2rem; }
.review-reply {
    margin-top: 0.8rem;
    padding: 0.6rem;
    background: var(--bg-section);
    border-radius: 12px;
    font-size: 0.9rem;
    border-left: 3px solid var(--primary-color);
}
.review-admin-card .existing-reply {
    margin-top:0.5rem;
    font-size:0.85rem;
    background:var(--bg-section);
    padding:0.5rem;
    border-radius:12px;
    color:var(--primary-color);
}
.reply-form {
    margin-top:0.5rem;
    display:flex;
    gap:0.5rem;
    flex-wrap:wrap;
}
.reply-form input {
    flex:1;
    padding:0.4rem 0.8rem;
    border-radius:20px;
    border:1px solid var(--border);
    background:var(--bg-body);
}
.reply-btn {
    background:var(--primary-color);
    color:white;
    border:none;
    padding:0.4rem 1rem;
    border-radius:20px;
    cursor:pointer;
}
.image-preview {
    max-width: 150px;
    max-height: 150px;
    margin-top: 0.5rem;
    border-radius: 12px;
    border: 2px solid var(--primary-color);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    background: var(--bg-section);
    padding: 4px;
}
.btn-outline#clearFiltersBtn {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-main);
}
.btn-outline#clearFiltersBtn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}
.move-up-discount, .move-down-discount { transition: var(--transition); }
.move-up-discount:hover, .move-down-discount:hover {
    background: var(--primary-color);
    color: white;
}
.star-rating i {
    font-size: 1.5rem;
    cursor: pointer;
    color: #D4A74A;
    transition: color 0.2s;
}
.star-rating i.far { color: #ddd; }
.star-rating i.fas { color: #D4A74A; }
.rating-input { margin-bottom: 1rem; }
#showMoreReviewsBtn, #showMoreServicesBtn, #showMoreDiscountsBtn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 40px;
    cursor: pointer;
    transition: 0.2s;
    margin: 1rem auto;
    display: block;
}
#showMoreReviewsBtn:hover, #showMoreServicesBtn:hover, #showMoreDiscountsBtn:hover {
    background: var(--accent-dark);
    transform: scale(1.02);
}
.editor-section {
    background: var(--card-bg);
    padding: 1rem;
    border-radius: var(--radius);
    margin-bottom: 1rem;
}
.feature-editor-row, .faq-editor-row {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}
.feature-editor-row input, .feature-editor-row textarea,
.faq-editor-row input, .faq-editor-row textarea {
    background: var(--bg-body);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0.4rem;
}
.hero::before {
    transform: scale(var(--parallax-scale, 1));
    will-change: transform;
}
.view-mode-selector {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}
.mode-label { font-weight:500; color:var(--text-light); }
.view-mode-btn {
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 40px;
    padding: 0.4rem 1.2rem;
    font-family: inherit;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-main);
}
.view-mode-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}
.view-mode-btn:hover:not(.active) {
    background: var(--bg-section);
    border-color: var(--primary-light);
}
.pagination-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin: 2rem 0 1rem;
    flex-wrap: wrap;
}
.pagination-btn {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 40px;
    padding: 0.4rem 1rem;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-main);
}
.pagination-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}
.pagination-btn:disabled { opacity:0.4; cursor:not-allowed; }
.pagination-btn.nav { font-weight:600; background:var(--bg-section); }
.pagination-numbers { display: flex; gap:0.3rem; align-items:center; }
.chart-container canvas { max-height: 400px; width:100%; }
.unsaved-warning {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: var(--danger);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 40px;
    font-size: 0.8rem;
    z-index: 1000;
    display: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.backup-item {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 0.8rem;
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.pwa-install-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: var(--primary-color, #8B6F4E);
    color: white;
    border: none;
    padding: 12px 18px;
    border-radius: 50px;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    display: none;
    font-size: 0.9rem;
    font-family: inherit;
    transition: all 0.2s ease;
}
.pwa-install-btn:hover {
    background: var(--accent-dark, #5E4430);
    transform: translateY(-2px);
}
.pwa-install-btn i {
    margin-right: 8px;
}
#trashDiscountsList .discount-card,
#trashServicesList .service-card-admin {
    background: var(--card-bg);
    border-left: 4px solid var(--danger);
}
#trashDiscountsList .discount-card .discount-percent { opacity:0.7; }
#trashServicesList .service-card-admin { padding:1rem; }
.sortable-ghost { opacity:0.4; background:var(--bg-section); }
.sortable-drag { opacity:0.5; cursor:grabbing; }
.drag-handle { cursor:grab; text-align:center; padding:5px; color:var(--text-light); }
.drag-handle:active { cursor:grabbing; }
.map-container iframe {
    border-radius:20px;
    display:block;
    width:100%;
    height:400px;
    border:none;
}
.calendar-container {
    background:var(--card-bg);
    border-radius:24px;
    overflow:hidden;
    margin-top:1rem;
}
.calendar-header {
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:1rem 1.5rem;
    border-bottom:1px solid var(--border);
}
.month-nav button {
    background:transparent;
    border:none;
    font-size:1.2rem;
    cursor:pointer;
    color:var(--primary-color);
    width:36px;
    height:36px;
    border-radius:50%;
}
.month-nav button:hover { background:var(--bg-section); }
.current-month { font-size:1.3rem; font-weight:600; }
.weekdays {
    display:grid;
    grid-template-columns:repeat(7,1fr);
    background:var(--bg-section);
    padding:0.8rem 0;
    text-align:center;
    font-weight:500;
    color:var(--text-light);
    border-bottom:1px solid var(--border);
}
.calendar-grid { display:grid; grid-template-columns:repeat(7,1fr); }
.calendar-day {
    min-height:100px;
    padding:0.5rem;
    border-right:1px solid var(--border);
    border-bottom:1px solid var(--border);
    cursor:pointer;
    background:var(--card-bg);
}
.calendar-day.selected {
    background:rgba(160,132,92,0.1);
    outline:2px solid var(--primary-color);
    outline-offset:-1px;
}
.calendar-day.selected .day-number {
    background:var(--primary-color);
    color:white;
}
.day-number {
    display:inline-block;
    width:32px;
    text-align:center;
    line-height:32px;
    border-radius:50%;
    margin-bottom:0.3rem;
}
.work-schedule {
    font-size:0.7rem;
    background:var(--bg-section);
    padding:0.2rem 0.4rem;
    border-radius:12px;
    display:inline-block;
    margin-top:0.2rem;
    word-break:break-word;
}
.other-month { color:var(--text-light); opacity:0.7; }
.bottom-sheet {
    position:fixed;
    bottom:0;
    left:0;
    right:0;
    background:var(--card-bg);
    border-radius:28px 28px 0 0;
    box-shadow:0 -4px 30px rgba(0,0,0,0.1);
    transform:translateY(100%);
    transition:transform 0.3s cubic-bezier(0.2,0.9,0.4,1.1);
    z-index:1000;
    padding:1.5rem;
}
.bottom-sheet.open { transform:translateY(0); }
.sheet-overlay {
    position:fixed;
    top:0;
    left:0;
    right:0;
    bottom:0;
    background:rgba(0,0,0,0.4);
    backdrop-filter:blur(3px);
    z-index:999;
    visibility:hidden;
    opacity:0;
    transition:opacity 0.25s;
}
.sheet-overlay.active { visibility:visible; opacity:1; }
.sheet-title { font-size:1.4rem; font-weight:600; margin-bottom:1.2rem; }
.sheet-option {
    background:var(--bg-section);
    padding:1rem 1.2rem;
    border-radius:24px;
    margin-bottom:1rem;
    display:flex;
    justify-content:space-between;
    align-items:center;
    cursor:pointer;
}
.toggle-switch {
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-bottom:1.2rem;
}
.switch {
    position:relative;
    display:inline-block;
    width:48px;
    height:24px;
}
.switch input { opacity:0; width:0; height:0; }
.slider {
    position:absolute;
    cursor:pointer;
    top:0;
    left:0;
    right:0;
    bottom:0;
    background-color:#D9D0C5;
    transition:0.2s;
    border-radius:34px;
}
.slider:before {
    position:absolute;
    content:"";
    height:18px;
    width:18px;
    left:3px;
    bottom:3px;
    background-color:white;
    transition:0.2s;
    border-radius:50%;
}
input:checked + .slider { background-color:var(--primary-color); }
input:checked + .slider:before { transform:translateX(24px); }
.time-row {
    display:flex;
    gap:1rem;
    margin-top:1rem;
    align-items:center;
}
.time-field { flex:1; }
.time-field label { font-size:0.75rem; display:block; margin-bottom:0.25rem; color:var(--text-light); }
input[type="time"] {
    width:100%;
    padding:0.7rem;
    border-radius:16px;
    border:1px solid var(--border);
    background:var(--bg-body);
    font-family:inherit;
}
.break-item {
    background:var(--bg-section);
    padding:0.8rem;
    border-radius:20px;
    margin-top:0.8rem;
}
.break-header {
    display:flex;
    justify-content:space-between;
    margin-bottom:0.5rem;
    font-weight:500;
}
.remove-break {
    background:none;
    border:none;
    color:var(--danger);
    cursor:pointer;
}
.add-break-btn {
    margin-top:1rem;
    background:none;
    border:1px dashed var(--border);
    padding:0.6rem;
    border-radius:40px;
    width:100%;
    cursor:pointer;
    color:var(--primary-color);
}
.btn-save {
    background:var(--primary-color);
    color:white;
    border:none;
    padding:0.9rem;
    border-radius:40px;
    font-weight:600;
    width:100%;
    margin-top:1.8rem;
    cursor:pointer;
}
.close-modal {
    background:none;
    border:none;
    font-size:1.4rem;
    cursor:pointer;
    color:var(--text-light);
}
.discount-offered-badge {
    background:#4CAF50;
    color:white;
    padding:0.2rem 0.5rem;
    border-radius:20px;
    font-size:0.7rem;
    display:inline-block;
    margin-top:0.5rem;
}
.offer-discount-btn {
    background:#4CAF50;
    color:white;
    border:none;
    border-radius:20px;
    padding:0.3rem 0.8rem;
    cursor:pointer;
    font-size:0.7rem;
}
.offer-discount-btn:hover { background:#45a049; }
a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.2s ease;
}
a:hover { color: var(--primary-color); }
.nav-links a { color: var(--nav-link-color); font-weight:500; }
.nav-links a:hover { color: var(--primary-color); }
.footer-links a { color: var(--footer-text); opacity:0.85; }
.footer-links a:hover { opacity:1; color: var(--secondary-color); }
.service-content .btn, .hero-buttons .btn {
    background: var(--primary-color);
    color: white;
}
.service-content .btn:hover, .hero-buttons .btn:hover { background: var(--accent-dark); }
.delete-reply-btn {
    background: none;
    border: none;
    color: var(--danger);
    cursor: pointer;
    font-size: 0.8rem;
    margin-left: 0.5rem;
    vertical-align: middle;
}
.delete-reply-btn:hover {
    color: var(--danger-dark);
}
#requestPermBtnMain,
#requestPermBtn {
    background: var(--primary-color) !important;
    color: white !important;
    border: none !important;
    transition: var(--transition);
}
#requestPermBtnMain:hover,
#requestPermBtn:hover {
    background: var(--accent-dark) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}
.error-report-modal .modal-content {
    max-width: 500px;
}
.error-report-form textarea {
    width: 100%;
    padding: 0.7rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: var(--bg-body);
    font-family: inherit;
    margin-bottom: 1rem;
}
.error-status-badge {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    border-radius: 40px;
    font-size: 0.7rem;
    background: var(--bg-section);
}
.error-status-badge.resolved { background: #4CAF50; color: white; }
.error-status-badge.pending { background: var(--danger); color: white; }
.report-error-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--danger);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    transition: all 0.2s ease;
    border: none;
}
.report-error-icon:hover {
    transform: scale(1.05);
    background: var(--danger-dark);
}
.footer-error-link {
    margin-left: 1rem;
    font-size: 0.85rem;
}
body.dark .error-report-form input,
body.dark .error-report-form textarea {
    color: #F3EFE7;
    background: #2C2822;
    border-color: #5E5040;
}
body.dark .error-report-form input::placeholder,
body.dark .error-report-form textarea::placeholder {
    color: #A09080;
}
.clickable-note {
    cursor: pointer;
    text-decoration: underline;
    text-decoration-style: dotted;
}
.clickable-note:hover {
    color: var(--primary-color);
}
.global-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 10000;
    display: none;
    justify-content: center;
    align-items: center;
}
.global-loader.active {
    display: flex;
}
.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #fff;
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}
.question-icon {
    position: fixed;
    bottom: 20px;
    right: 80px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    transition: all 0.2s ease;
    border: none;
}
.question-icon:hover {
    transform: scale(1.05);
    background: var(--accent-dark);
}
.inquiry-modal .modal-content {
    max-width: 500px;
}
.inquiry-form input,
.inquiry-form textarea {
    width: 100%;
    padding: 0.7rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: var(--bg-body);
    font-family: inherit;
    margin-bottom: 1rem;
}
.inquiry-form .form-group {
    margin-bottom: 1rem;
}
.inquiry-form label {
    display: block;
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
    color: var(--text-light);
}
.modal-error {
    background: rgba(217, 122, 92, 0.15);
    border-left: 3px solid var(--danger);
    padding: 0.6rem 1rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--danger);
}
.captcha-error-message {
    color: var(--danger);
    font-size: 0.85rem;
    margin-top: 0.5rem;
    display: none;
}
.inquiry-modal .modal-content,
.error-report-modal .modal-content,
.inquiry-modal .modal-content p,
.error-report-modal .modal-content p,
.inquiry-modal .modal-content label,
.error-report-modal .modal-content label,
.inquiry-modal .modal-content span:not(.btn):not(.close-modal),
.error-report-modal .modal-content span:not(.btn):not(.close-modal),
.inquiry-modal .modal-content div:not(.modal-error),
.error-report-modal .modal-content div:not(.modal-error),
#inquiryCaptchaQuestion,
#errorCaptchaQuestion,
.inquiry-form .captcha-question-text,
.error-report-form .captcha-question-text {
    color: var(--text-main) !important;
}
.inquiry-modal .modal-content h3,
.error-report-modal .modal-content h3 {
    color: var(--primary-color) !important;
}
body.dark .inquiry-modal .modal-content,
body.dark .error-report-modal .modal-content,
body.dark .inquiry-modal .modal-content p,
body.dark .error-report-modal .modal-content p,
body.dark .inquiry-modal .modal-content label,
body.dark .error-report-modal .modal-content label,
body.dark .inquiry-modal .modal-content span:not(.btn):not(.close-modal),
body.dark .error-report-modal .modal-content span:not(.btn):not(.close-modal),
body.dark .inquiry-modal .modal-content div:not(.modal-error),
body.dark .error-report-modal .modal-content div:not(.modal-error),
body.dark #inquiryCaptchaQuestion,
body.dark #errorCaptchaQuestion,
body.dark .inquiry-form .captcha-question-text,
body.dark .error-report-form .captcha-question-text {
    color: var(--text-main) !important;
}
body.dark .inquiry-modal .modal-content h3,
body.dark .error-report-modal .modal-content h3 {
    color: var(--primary-color) !important;
}

.discount-card[data-giveaway="true"] .discount-percent {
    display: none;
}