:root {
    --black: #0a0a0a;
    --red: #f0470c;
    --yellow: #fdb302;
    --white: #ffffff;
    --off-white: #fafafa;
    --light-gray: #f5f5f7;
    --gray: #86868b;
    --dark-gray: #1d1d1f;
    --gradient: linear-gradient(135deg, #0a0a0a 0%, #f0470c 50%, #fdb302 100%);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
    --border-radius: 12px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 400;
    background: var(--white);
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--gray);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--red);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-sm);
    background: rgba(255, 255, 255, 0.95);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.logo {
    flex-shrink: 0;
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    height: 36px;
    width: auto;
    display: block;
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 15px;
    align-items: center;
}

.nav-link {
    color: var(--dark-gray);
    text-decoration: none;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 1px;
    position: relative;
    padding: 2px 0;
    transition: var(--transition);
    text-transform: uppercase;
    border-bottom: 2px solid var(--yellow);
}

.nav-link:hover {
    color: var(--red);
}

.nav-link:hover::before {
    width: 100%;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    min-width: 280px;
    padding: 8px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    transition: var(--transition);
    border: 1px solid var(--light-gray);
}

.dropdown:hover .dropdown-content {
    display: block;
    opacity: 1;
    animation: dropdownIn 0.3s ease;
}

@keyframes dropdownIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.dropdown-content a {
    color: var(--dark-gray);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
    border-radius: 8px;
}

.dropdown-content a ion-icon {
    font-size: 20px;
    color: var(--gray);
    transition: var(--transition);
}

.dropdown-content a:hover {
    background: var(--light-gray);
    color: var(--red);
    transform: translateX(5px);
}

.dropdown-content a:hover ion-icon {
    color: var(--red);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.phone {
    color: var(--dark-gray);
    text-decoration: none;
    font-weight: 900;
    font-size: 16px;
    transition: var(--transition);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
}

.phone ion-icon {
    font-size: 14px;
    color: var(--red);
}

.phone:hover {
    color: var(--red);
}

/* Buttons */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 13px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn ion-icon {
    font-size: 18px;
}

.btn-primary {
    background: var(--black);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--red);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(240, 71, 12, 0.3);
}

.btn-dark {
    background: var(--black);
    color: var(--white);
}

.btn-dark:hover {
    background: var(--red);
    transform: translateY(-2px);
    /*box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);*/
}

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

.btn-outline:hover {
    background: var(--black);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-small {
    padding: 10px 20px;
    font-size: 12px;
}

.btn-large {
    padding: 16px 32px;
    font-size: 15px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: var(--white);
    display: flex;
    align-items: center;
    position: relative;
    padding: 130px 32px 60px;
    overflow: hidden;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-main {
    flex: 1;
    max-width: 650px;
    animation: fadeInUp 1s ease-out;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--light-gray);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 24px;
}

.hero-badge ion-icon {
    font-size: 16px;
}

.hero-title {
    font-weight: 500;
    font-size: 58px;
    line-height: 1.1;
    color: var(--black);
    margin-bottom: 24px;
    letter-spacing: 1px;
}

.hero-title .highlight {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

.hero-subtitle {
    font-weight: 500;
    font-size: 21px;
    color: var(--black);
    margin-bottom: 40px;
    line-height: 1.5;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

/* Hero CTA Block */
.hero-cta-block {
    flex: 0 0 450px;
    background: var(--yellow);
    border-radius: 20px;
    padding: 30px 40px;
    text-align: center;
    position: relative;
    animation: fadeInRight 1s ease-out 0.3s both;
    box-shadow: 0 15px 40px rgba(253, 179, 2, 0.3);
    border: 3px solid var(--white);
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.cta-icon {
    width: 64px;
    height: 64px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--black);
}

.cta-icon ion-icon {
    font-size: 32px;
}

.hero-cta-block h2 {
    font-weight: 900;
    font-size: 24px;
    color: var(--black);
    margin-bottom: 12px;
    line-height: 1.3;
}

.hero-cta-block p {
    font-size: 15px;
    color: var(--dark-gray);
    margin-bottom: 15px;
    line-height: 1.5;
}

.hero-cta-block .btn {
    width: 100%;
    font-weight: 900;
    justify-content: center;
    margin-bottom: 4px;
}

.cta-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 13px;
    color: var(--dark-gray);
    font-weight: 500;
}

.cta-note ion-icon {
    font-size: 16px;
}

/* Section Title */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-weight: 900;
    text-transform: uppercase;
    font-size: 48px;
    color: var(--black);
    letter-spacing: 2px;
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.section-subtitle {
    color: var(--gray);
    font-size: 16px;
    max-width: 500px;
    margin: 0 auto;
}

/* Offers Section */
.offers {
    padding: 80px 32px;
    background: var(--off-white);
}

.offers-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.carousel-wrapper {
    overflow: hidden;
    border-radius: var(--border-radius);
}

.carousel-container {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.offer-slide {
    flex: 0 0 50%;
    padding: 0 12px;
}

.offer-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    min-height: 400px;
    cursor: pointer;
    position: relative;
    border: 1px solid var(--light-gray);
}

.offer-card:hover {
    transform: translateY(-4px);
    border-color: var(--red);
}

.offer-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.offer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.offer-card:hover .offer-image img {
    transform: scale(1.1);
}

.offer-content {
    flex: 1;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.offer-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 12px;
    background: var(--red);
    color: var(--white);
    font-size: 11px;
    font-weight: 500;
    border-radius: 50px;
    margin-bottom: 12px;
    align-self: flex-start;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.offer-tag ion-icon {
    font-size: 14px;
}

.offer-content h3 {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--black);
    line-height: 1.3;
}

.offer-content p {
    color: var(--gray);
    line-height: 1.5;
    font-size: 14px;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    color: var(--black);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.carousel-btn:hover {
    background: var(--black);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: -22px;
}

.carousel-btn.next {
    right: -22px;
}

.carousel-btn ion-icon {
    font-size: 20px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gray);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    padding: 0;
}

.carousel-dot.active {
    background: var(--red);
    width: 24px;
    border-radius: 4px;
}

/* Services Section */
.services {
    padding: 80px 32px;
    background: var(--white);
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius);
    padding: 28px 24px;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--red);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient);
    opacity: 0;
    transition: var(--transition);
}

.service-icon ion-icon {
    font-size: 24px;
    color: var(--white);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.service-card:hover .service-icon::after {
    opacity: 1;
}

.service-card:hover .service-icon ion-icon {
    color: var(--white);
}

.service-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.service-info h3 {
    font-weight: 700;
    font-size: 16px;
    color: var(--black);
    line-height: 1.3;
    transition: var(--transition);
}

.service-card:hover .service-info h3 {
    color: var(--red);
}

.service-desc {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.5;
    margin: 0;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    /*font-size: 13px;*/
    font-weight: 600;
    color: var(--red);
    margin-top: 4px;
    transition: var(--transition);
}

.service-link ion-icon {
    font-size: 16px;
    transition: var(--transition);
}

.service-card:hover .service-link {
    gap: 10px;
}

/* About Section */
.about {
    padding: 80px 32px;
    background: var(--off-white);
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text {
    animation: fadeInLeft 0.8s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.about-text h2 {
    font-weight: 900;
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--black);
    letter-spacing: -1px;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--gray);
    font-size: 15px;
}

.about-text .btn {
    margin-top: 12px;
}

.about-image {
    animation: fadeInRight 0.8s ease-out;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* CTA Section */
.cta-section {
    padding: 80px 32px;
    background: var(--yellow);
    text-align: center;
}

.cta-content h2 {
    font-weight: 900;
    font-size: 42px;
    color: var(--black);
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.cta-content p {
    font-weight: 500;
    font-size: 18px;
    color: var(--dark-gray);
    margin-bottom: 32px;
}

/* ============================================ */
/* ============ IMPROVED FOOTER =============== */
/* ============================================ */

.footer {
    background: var(--black);
    color: var(--white);
}

.footer-top {
    padding: 60px 32px 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.footer-contact-block {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    padding: 32px 36px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: var(--transition);
}

.footer-contact-block:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
}

.footer-contact-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.footer-contact-header ion-icon {
    font-size: 24px;
    color: var(--yellow);
}

.footer-contact-label {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-contact-address {
    font-size: 28px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--white);
    letter-spacing: -0.5px;
}

.footer-contact-address strong {
    background: var(--yellow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-contact-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-contact-item:hover {
    color: var(--white);
}

.footer-contact-item ion-icon {
    font-size: 18px;
    color: var(--yellow);
    flex-shrink: 0;
}

.footer-contact-item a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact-item a:hover {
    color: var(--yellow);
}

.footer-contact-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-contact-actions .btn {
    font-weight: 600;
}

.footer-contact-actions .btn-primary {
    background: var(--yellow);
    color: var(--black);
}

.footer-contact-actions .btn-primary:hover {
    background: var(--white);
    box-shadow: 0 10px 30px rgba(253, 179, 2, 0.3);
}

.footer-contact-actions .btn-outline {
    text-decoration: none;
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact-actions .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--yellow);
    color: var(--white);
}

.footer-services {
    padding-top: 4px;
}

.footer-title {
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 20px;
}

.footer-services-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 24px;
}

.footer-services-list li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
    display: inline-block;
    padding: 4px 0;
    position: relative;
}

.footer-services-list li a::before {
    content: '—';
    margin-right: 6px;
    color: var(--yellow);
    opacity: 0;
    transition: var(--transition);
}

.footer-services-list li a:hover {
    color: var(--yellow);
    transform: translateX(6px);
}

.footer-services-list li a:hover::before {
    opacity: 1;
}

.footer-bottom {
    padding: 24px 32px;
    background: rgba(0, 0, 0, 0.3);
}

.footer-bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    height: 28px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.footer-copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.3);
}

.footer-bottom-nav {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-bottom-nav a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-size: 13px;
    transition: var(--transition);
}

.footer-bottom-nav a:hover {
    color: var(--yellow);
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--yellow);
    color: var(--black);
    transform: translateY(-3px);
}

.footer-social ion-icon {
    font-size: 18px;
}

/* ============================================ */
/* ============ BOOKING MODAL ================= */
/* ============================================ */

.booking-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    overflow-y: auto;
    padding: 50px 20px;
    backdrop-filter: blur(10px);
}

.modal-content {
    background: var(--white);
    max-width: 520px;
    margin: 0 auto;
    padding: 40px;
    border-radius: 20px;
    position: relative;
    animation: modalIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--light-gray);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--red);
    color: var(--white);
    transform: rotate(90deg);
}

.modal-close ion-icon {
    font-size: 20px;
}

.modal-content h2 {
    font-weight: 900;
    font-size: 28px;
    margin-bottom: 8px;
    color: var(--black);
    letter-spacing: -0.5px;
}

.modal-subtitle {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 32px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--dark-gray);
    font-size: 14px;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="date"] {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--light-gray);
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    transition: var(--transition);
    background: var(--off-white);
}

.form-group input:focus {
    outline: none;
    border-color: var(--red);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(240, 71, 12, 0.1);
}

.time-slots {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.time-slot {
    padding: 12px 8px;
    background: var(--off-white);
    border: 1px solid var(--light-gray);
    border-radius: 8px;
    cursor: pointer;
    text-align: center;
    font-weight: 500;
    font-size: 13px;
    transition: var(--transition);
}

.time-slot:hover {
    background: var(--light-gray);
    border-color: var(--red);
    transform: translateY(-2px);
}

.time-slot.selected {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    margin-top: 2px;
    accent-color: var(--red);
}

.checkbox label {
    margin-bottom: 0;
    cursor: pointer;
    font-size: 13px;
    line-height: 1.4;
    color: var(--gray);
}

.booking-result {
    margin-top: 20px;
    padding: 16px;
    border-radius: 12px;
    text-align: center;
    display: none;
    font-weight: 500;
}

.booking-result.success {
    display: block;
    background: #f0fdf4;
    color: #16a34a;
    border: 1px solid #bbf7d0;
}

.booking-result.error {
    display: block;
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

/* ============================================ */
/* ============ DATE SELECTION ================ */
/* ============================================ */

.date-selection {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.date-quick-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.date-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px;
    background: var(--off-white);
    border: 2px solid var(--light-gray);
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
    gap: 4px;
}

.date-btn ion-icon {
    font-size: 24px;
    color: var(--gray);
    transition: var(--transition);
}

.date-btn span {
    font-weight: 500;
    font-size: 14px;
    color: var(--dark-gray);
}

.date-btn small {
    font-size: 12px;
    color: var(--gray);
    font-weight: 400;
}

.date-btn:hover {
    border-color: var(--red);
    background: var(--white);
    transform: translateY(-2px);
}

.date-btn:hover ion-icon {
    color: var(--red);
}

.date-btn.active {
    border-color: var(--red);
    background: var(--white);
    box-shadow: 0 4px 12px rgba(240, 71, 12, 0.15);
}

.date-btn.active ion-icon {
    color: var(--red);
}

.date-btn.active span {
    color: var(--red);
}

.date-custom-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    background: var(--off-white);
    border: 2px dashed var(--light-gray);
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: var(--dark-gray);
}

.date-custom-btn ion-icon {
    font-size: 20px;
    color: var(--gray);
    transition: var(--transition);
}

.date-custom-btn:hover {
    border-color: var(--red);
    background: var(--white);
    color: var(--red);
}

.date-custom-btn:hover ion-icon {
    color: var(--red);
}

.date-custom-btn.active {
    border-color: var(--red);
    background: var(--white);
    color: var(--red);
    border-style: solid;
}

.date-custom-btn.active ion-icon {
    color: var(--red);
}

.selected-date-display {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 8px;
    color: #16a34a;
    font-weight: 500;
    font-size: 14px;
    animation: fadeIn 0.3s ease;
}

.selected-date-display ion-icon {
    font-size: 20px;
}

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

#bookingDate {
    display: none;
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--light-gray);
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    transition: var(--transition);
    background: var(--off-white);
    margin-top: 8px;
    cursor: pointer;
}

#bookingDate.visible {
    display: block;
}

#bookingDate:focus {
    outline: none;
    border-color: var(--red);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(240, 71, 12, 0.1);
}

.header-address-link {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--dark-gray);
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    transition: var(--transition);
    text-decoration: none;
}

.header-address-link ion-icon {
    font-size: 14px;
    color: var(--red);
    flex-shrink: 0;
    transition: var(--transition);
}

.header-address-link span {
    color: var(--dark-gray);
    transition: var(--transition);
}

.header-address-link:hover ion-icon {
    transform: scale(1.1);
    color: var(--red);
}

.header-address-link:hover span {
    color: var(--red);
}

/* ============================================ */
/* ============ STATS SECTION ================= */
/* ============================================ */

.stats-section {
    padding: 60px 32px;
    background: var(--black);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 200%;
    background: var(--gradient);
    opacity: 0.05;
    pointer-events: none;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.stat-card {
    flex: 1;
    text-align: center;
    padding: 20px;
}

.stat-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--yellow);
    transition: var(--transition);
}

.stat-card:hover .stat-icon {
    background: var(--red);
    color: var(--white);
    transform: translateY(-5px);
}

.stat-icon ion-icon {
    font-size: 28px;
}

.stat-value {
    font-weight: 900;
    font-size: 42px;
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.stat-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-divider {
    width: 1px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

/* ============================================ */
/* ============ LOGO ANIMATION ================ */
/* ============================================ */

.logo {
    position: relative;
    display: inline-block;
    animation: logoWobble 2.5s ease-in-out infinite;
    transform-origin: 75% 50%;
}

.logo img {
    display: block;
    height: 36px;
    width: auto;
    transition: var(--transition);
}

@keyframes logoWobble {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-2deg);
    }
    50% {
        transform: rotate(0deg);
    }
    75% {
        transform: rotate(2deg);
    }
}

.logo:hover {
    animation-play-state: paused;
}

/* ============================================ */
/* ============ SERVICE PRICE ================= */
/* ============================================ */

.service-price {
    font-weight: 700;
    font-size: 15px;
    color: var(--red);
    margin-top: 2px;
}

@media (max-width: 576px) {
    .service-price {
        font-size: 14px;
    }
}

/* ============================================ */
/* ============ 404 ERROR PAGE ================ */
/* ============================================ */

.error-page {
    padding-top: 90px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--off-white);
}

.error-page-content {
    width: 100%;
    padding: 60px 20px;
}

.error-wrapper {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.error-code {
    margin-bottom: 30px;
}

.error-number {
    display: block;
    font-weight: 900;
    font-size: 80px;
    color: var(--black);
    line-height: 1;
    letter-spacing: -4px;
}

.error-number::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--gradient);
    margin: 16px auto 0;
    border-radius: 2px;
}

.error-text {
    display: block;
    font-weight: 500;
    font-size: 18px;
    color: var(--gray);
    margin-top: 8px;
}

.error-image {
    max-width: 300px;
    margin: 0 auto 30px;
}

.error-image img {
    width: 100%;
    height: auto;
    display: block;
}

.error-title {
    font-weight: 900;
    font-size: 28px;
    color: var(--black);
    margin-bottom: 12px;
}

.error-description {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.error-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.error-actions .btn {
    font-weight: 600;
}

.error-suggestions {
    border-top: 1px solid var(--light-gray);
    padding-top: 40px;
}

.error-suggestions h3 {
    font-weight: 600;
    font-size: 18px;
    color: var(--black);
    margin-bottom: 20px;
}

.suggestions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.suggestion-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 12px;
    background: var(--white);
    border-radius: var(--border-radius);
    text-decoration: none;
    color: var(--dark-gray);
    transition: var(--transition);
    border: 1px solid var(--light-gray);
}

.suggestion-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--red);
    color: var(--red);
}

.suggestion-item ion-icon {
    font-size: 28px;
    color: var(--red);
}

.suggestion-item span {
    font-weight: 500;
    font-size: 14px;
}

@media (max-width: 768px) {
    .error-page {
        padding-top: 70px;
    }

    .error-number {
        font-size: 60px;
    }

    .error-title {
        font-size: 22px;
    }

    .error-description {
        font-size: 15px;
    }

    .suggestions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .error-actions {
        flex-direction: column;
        align-items: center;
    }

    .error-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .error-number {
        font-size: 44px;
    }

    .error-text {
        font-size: 15px;
    }

    .error-title {
        font-size: 18px;
    }

    .suggestions-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .suggestion-item {
        padding: 16px 8px;
    }

    .suggestion-item ion-icon {
        font-size: 24px;
    }

    .suggestion-item span {
        font-size: 12px;
    }
}

/* ============================================ */
/* ============ ABOUT PAGE ==================== */
/* ============================================ */

.about-page {
    padding-top: 130px;
}

.about-page-header {
    background: var(--black);
    color: var(--white);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.about-page-header::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -100px;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
    background: var(--gradient);
    opacity: 0.05;
    border-radius: 50%;
    pointer-events: none;
}

.about-page-title {
    font-weight: 900;
    font-size: 48px;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.about-page-content {
    padding: 60px 0 80px;
    background: var(--off-white);
}

.about-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.about-text h2 {
    font-weight: 900;
    font-size: 32px;
    color: var(--black);
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-text p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.about-feature ion-icon {
    font-size: 22px;
    color: var(--red);
    flex-shrink: 0;
    margin-top: 2px;
}

.about-feature h4 {
    font-weight: 700;
    font-size: 16px;
    color: var(--black);
    margin-bottom: 2px;
}

.about-feature p {
    font-size: 14px;
    color: var(--gray);
    margin: 0;
}

.about-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s;
}

.about-image:hover img {
    transform: scale(1.03);
}

.about-advantages {
    margin-bottom: 60px;
}

.about-advantages h2 {
    font-weight: 900;
    font-size: 32px;
    color: var(--black);
    text-align: center;
    margin-bottom: 40px;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.advantage-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 32px 24px;
    text-align: center;
    border: 1px solid var(--light-gray);
    transition: var(--transition);
}

.advantage-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.advantage-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    background: var(--red);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.advantage-icon ion-icon {
    font-size: 28px;
}

.advantage-card h3 {
    font-weight: 700;
    font-size: 18px;
    color: var(--black);
    margin-bottom: 8px;
}

.advantage-card p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 60px;
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 40px;
    border: 1px solid var(--light-gray);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-weight: 900;
    font-size: 36px;
    color: var(--black);
    line-height: 1.2;
}

.stat-number::after {
    content: '';
    display: block;
    width: 30px;
    height: 3px;
    background: var(--red);
    margin: 8px auto 0;
    border-radius: 2px;
}

.stat-label {
    display: block;
    font-size: 14px;
    color: var(--gray);
    margin-top: 8px;
}

.about-cta {
    background: var(--yellow);
    border-radius: var(--border-radius);
    padding: 48px;
    text-align: center;
}

.about-cta-content h3 {
    font-weight: 900;
    font-size: 28px;
    color: var(--black);
    margin-bottom: 8px;
}

.about-cta-content p {
    font-size: 16px;
    color: var(--dark-gray);
    margin-bottom: 24px;
}

.about-cta-content .btn {
    font-weight: 600;
}

@media (max-width: 992px) {
    .about-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image img {
        height: 300px;
    }

    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-page {
        padding-top: 70px;
    }

    .about-page-header {
        padding: 40px 0;
    }

    .about-page-title {
        font-size: 32px;
    }

    .about-text h2 {
        font-size: 24px;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: 1fr 1fr;
        padding: 24px;
        gap: 16px;
    }

    .stat-number {
        font-size: 28px;
    }

    .about-cta {
        padding: 32px 20px;
    }

    .about-cta-content h3 {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .about-page-title {
        font-size: 26px;
    }

    .about-text h2 {
        font-size: 20px;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .stat-number {
        font-size: 24px;
    }

    .advantage-card {
        padding: 24px 16px;
    }
}

/* ============================================ */
/* ============ CONTACTS PAGE ================= */
/* ============================================ */

.contacts-page {
    padding-top: 130px;
}

.contacts-page-header {
    background: var(--black);
    color: var(--white);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.contacts-page-header::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -100px;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
    background: var(--gradient);
    opacity: 0.05;
    border-radius: 50%;
    pointer-events: none;
}

.contacts-page-title {
    font-weight: 900;
    font-size: 48px;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.contacts-page-content {
    padding: 60px 0 80px;
    background: var(--off-white);
}

.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contacts-info h2 {
    font-weight: 900;
    font-size: 32px;
    color: var(--black);
    margin-bottom: 8px;
}

.contacts-subtitle {
    font-size: 16px;
    color: var(--gray);
    margin-bottom: 32px;
}

.contact-group {
    margin-bottom: 28px;
}

.contact-group h3 {
    font-weight: 700;
    font-size: 16px;
    color: var(--black);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--light-gray);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 0;
}

.contact-item ion-icon {
    font-size: 22px;
    color: var(--red);
    flex-shrink: 0;
    width: 24px;
    text-align: center;
}

.contact-item .label {
    display: block;
    font-size: 12px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-item .value {
    display: block;
    font-weight: 600;
    font-size: 16px;
    color: var(--black);
}

.contact-item a.value {
    text-decoration: none;
    transition: var(--transition);
}

.contact-item a.value:hover {
    color: var(--red);
}

.contacts-map h2 {
    font-weight: 900;
    font-size: 32px;
    color: var(--black);
    margin-bottom: 20px;
}

.map-wrapper {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 16px;
}

.map-wrapper iframe {
    display: block;
}

.btn-route {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-weight: 600;
}

@media (max-width: 992px) {
    .contacts-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .contacts-page {
        padding-top: 70px;
    }

    .contacts-page-header {
        padding: 40px 0;
    }

    .contacts-page-title {
        font-size: 32px;
    }

    .contacts-info h2 {
        font-size: 24px;
    }

    .contacts-grid {
        gap: 30px;
    }

    .map-wrapper iframe {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .contacts-page-title {
        font-size: 26px;
    }

    .contacts-info h2 {
        font-size: 20px;
    }

    .contact-item .value {
        font-size: 14px;
    }

    .map-wrapper iframe {
        height: 220px;
    }

    .btn-route {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================ */
/* ============ PHONE DROPDOWN ================ */
/* ============================================ */

.phone-dropdown {
    position: relative;
    display: inline-block;
}

.phone-main {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 8px;
    transition: var(--transition);
}

.phone-main:hover {
    background: var(--light-gray);
}

.phone-arrow {
    font-size: 14px;
    transition: var(--transition);
    color: var(--gray);
}

.phone-dropdown:hover .phone-arrow {
    transform: rotate(180deg);
}

.phone-dropdown-content {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 280px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    padding: 12px;
    z-index: 999;
    border: 1px solid var(--light-gray);
}

.phone-dropdown:hover .phone-dropdown-content {
    display: block;
}

.phone-dropdown-item {
    padding: 8px 12px;
    border-radius: 8px;
    transition: var(--transition);
}

.phone-dropdown-item:hover {
    background: var(--light-gray);
}

.phone-label {
    display: block;
    font-size: 11px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.phone-link {
    display: block;
    font-weight: 700;
    font-size: 16px;
    color: var(--black);
    text-decoration: none;
    transition: var(--transition);
}

.phone-link:hover {
    color: var(--red);
}

.phone-dropdown-divider {
    height: 1px;
    background: var(--light-gray);
    margin: 8px 0;
}

.phone-dropdown-item.messenger .messenger-links {
    display: flex;
    gap: 8px;
    margin-top: 4px;
}

.messenger-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
    color: var(--white);
}

.messenger-link.whatsapp {
    background: #25D366;
}

.messenger-link.whatsapp:hover {
    background: #1da851;
    transform: scale(1.1);
}

.messenger-link.telegram {
    background: #0088cc;
}

.messenger-link.telegram:hover {
    background: #006699;
    transform: scale(1.1);
}

.messenger-link ion-icon {
    font-size: 18px;
}

/* ============================================ */
/* ============ FOOTER PHONES ================= */
/* ============================================ */

.footer-phone-group {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.footer-phone-group .phone-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: none;
    letter-spacing: 0;
}

.footer-phone-group a {
    font-weight: 600;
    font-size: 15px;
}

/* ============================================ */
/* ============ MOBILE MENU =================== */
/* ============================================ */

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 30px;
    position: relative;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--black);
    margin: 5px 0;
    transition: var(--transition);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    z-index: 999;
    padding-top: 80px;
    overflow: hidden;
}

.mobile-menu.active {
    display: block;
    animation: slideDown 0.3s ease;
}

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

.mobile-menu-inner {
    background: var(--white);
    height: 100%;
    overflow-y: auto;
    padding: 0 20px 20px;
    -webkit-overflow-scrolling: touch;
}

.mobile-menu-inner::-webkit-scrollbar {
    width: 4px;
}

.mobile-menu-inner::-webkit-scrollbar-track {
    background: var(--light-gray);
}

.mobile-menu-inner::-webkit-scrollbar-thumb {
    background: var(--red);
    border-radius: 4px;
}

.mobile-menu ul {
    list-style: none;
    padding-bottom: 16px;
}

.mobile-menu li {
    margin-bottom: 4px;
}

.mobile-menu a {
    color: var(--dark-gray);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    transition: var(--transition);
    border-radius: 8px;
}

.mobile-menu a:hover {
    background: var(--light-gray);
    color: var(--red);
    transform: translateX(5px);
}

.mobile-menu a:hover ion-icon {
    color: var(--red);
}

.mobile-menu a ion-icon {
    font-size: 20px;
    color: var(--red);
    width: 24px;
    text-align: center;
    flex-shrink: 0;
}

.mobile-menu-phone {
    padding-top: 16px;
    border-top: 1px solid var(--light-gray);
    margin-top: 4px;
    position: sticky;
    bottom: 0;
    background: var(--white);
    padding-bottom: 10px;
}

.mobile-menu-phone-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--red);
    color: var(--white) !important;
    border-radius: 10px !important;
    padding: 14px 20px !important;
    font-weight: 700 !important;
    font-size: 18px !important;
    text-decoration: none;
    transition: var(--transition);
}

.mobile-menu-phone-link:hover {
    background: var(--black) !important;
    color: var(--white) !important;
    transform: none !important;
}

.mobile-menu-phone-link ion-icon {
    font-size: 22px;
    color: var(--white) !important;
}

/* ============================================ */
/* ============ RESPONSIVE ==================== */
/* ============================================ */

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .header-container {
        padding: 16px 10px;
    }

    .main-nav {
        display: none;
    }

    .header-actions .phone {
        display: none;
    }

    .phone-dropdown {
        display: none !important;
    }

    .hero {
        padding: 100px 20px 40px;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .offer-slide {
        flex: 0 0 100%;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .time-slots {
        grid-template-columns: repeat(3, 1fr);
    }

    .section-title {
        font-size: 32px;
    }

    .cta-content h2 {
        font-size: 32px;
    }

    .offers,
    .services,
    .about {
        padding: 60px 20px;
    }

    .carousel-btn.prev {
        left: 10px;
    }

    .carousel-btn.next {
        right: 10px;
    }

    .footer-top {
        padding: 40px 20px 30px;
    }

    .footer-bottom {
        padding: 20px;
    }

    .footer-contact-block {
        padding: 24px 20px;
    }

    .footer-contact-address {
        font-size: 20px;
    }

    .footer-contact-details {
        gap: 8px;
    }

    .footer-contact-item {
        font-size: 14px;
    }

    .footer-contact-actions {
        flex-direction: column;
    }

    .footer-contact-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .footer-services-list {
        grid-template-columns: 1fr 1fr;
        gap: 4px 16px;
    }

    .footer-services-list li a {
        font-size: 13px;
    }

    .footer-bottom-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 16px;
    }

    .footer-brand {
        flex-direction: column;
        gap: 8px;
    }

    .footer-bottom-nav {
        justify-content: center;
        gap: 16px;
    }

    .footer-bottom-nav a {
        font-size: 12px;
    }

    .stats-section {
        padding: 40px 20px;
    }

    .stats-container {
        flex-direction: column;
        gap: 30px;
    }

    .stat-divider {
        width: 80%;
        height: 1px;
    }

    .stat-value {
        font-size: 32px;
    }

    .hero-cta-block {
        flex: 0 0 auto;
        width: 100%;
        max-width: 500px;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-main {
        max-width: 100%;
        text-align: center;
    }

    .hero-container {
        flex-direction: column;
        gap: 30px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .header-container {
        gap: 5px;
    }

    .logo img {
        height: 28px;
    }

    .header-address {
        display: none;
    }

    .mobile-menu-inner {
        padding: 0 16px 16px;
    }

    .mobile-menu a {
        font-size: 15px;
        padding: 10px 12px;
    }

    .mobile-menu-phone-link {
        font-size: 16px !important;
        padding: 12px 16px !important;
    }

    .hero-title {
        font-size: 32px;
    }

    .btn-large {
        padding: 14px 28px;
        font-size: 14px;
    }

    .time-slots {
        grid-template-columns: repeat(2, 1fr);
    }

    .modal-content {
        padding: 24px 20px;
    }

    .section-title {
        font-size: 22px;
    }

    .hero-cta-block {
        padding: 32px 24px;
    }

    .footer-contact-address {
        font-size: 18px;
    }

    .footer-services-list {
        grid-template-columns: 1fr;
    }

    .footer-top {
        padding: 30px 16px 24px;
    }

    .footer-bottom {
        padding: 16px;
    }

    .footer-contact-block {
        padding: 20px 16px;
    }
}

/* ============================================ */
/* ============ PARTS BUTTON ================== */
/* ============================================ */

.btn-parts {
    background: var(--yellow);
    color: var(--black);
    border: none;
    width: 100%;
    justify-content: center;
    margin-bottom: 16px;
    padding: 16px;
    font-size: 16px;
    font-weight: 700;
    transition: var(--transition);
}

.btn-parts:hover {
    background: #e6a200;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(253, 179, 2, 0.3);
}

.btn-parts ion-icon {
    font-size: 20px;
}

/* ============================================ */
/* ============ PARTS MODAL =================== */
/* ============================================ */

.parts-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    overflow-y: auto;
    padding: 50px 20px;
    backdrop-filter: blur(10px);
}

.parts-modal.active {
    display: block;
}

.parts-modal .modal-content {
    background: var(--white);
    max-width: 520px;
    margin: 0 auto;
    padding: 40px;
    border-radius: 20px;
    position: relative;
    animation: modalIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.parts-modal-icon {
    width: 64px;
    height: 64px;
    background: var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.parts-modal-icon ion-icon {
    font-size: 32px;
    color: var(--black);
}

.parts-modal .modal-content h2 {
    text-align: center;
}

.parts-modal .modal-subtitle {
    text-align: center;
    color: var(--gray);
    font-size: 15px;
    margin-bottom: 24px;
}

.parts-modal-info {
    margin-bottom: 24px;
}

.parts-modal-info p {
    font-size: 14px;
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 16px;
}

.parts-modal-info ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.parts-modal-info ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--dark-gray);
}

.parts-modal-info ul li ion-icon {
    font-size: 18px;
    color: #22c55e;
    flex-shrink: 0;
    margin-top: 2px;
}

.parts-modal-contacts {
    background: var(--off-white);
    border-radius: var(--border-radius);
    padding: 20px;
    margin-bottom: 24px;
}

.parts-phone {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 8px 0;
}

.parts-phone:first-child {
    border-bottom: 1px solid var(--light-gray);
}

.parts-phone ion-icon {
    font-size: 22px;
    color: var(--red);
    flex-shrink: 0;
    width: 24px;
    text-align: center;
}

.parts-phone .label {
    display: block;
    font-size: 11px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.parts-phone .phone-link {
    display: block;
    font-weight: 700;
    font-size: 18px;
    color: var(--black);
    text-decoration: none;
    transition: var(--transition);
}

.parts-phone .phone-link:hover {
    color: var(--red);
}

.parts-messengers {
    padding-top: 12px;
    margin-top: 8px;
    border-top: 1px solid var(--light-gray);
}

.parts-messengers .label {
    display: block;
    font-size: 11px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.parts-messengers .messenger-links {
    display: flex;
    gap: 10px;
}

.parts-messengers .messenger-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 13px;
    transition: var(--transition);
    color: var(--white);
}

.parts-messengers .messenger-link.whatsapp {
    background: #25D366;
}

.parts-messengers .messenger-link.whatsapp:hover {
    background: #1da851;
    transform: translateY(-2px);
}

.parts-messengers .messenger-link.telegram {
    background: #0088cc;
}

.parts-messengers .messenger-link.telegram:hover {
    background: #006699;
    transform: translateY(-2px);
}

.parts-messengers .messenger-link ion-icon {
    font-size: 18px;
}

.parts-modal .modal-content .btn {
    width: 100%;
    justify-content: center;
}

/* ============================================ */
/* ============ RESPONSIVE ==================== */
/* ============================================ */

@media (max-width: 480px) {
    .parts-modal .modal-content {
        padding: 24px 20px;
    }

    .parts-phone .phone-link {
        font-size: 16px;
    }

    .parts-messengers .messenger-links {
        flex-direction: column;
    }

    .parts-messengers .messenger-link {
        justify-content: center;
    }

    .btn-parts {
        font-size: 14px;
        padding: 14px;
    }
}

/* ============================================ */
/* ============ SERVICES MENU (под шапкой) ===== */
/* ============================================ */

.services-menu {
    position: relative;
    z-index: 100;
    display: none;
}

.services-menu-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px 5px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4px;
    flex-wrap: nowrap;
    position: relative;
}

/* Убираем overflow и скролл, так как пунктов ограниченное количество */
.services-menu-container {
    overflow: visible !important;
}

/* ============================================ */
/* ============ SERVICES MENU DROPDOWN ======== */
/* ============================================ */

.services-menu-dropdown {
    position: relative;
    display: inline-block;
    flex-shrink: 0;
}

.services-menu-dropdown-content {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 280px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    padding: 8px;
    z-index: 9999;
    border: 1px solid var(--light-gray);
    margin-top: 2px;
}

.services-menu-dropdown:hover .services-menu-dropdown-content {
    display: block !important;
}

.services-menu-dropdown-content .dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    color: var(--dark-gray);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
    border-radius: 8px;
}

.services-menu-dropdown-content .dropdown-item ion-icon {
    font-size: 18px;
    color: var(--gray);
    transition: var(--transition);
}

.services-menu-dropdown-content .dropdown-item:hover {
    background: var(--light-gray);
    color: var(--red);
}

.services-menu-dropdown-content .dropdown-item:hover ion-icon {
    color: var(--red);
}

/* ============================================ */
/* ============ SERVICES MENU LINKS =========== */
/* ============================================ */

.services-menu-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    color: var(--dark-gray);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    white-space: nowrap;
    transition: var(--transition);
    border-radius: 8px;
    flex-shrink: 0;
}

.services-menu-link:hover {
    background: var(--light-gray);
    color: var(--red);
}

/* Первый пункт "Все услуги" — оранжевый фон */
.services-menu-link.all-services {
    background: var(--yellow);
    color: var(--black);
    font-weight: 600;
    border-radius: 8px;
    padding: 10px 18px;
}

.services-menu-link.all-services:hover {
    background: #e6a200;
    color: var(--black);
}

.services-menu-link.all-services ion-icon {
    color: var(--black);
}

.services-menu-link .arrow-icon {
    font-size: 14px;
    transition: var(--transition);
}

.services-menu-link.all-services:hover .arrow-icon {
    transform: rotate(180deg);
}

/* ============================================ */
/* ============ RESPONSIVE ==================== */
/* ============================================ */

@media (min-width: 769px) {
    .services-menu {
        display: block;
    }
}

@media (max-width: 768px) {
    .services-menu {
        display: none;
    }
}

/* Макс мессенджер */
.messenger-link.max {
    background: #334dfa;
    padding: 6px;
    width: 36px;
    height: 36px;
}

.messenger-link.max:hover {
    background: #8f3cd8;
    transform: scale(1.1);
}

.messenger-max-icon {
    width: 22px;
    height: 22px;
    display: block;
    object-fit: contain;
}

/* ============================================ */
/* ============ HERO MESSENGERS =============== */
/* ============================================ */

.hero-messengers {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.messengers-label {
    display: block;
    font-size: 12px;
    color: var(--dark-gray);
    opacity: 0.6;
    margin-bottom: 10px;
    font-weight: 500;
}

.hero-messenger-links {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.hero-messenger-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
    color: var(--white);
}

.hero-messenger-link.whatsapp {
    background: #25D366;
}

.hero-messenger-link.whatsapp:hover {
    background: #1da851;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.hero-messenger-link.telegram {
    background: #0088cc;
}

.hero-messenger-link.telegram:hover {
    background: #006699;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 136, 204, 0.3);
}

.hero-messenger-link.max {
    background: #334dfa;
    padding: 8px;
}

.hero-messenger-link.max:hover {
    background: #8f3cd8;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(253, 179, 2, 0.3);
}

.hero-messenger-link ion-icon {
    font-size: 22px;
}

.hero-max-icon {
    width: 26px;
    height: 26px;
    display: block;
    object-fit: contain;
}

/* Адаптация для мобильных */
@media (max-width: 768px) {
    .hero-messenger-link {
        width: 40px;
        height: 40px;
    }
    
    .hero-messenger-link ion-icon {
        font-size: 18px;
    }
    
    .hero-max-icon {
        width: 22px;
        height: 22px;
    }
    
    .messengers-label {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .hero-messenger-links {
        gap: 10px;
    }
    
    .hero-messenger-link {
        width: 36px;
        height: 36px;
    }
    
    .hero-messenger-link ion-icon {
        font-size: 16px;
    }
    
    .hero-max-icon {
        width: 20px;
        height: 20px;
    }
}