:root {
    --primary-gradient-1: #e66465;
    --primary-gradient-2: #9198e5;
    --text-primary-white: #ffffff;
    --main-bg-color: #010101;
    --card-bg: rgba(255, 255, 255, 0.03);
    --border-color: rgba(255, 255, 255, 0.1);
    --success-color: #4CAF50;
}

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

body {
    background-color: var(--main-bg-color);
    color: #f0f0f0;
    font-family: 'Open Sans', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

/* ========== NAVBAR ========== */
.navbar {
    background-color: rgba(1, 1, 1, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--border-color);
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.navbar-brand {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-primary-white) !important;
    text-decoration: none;
}

.navbar-brand span {
    background: linear-gradient(90deg, var(--primary-gradient-1), var(--primary-gradient-2));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nav-link {
    font-family: 'Montserrat', sans-serif;
    color: #c0c0c0 !important;
    margin: 0 1rem;
    position: relative;
    transition: color 0.3s ease;
    padding-bottom: 0.5rem;
    text-decoration: none;
}

.nav-link:hover, .nav-link.active {
    color: var(--text-primary-white) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--primary-gradient-1), var(--primary-gradient-2));
    transition: width 0.3s ease-out;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 80%;
}

.navbar-toggler {
    border-color: rgba(255,255,255,0.2);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28240, 240, 240, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ========== HERO SECTION ========== */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(230, 100, 101, 0.05) 0%, rgba(145, 152, 229, 0.05) 100%);
    display: flex;
    align-items: center;
    padding: 100px 0 50px;
    position: relative;
    overflow: hidden;
}

/* Floating particles animation */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle cx="100" cy="200" r="2" fill="rgba(230,100,101,0.3)"/><circle cx="300" cy="400" r="1.5" fill="rgba(145,152,229,0.4)"/><circle cx="700" cy="150" r="1" fill="rgba(230,100,101,0.2)"/><circle cx="850" cy="350" r="2.5" fill="rgba(145,152,229,0.3)"/><circle cx="200" cy="700" r="1.8" fill="rgba(230,100,101,0.25)"/><circle cx="600" cy="800" r="1.2" fill="rgba(145,152,229,0.35)"/></svg>') repeat;
    animation: float-particles 20s linear infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes float-particles {
    0% { transform: translateY(0) translateX(0); }
    25% { transform: translateY(-20px) translateX(10px); }
    50% { transform: translateY(-10px) translateX(-5px); }
    75% { transform: translateY(-30px) translateX(15px); }
    100% { transform: translateY(0) translateX(0); }
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    z-index: 0;
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, var(--text-primary-white), #c0c0c0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #c0c0c0;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.subtitle {
    font-size: 1.3rem;
    color: var(--primary-gradient-1);
    font-weight: 600;
    margin-bottom: 1rem;
}

.offer-text {
    font-size: 1.1rem;
    color: #c0c0c0;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.75rem 1rem;
    border-radius: 50px;
    border: 1px solid var(--border-color);
}

.hero-feature i {
    color: var(--primary-gradient-1);
    font-size: 1rem;
}

.btn-outline-gradient {
    font-family: 'Montserrat', sans-serif;
    padding: 1rem 2rem;
    color: var(--text-primary-white);
    background: transparent;
    border: 2px solid var(--primary-gradient-1);
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    font-weight: 600;
}

.btn-outline-gradient:hover {
    background: linear-gradient(45deg, var(--primary-gradient-1), var(--primary-gradient-2));
    color: var(--text-primary-white);
    transform: translateY(-2px);
}

.about-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(230, 100, 101, 0.2);
}

.qualification-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.qualification-item i {
    color: var(--primary-gradient-1);
    font-size: 1.2rem;
    margin-top: 0.25rem;
}

.hero-buttons {
    margin: 2rem 0;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

.stat-item {
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--primary-gradient-1), var(--primary-gradient-2));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-number {
    filter: brightness(1.2);
    transform: scale(1.05);
}

.stat-label {
    color: #c0c0c0;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.stat-item:hover .stat-label {
    color: var(--text-primary-white);
}

.hero-image {
    position: relative;
    z-index: 2;
}

.hero-image-bg {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(45deg, var(--primary-gradient-1), var(--primary-gradient-2));
    border-radius: 20px;
    opacity: 0.1;
    z-index: -1;
}

.hero-image img {
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

/* ========== BUTTONS ========== */
.btn-gradient {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 1rem 2.5rem;
    color: var(--text-primary-white);
    border: none;
    border-radius: 50px;
    background: linear-gradient(45deg, var(--primary-gradient-1), var(--primary-gradient-2));
    background-size: 200% auto;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(230, 100, 101, 0.3);
    position: relative;
    overflow: hidden;
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
}

.btn-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-gradient:hover::before {
    left: 100%;
}

.btn-gradient:hover {
    background-position: right center;
    color: var(--text-primary-white);
    box-shadow: 0 8px 25px rgba(230, 100, 101, 0.5);
    transform: translateY(-2px) scale(1.02);
}

.btn-gradient:active {
    transform: translateY(0) scale(0.98);
}

.btn-outline {
    font-family: 'Montserrat', sans-serif;
    padding: 0.8rem 2rem;
    color: var(--text-primary-white);
    background: transparent;
    border: 2px solid transparent;
    border-radius: 50px;
    position: relative;
    background-image: linear-gradient(var(--main-bg-color), var(--main-bg-color)),
                    linear-gradient(45deg, var(--primary-gradient-1), var(--primary-gradient-2));
    background-origin: border-box;
    background-clip: padding-box, border-box;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
}

.btn-outline:hover {
    background: linear-gradient(45deg, var(--primary-gradient-1), var(--primary-gradient-2));
    color: var(--text-primary-white);
    transform: translateY(-2px);
}

/* ========== SECTIONS ========== */
.section {
    padding: 80px 0;
    position: relative;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, var(--primary-gradient-1), var(--primary-gradient-2));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-subtitle {
    text-align: center;
    color: #c0c0c0;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

/* ========== ABOUT SECTION ========== */
.about-image {
    position: relative;
    margin-bottom: 2rem;
}

.about-image img {
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.about-content {
    padding: 2rem 0;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #d0d0d0;
    margin-bottom: 2rem;
}

.credentials {
    margin-top: 2rem;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.credential-item:hover {
    background: rgba(230, 100, 101, 0.1);
}

.credential-item i {
    color: var(--primary-gradient-1);
    font-size: 1.2rem;
}

/* ========== SERVICES SECTION ========== */
.service-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gradient-1), var(--primary-gradient-2));
    transition: height 0.3s ease;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(230, 100, 101, 0.05), transparent);
    transition: left 0.6s ease;
}

.service-card:hover::after {
    left: 100%;
}

.service-card:hover::before {
    height: 6px;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 50px rgba(230, 100, 101, 0.4);
    border-color: rgba(230, 100, 101, 0.6);
    background: rgba(255, 255, 255, 0.05);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, var(--primary-gradient-1), var(--primary-gradient-2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(230, 100, 101, 0.3);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(230, 100, 101, 0.5);
}

.service-card h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary-white);
}

.service-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary-white);
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--primary-gradient-1), var(--primary-gradient-2));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: #c0c0c0;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-gradient-1);
}

.service-card p {
    color: #c0c0c0;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.service-duration {
    color: #888;
    font-size: 0.9rem;
}

.service-price .price {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--primary-gradient-1), var(--primary-gradient-2));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.service-price .old-price {
    text-decoration: line-through;
    color: #888;
    font-size: 1rem;
    margin-right: 0.5rem;
}

.service-price .new-price {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--primary-gradient-1), var(--primary-gradient-2));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* ========== TESTIMONIALS SECTION ========== */
.testimonial-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(230, 100, 101, 0.2);
}

.testimonial-quote {
    font-size: 3rem;
    color: var(--primary-gradient-1);
    line-height: 1;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #d0d0d0;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-gradient-2);
}

.testimonial-rating {
    color: #FFD700;
    margin-top: 1rem;
}

/* ========== BOOKING SECTION - ПОЭТАПНАЯ СИСТЕМА ========== */
.booking-section {
    background: linear-gradient(135deg, rgba(230, 100, 101, 0.1) 0%, rgba(145, 152, 229, 0.1) 100%);
    padding: 80px 0;
}

/* Progress Indicator */
.booking-progress {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex: 1;
}

.step-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 3px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.progress-step.active .step-circle {
    background: linear-gradient(45deg, var(--primary-gradient-1), var(--primary-gradient-2));
    border-color: transparent;
    color: white;
    box-shadow: 0 5px 20px rgba(230, 100, 101, 0.4);
    transform: scale(1.1);
}

.progress-step.completed .step-circle {
    background: var(--success-color);
    border-color: var(--success-color);
    color: white;
}

.progress-step.completed .step-circle::after {
    content: '✓';
    position: absolute;
    font-size: 1.5rem;
}

.step-title {
    font-size: 0.95rem;
    color: #888;
    text-align: center;
    font-weight: 500;
}

.progress-step.active .step-title,
.progress-step.completed .step-title {
    color: var(--text-primary-white);
}

.progress-line {
    position: absolute;
    top: 30px;
    left: 50%;
    width: 100%;
    height: 3px;
    background: var(--border-color);
    z-index: 1;
}

.progress-step:last-child .progress-line {
    display: none;
}

.progress-step.completed .progress-line {
    background: var(--success-color);
}

/* Booking Steps Container */
.booking-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    min-height: 500px;
}

.booking-step {
    display: none;
    animation: fadeIn 0.5s ease;
}

.booking-step.active {
    display: block;
}

/* Step 1: Calendar */
.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--border-color);
}

.calendar-month {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary-white);
}

.calendar-nav {
    display: flex;
    gap: 1rem;
}

.calendar-nav button {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-primary-white);
    padding: 0.5rem 1rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.calendar-nav button:hover {
    background: rgba(230, 100, 101, 0.2);
    border-color: var(--primary-gradient-1);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
}

.calendar-day-header {
    text-align: center;
    padding: 1rem 0.5rem;
    color: #888;
    font-weight: 600;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border-color);
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    font-weight: 500;
}

.calendar-day:hover:not(.disabled) {
    background: rgba(230, 100, 101, 0.2);
    border-color: var(--primary-gradient-1);
    transform: scale(1.05);
}

.calendar-day.selected {
    background: linear-gradient(45deg, var(--primary-gradient-1), var(--primary-gradient-2));
    color: white;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(230, 100, 101, 0.3);
}

.calendar-day.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    background: rgba(0, 0, 0, 0.2);
}

.calendar-day.has-slots::after {
    content: '';
    position: absolute;
    bottom: 5px;
    width: 6px;
    height: 6px;
    background: var(--success-color);
    border-radius: 50%;
}

/* Step 2: Time Selection */
.selected-date-info {
    background: rgba(230, 100, 101, 0.1);
    border: 1px solid rgba(230, 100, 101, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.selected-date-info h4 {
    color: var(--text-primary-white);
    margin-bottom: 0.5rem;
}

.selected-date-info p {
    color: #c0c0c0;
    margin: 0;
}

.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.time-slot {
    padding: 1.2rem;
    text-align: center;
    border: 2px solid var(--border-color);
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.02);
}

.time-slot:hover:not(.disabled) {
    background: rgba(230, 100, 101, 0.2);
    border-color: var(--primary-gradient-1);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(230, 100, 101, 0.2);
}

.time-slot.selected {
    background: linear-gradient(45deg, var(--primary-gradient-1), var(--primary-gradient-2));
    color: white;
    border-color: transparent;
    box-shadow: 0 5px 20px rgba(230, 100, 101, 0.4);
}

.time-slot.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    background: rgba(0, 0, 0, 0.2);
}

/* Step 3: Contact Form */
.booking-summary {
    background: linear-gradient(135deg, rgba(230, 100, 101, 0.1), rgba(145, 152, 229, 0.1));
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(230, 100, 101, 0.2);
}

.booking-summary h4 {
    color: var(--text-primary-white);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border-color);
}

.summary-row:last-child {
    border-bottom: none;
}

.summary-label {
    color: #888;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.summary-label i {
    color: var(--primary-gradient-1);
}

.summary-value {
    color: var(--text-primary-white);
    font-weight: 600;
}

.price-highlight {
    font-size: 1.3rem;
    background: linear-gradient(90deg, var(--primary-gradient-1), var(--primary-gradient-2));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: #c0c0c0;
    font-weight: 500;
}

.form-label span {
    color: var(--primary-gradient-1);
}

.form-control {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-primary-white);
    transition: all 0.3s ease;
    font-size: 1rem;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-gradient-1);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(230, 100, 101, 0.1);
}

.form-control::placeholder {
    color: #666;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

select.form-control {
    cursor: pointer;
}

/* Special styling for service selection dropdown */
#serviceSelect {
    background: linear-gradient(135deg,
        rgba(230, 100, 101, 0.08) 0%,
        rgba(145, 152, 229, 0.08) 100%);
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    font-weight: 500;
    font-size: 1.05rem;
    box-shadow: 0 4px 15px rgba(230, 100, 101, 0.1);
    transition: all 0.3s ease;
}

#serviceSelect::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-gradient-1), var(--primary-gradient-2));
    border-radius: 12px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#serviceSelect:focus {
    outline: none;
    border-color: var(--primary-gradient-1);
    box-shadow:
        0 0 0 3px rgba(230, 100, 101, 0.2),
        0 8px 25px rgba(230, 100, 101, 0.15);
    background: linear-gradient(135deg,
        rgba(230, 100, 101, 0.12) 0%,
        rgba(145, 152, 229, 0.12) 100%);
    transform: translateY(-1px);
}

#serviceSelect:hover {
    border-color: rgba(230, 100, 101, 0.5);
    box-shadow:
        0 6px 20px rgba(230, 100, 101, 0.12),
        0 2px 8px rgba(145, 152, 229, 0.08);
    transform: translateY(-1px);
}

#serviceSelect option {
    background: var(--main-bg-color);
    color: var(--text-primary-white);
    padding: 0.75rem;
    border: none;
}

#serviceSelect option[value=""] {
    color: #888;
    font-style: italic;
}

#serviceSelect option:hover,
#serviceSelect option:checked {
    background: linear-gradient(90deg, var(--primary-gradient-1), var(--primary-gradient-2));
    color: white;
}

#serviceSelect option:not([value=""]) {
    font-weight: 500;
}

/* Service selection label styling */
label[for="serviceSelect"] {
    background: linear-gradient(90deg, var(--primary-gradient-1), var(--primary-gradient-2));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    position: relative;
}

label[for="serviceSelect"]::after {
    content: '✨';
    position: absolute;
    right: -25px;
    top: 0;
    font-size: 1rem;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

/* Container for service selection with highlight */
.service-selection-container {
    background: linear-gradient(135deg,
        rgba(230, 100, 101, 0.05) 0%,
        rgba(145, 152, 229, 0.05) 100%);
    border: 1px solid rgba(230, 100, 101, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    margin: 1rem 0;
    position: relative;
    overflow: hidden;
}

.service-selection-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent,
        rgba(230, 100, 101, 0.1),
        transparent);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Custom Radio Buttons for First Time Selection */
.custom-radio-group {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

.custom-radio {
    flex: 1;
    min-width: 200px;
}

.custom-radio input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.custom-radio label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    background: var(--card-bg);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-weight: 500;
}

.custom-radio label:hover {
    border-color: rgba(230, 100, 101, 0.5);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(230, 100, 101, 0.1);
}

.radio-button {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-color);
    border-radius: 50%;
    position: relative;
    background: transparent;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.radio-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-gradient-1), var(--primary-gradient-2));
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.2s ease;
}

.custom-radio input[type="radio"]:checked + label {
    border-color: var(--primary-gradient-1);
    background: linear-gradient(135deg,
        rgba(230, 100, 101, 0.1) 0%,
        rgba(145, 152, 229, 0.1) 100%);
    box-shadow:
        0 0 0 3px rgba(230, 100, 101, 0.15),
        0 6px 20px rgba(230, 100, 101, 0.2);
}

.custom-radio input[type="radio"]:checked + label .radio-button {
    border-color: var(--primary-gradient-1);
    background: rgba(230, 100, 101, 0.1);
}

.custom-radio input[type="radio"]:checked + label .radio-button::after {
    transform: translate(-50%, -50%) scale(1);
}

.radio-text {
    color: var(--text-primary-white);
    font-size: 1rem;
    flex-grow: 1;
}

.discount-badge {
    font-size: 1.2rem;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-4px); }
    60% { transform: translateY(-2px); }
}

/* Special styling for first time option */
.custom-radio input[value*="перша"] + label {
    position: relative;
}

.custom-radio input[value*="перша"] + label::before {
    content: '';
    position: absolute;
    top: -1px;
    right: -1px;
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-top: 20px solid var(--primary-gradient-1);
    border-radius: 0 12px 0 0;
}

.custom-radio input[value*="перша"]:checked + label::before {
    border-top-color: var(--primary-gradient-2);
}

@media (max-width: 768px) {
    .custom-radio-group {
        flex-direction: column;
    }

    .custom-radio {
        min-width: auto;
    }
}

/* Step Header Navigation */
.step-header-navigation {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.step-header-navigation .btn-outline-gradient {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-primary-white);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.step-header-navigation .btn-outline-gradient:hover {
    background: linear-gradient(135deg,
        rgba(230, 100, 101, 0.1) 0%,
        rgba(145, 152, 229, 0.1) 100%);
    border-color: var(--primary-gradient-1);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(230, 100, 101, 0.2);
}

.step-header-navigation .btn-outline-gradient i {
    transition: transform 0.3s ease;
}

.step-header-navigation .btn-outline-gradient:hover i {
    transform: translateX(-2px);
}

/* Floating back button for better UX */
.floating-back-btn {
    position: fixed;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    background: linear-gradient(135deg, var(--primary-gradient-1), var(--primary-gradient-2));
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(230, 100, 101, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.floating-back-btn:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(230, 100, 101, 0.4);
}

.floating-back-btn.show {
    display: flex;
}

@media (max-width: 768px) {
    .step-header-navigation {
        position: relative;
        top: auto;
        backdrop-filter: none;
    }

    .floating-back-btn {
        width: 45px;
        height: 45px;
        left: 15px;
        font-size: 1.1rem;
    }
}

/* Full width submit button */
.btn-full-width {
    width: auto;
    white-space: nowrap;
    min-width: fit-content;
    padding: 1rem 2rem;
    margin-left: 1rem;
    height: auto;
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.btn-full-width span {
    white-space: nowrap;
    overflow: visible;
}

/* Improve step navigation layout */
.step-navigation {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-top: 2rem;
}

.step-navigation .btn-outline-gradient {
    flex-shrink: 0;
    white-space: nowrap;
    padding: 1rem 1.5rem;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 576px) {
    .step-navigation {
        flex-direction: column;
        gap: 0.75rem;
    }

    .btn-full-width {
        margin-left: 0;
        width: 100%;
    }
}

.form-check {
    display: flex;
    align-items: start;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.form-check-input {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--primary-gradient-1);
}

.form-check-label {
    color: #c0c0c0;
    cursor: pointer;
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Navigation Buttons */
.step-navigation {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2rem;
}

.step-navigation button {
    flex: 1;
    max-width: 200px;
}

/* Success Alert */
.alert {
    padding: 1rem 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    display: none;
}

.alert.show {
    display: block;
    animation: fadeIn 0.5s ease;
}

.alert-success {
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid var(--success-color);
    color: var(--success-color);
}

/* Loading */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--primary-gradient-1);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ========== CONTACT SECTION ========== */
.contact-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.contact-info:hover {
    background: rgba(230, 100, 101, 0.1);
    transform: translateX(10px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--primary-gradient-1), var(--primary-gradient-2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-form {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
}

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

.form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 1rem;
    color: var(--text-primary-white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-gradient-1);
    box-shadow: 0 0 0 3px rgba(230, 100, 101, 0.1);
    color: var(--text-primary-white);
}

.form-control::placeholder {
    color: #888;
}

/* ========== FOOTER ========== */
footer {
    background: rgba(1, 1, 1, 0.8);
    padding: 3rem 0 2rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.social-link {
    width: 45px;
    height: 45px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c0c0c0;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: linear-gradient(45deg, var(--primary-gradient-1), var(--primary-gradient-2));
    border-color: transparent;
    color: white;
    transform: translateY(-3px);
}

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

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

/* ========== FORM VALIDATION ========== */
.form-group.has-error .form-control {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.form-group.has-success .form-control {
    border-color: #28a745;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
}

.field-error {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
}

.field-error::before {
    content: '⚠';
    margin-right: 0.5rem;
    font-size: 1rem;
}

.validation-errors {
    border-radius: 10px;
    border: 1px solid #dc3545;
    margin-bottom: 1.5rem;
    transition: opacity 0.3s ease;
}

.validation-errors ul {
    list-style: none;
    padding-left: 0;
}

.validation-errors li {
    margin-bottom: 0.25rem;
    padding-left: 1rem;
    position: relative;
}

.validation-errors li::before {
    content: '•';
    color: #dc3545;
    position: absolute;
    left: 0;
}

/* ========== NOTIFICATIONS ========== */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    max-width: 400px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.3s ease;
}

.notification.show {
    transform: translateX(0);
    opacity: 1;
}

.notification-content {
    padding: 1rem 1.5rem;
    color: var(--text-primary-white);
    font-weight: 500;
    display: flex;
    align-items: center;
}

.notification-success {
    border-left: 4px solid #28a745;
}

.notification-error {
    border-left: 4px solid #dc3545;
}

.notification-info {
    border-left: 4px solid #17a2b8;
}

/* ========== LOADING STATES ========== */
.spinner-border-sm {
    width: 1rem;
    height: 1rem;
    animation: spinner-border 0.75s linear infinite;
}

@keyframes spinner-border {
    to {
        transform: rotate(360deg);
    }
}

button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ========== ENHANCED ANIMATIONS ========== */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

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

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

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

/* ========== ENHANCED UI ELEMENTS ========== */
.btn-gradient {
    position: relative;
    overflow: hidden;
}

.btn-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-gradient:hover::before {
    left: 100%;
}

.service-card {
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(230, 100, 101, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

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

.testimonial-card {
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: rgba(230, 100, 101, 0.2);
    font-family: serif;
    line-height: 1;
}

/* ========== PROGRESS INDICATORS ========== */
.progress-step.active .step-circle {
    animation: pulse 2s infinite;
}

.progress-step.completed .step-circle {
    animation: none;
}

/* ========== ENHANCED CALENDAR ========== */
.calendar-day.available {
    position: relative;
    overflow: hidden;
}

.calendar-day.available::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-gradient-1), var(--primary-gradient-2));
    transition: top 0.3s ease;
    z-index: -1;
}

.calendar-day.available:hover::before {
    top: 0;
}

/* ========== ENHANCED TIME SLOTS ========== */
.time-slot {
    position: relative;
    overflow: hidden;
}

.time-slot::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(230, 100, 101, 0.3), transparent);
    transition: left 0.3s ease;
}

.time-slot:hover::before {
    left: 100%;
}

/* ========== ENHANCED CONTACT FORM ========== */
.contact-form {
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-gradient-1), var(--primary-gradient-2));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.contact-form:focus-within::before {
    transform: scaleX(1);
}

/* ========== RESPONSIVE IMPROVEMENTS ========== */
@media (max-width: 991px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }

    .navbar-nav {
        text-align: center;
        padding-top: 1rem;
    }

    .nav-link {
        margin: 0.5rem 0;
    }

    .booking-container {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-stats {
        justify-content: center;
        gap: 1rem;
    }

    .stat-item {
        min-width: 120px;
    }

    .service-card {
        margin-bottom: 2rem;
        padding: 2rem;
        transform: none !important;
    }

    .service-card:hover {
        transform: none !important;
        box-shadow: 0 10px 30px rgba(230, 100, 101, 0.3);
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .btn-gradient {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
        margin-bottom: 1rem;
    }

    .hero-buttons {
        width: 100%;
    }

    .hero-buttons .btn-gradient,
    .hero-buttons .btn-outline {
        width: 100%;
        margin-bottom: 1rem;
    }

    .navbar-nav {
        padding: 1rem 0;
        text-align: center;
    }

    .nav-link {
        margin: 0.5rem 0;
        font-size: 1.1rem;
    }

    .hero-section {
        padding: 120px 0 50px;
        text-align: center;
    }

    .hero-image {
        margin-top: 2rem;
    }

    .section {
        padding: 60px 0;
    }

    /* Booking responsive */
    .booking-progress {
        margin-bottom: 3rem;
    }

    .step-circle {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }

    .step-title {
        font-size: 0.85rem;
    }

    .calendar-grid {
        gap: 0.3rem;
    }

    .calendar-day {
        font-size: 0.9rem;
    }

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

    .step-navigation {
        flex-direction: column;
    }

    .step-navigation button {
        max-width: 100%;
    }

    .booking-container {
        margin: 0 15px;
        padding: 1.5rem;
    }

    /* Покращені анімації для мобільних */
    .service-card,
    .testimonial-card {
        animation: none;
        transition: all 0.3s ease;
    }

    /* Оптимізація форм для мобільних */
    .form-group {
        margin-bottom: 1.5rem;
    }

    .form-control {
        font-size: 16px; /* Запобігає zoom на iOS */
        padding: 1rem;
    }

    .notification {
        left: 10px;
        right: 10px;
        max-width: none;
    }

    .calendar-grid {
        gap: 0.25rem;
    }

    .calendar-day {
        font-size: 0.875rem;
    }

    .time-slots-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 0.5rem;
    }

    .hero-stats {
        gap: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .booking-container {
        padding: 2rem;
    }

    /* Touch-friendly кнопки */
    .btn {
        min-height: 44px;
        min-width: 44px;
    }

    /* Покращена типографіка для мобільних */
    body {
        font-size: 16px;
        line-height: 1.5;
    }

    .hero-subtitle {
        line-height: 1.6;
        margin-bottom: 2rem;
    }

    /* Оптимізація відступів для мобільних */
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    /* Покращене меню для мобільних */
    .navbar-collapse {
        background: rgba(1, 1, 1, 0.95);
        border-radius: 10px;
        margin-top: 1rem;
        padding: 1rem;
        border: 1px solid var(--border-color);
    }
}

/* Додаткові медіа-запити для планшетів */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }

    .service-card {
        padding: 2rem;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .stat-item {
        flex: 1;
        max-width: 200px;
    }
}

/* Оптимізація для великих екранів */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .booking-container {
        padding: 1.5rem;
    }

    .calendar-header {
        flex-direction: column;
        gap: 1rem;
    }

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

    .progress-step {
        min-width: 80px;
    }

    .progress-line {
        display: none;
    }

    .booking-progress {
        gap: 1rem;
    }
}

/* ========== ANIMATION CLASSES ========== */
.animate-in {
    animation: slideInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Паралакс ефекти */
[data-parallax] {
    transition: transform 0.1s ease-out;
}

/* Ефект печатання */
[data-typing] {
    overflow: hidden;
}

/* Покращені анімації для карток відгуків */
.testimonial-card {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform: perspective(1000px) rotateX(0deg);
}

.testimonial-card:hover {
    transform: perspective(1000px) rotateX(5deg) translateY(-10px);
    box-shadow: 0 25px 50px rgba(230, 100, 101, 0.3);
}

/* Ефект миготіння для кнопок */
@keyframes sparkle {
    0%, 100% { opacity: 0; transform: scale(0); }
    50% { opacity: 1; transform: scale(1); }
}

/* Покращена анімація для navbar при скролі */
.navbar.scrolled {
    transform: translateY(0);
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

/* Прогресивні завантажувальні анімації */
.loading-skeleton {
    background: linear-gradient(90deg,
        rgba(255,255,255,0.1) 25%,
        rgba(255,255,255,0.2) 50%,
        rgba(255,255,255,0.1) 75%
    );
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}
/* ========== TESTIMONIALS SECTION ========== */
.add-testimonial-section {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid var(--border-color);
}

.testimonial-form {
    max-width: 600px;
    margin: 0 auto;
}

.rating-input {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    gap: 0.5rem;
}

.rating-input input {
    display: none;
}

.rating-input label {
    font-size: 1.5rem;
    color: #ddd;
    cursor: pointer;
    transition: color 0.3s ease;
}

.rating-input input:checked ~ label,
.rating-input label:hover,
.rating-input label:hover ~ label {
    color: var(--primary-gradient-1);
}

.instagram-link {
    color: var(--primary-gradient-1);
    text-decoration: none;
    margin-left: 0.5rem;
}

.instagram-link:hover {
    color: var(--primary-gradient-2);
}
