/* head */

:root {
    --primary-color: #777777;
    --hover-bg: #f1f1f1;
    --accent-pink: #f9b1cb;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f8f9fa;
}

.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(6px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease-in-out;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.navbar-brand img {
    height: 40px;
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.nav-link {
    color: var(--primary-color) !important;
    font-weight: 500;
    padding: 0.6rem 1rem;
    transition: all 0.2s ease;
    border-radius: 0.375rem;
}

.nav-link:hover,
.nav-link:focus,
.nav-link.active {
    background-color: var(--accent-pink);
    color: #ffffff !important;
}

.dropdown-menu {
    border-radius: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    font-size: 0.95rem;
    animation: fadeIn 0.2s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

.navbar-toggler {
    border: none;
    padding: 0.4rem;
    margin-left: 0.5rem;
    /* чтобы бургер не прилипал к флагам */
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23777777' viewBox='0 0 30 30'%3e%3cpath stroke='%23777777' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        padding-top: 1rem;
    }
    .nav-link {
        padding: 0.75rem 1rem;
    }
    .language-switcher-desktop { display: none !important; }
    .language-switcher-mobile { display: flex !important; }
}
@media (min-width: 992px) {
    .language-switcher-mobile { display: none !important; }
    .language-switcher-desktop { display: flex !important; }
}

.btn-outline-main {
    color: #f9b1cb;
    border-color: #f9b1cb;
    border-width: 1px;
}

.btn-outline-main:hover,
.btn-outline-main:focus {
    background-color: #f9b1cb;
    color: #ffffff;
    border-color: #f9b1cb;
}

/** Навигация **/
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: white;
    border-top: 1px solid #ddd;
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 1050;
    box-shadow: 0 -1px 5px rgba(0,0,0,0.05);
}

.mobile-bottom-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 11px;
    color: #777777;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

.mobile-bottom-nav .nav-item i {
    font-size: 18px;
    margin-bottom: 2px;
}

.mobile-bottom-nav .nav-item:hover,
.mobile-bottom-nav .nav-item:focus {
    color: #000;
}
/** Навигация **/

/* ----------- ЯЗЫКОВЫЕ КНОПКИ -------------- */
.language-switcher-desktop,
.language-switcher-mobile {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}
.language-switcher-mobile {
    margin-right: 0.2rem;
    margin-left: auto;
}
.lang-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
    border: 1px solid #eee;
    transition: box-shadow 0.15s, border-color 0.2s;
}

.lang-btn:hover,
.lang-btn:focus {
    box-shadow: 0 4px 12px rgba(249,177,203,0.10);
    border-color: var(--accent-pink);
}

.lang-flag {
    width: 28px;
    height: 28px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}


/* head  end */



/* hero  */



 .hero-section::after {
     content: '';
     position: absolute;
     top: 0;
     right: 0;
     bottom: 0;
     width: 600px; /* можно регулировать: 500–800px */
     background-image: url('/img/herobg2.svg');
     background-repeat: no-repeat;
     background-position: top right;
     background-size: auto 100%; /* ❗️ширина адаптивная, высота всегда 100% */
     opacity: 0.15;
     pointer-events: none;
     z-index: 0;
 }

@media (max-width: 991.98px) {
    .hero-section::after {
        width: 400px;
        background-size: auto 100%;
        opacity: 0.12;
    }
}

@media (max-width: 576px) {
    .hero-section::after {
        width: 100%;
        background-position: bottom center;
        background-size: auto 100%;
        opacity: 0.08;
    }
}


/* Hero Section */
.hero-section {
    background: radial-gradient(circle at top left, rgba(249,177,203,0.1), transparent), linear-gradient(120deg, #fafbfc 70%, #f4f6fa 100%);
    position: relative;
    overflow: hidden;
    padding: 4rem 0 3rem;
}

.hero-section .tulip-logo img {
    max-height: 56px;
    filter: drop-shadow(0 2px 12px rgba(119,119,119,0.12));
    transition: transform 0.3s ease-in-out;
}
.hero-section .tulip-logo img:hover {
    transform: scale(1.08) rotate(-3deg);
}
.hero-section .fs-3 {
    letter-spacing: 0.02em;
    color: #777;
}
.hero-section .display-5 {
    color: #3a3a3a;
    font-size: 2.5rem;
}
.hero-section .lead {
    color: #666;
    max-width: 640px;
    font-size: 1.05rem;
}
.hero-section .btn-main {
    background: #f9b1cb;
    color: #fff;
    border-radius: 2rem;
    box-shadow: 0 2px 8px rgba(249, 177, 203, 0.3);
    border: none;
    transition: all 0.18s;
}
.hero-section .btn-main:hover,
.hero-section .btn-main:focus {
    background: #fff;
    color: #f9b1cb;
    box-shadow: 0 4px 24px rgba(249, 177, 203, 0.4);
    border: 2px solid #f9b1cb;
}
.hero-section .btn-outline-main {
    border-radius: 2rem;
    color: #f9b1cb;
    border: 2px solid #f9b1cb;
    background: #fff;
    transition: all 0.18s;
}
.hero-section .btn-outline-main:hover,
.hero-section .btn-outline-main:focus {
    background: #f9b1cb;
    color: #fff;
    box-shadow: 0 4px 24px rgba(249, 177, 203, 0.4);
}
@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    .hero-section .fs-3 {
        font-size: 1.4rem !important;
    }
}


/* hero  end */


/* swipe menu */


 .service-card {
     border-radius: 1.5rem;
     background: #fff;
     transition: box-shadow 0.18s, transform 0.18s;
     padding: 2rem 1.5rem;
     box-shadow: 0 4px 12px rgba(0,0,0,0.04);
     position: relative;
 }
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(119,119,119,0.15);
}
.service-icon {
    width: 64px;
    height: 64px;
    background: #fff;
    border: 2px solid #f9b1cb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
    box-shadow: 0 2px 8px rgba(249,177,203,0.2);
    transition: transform 0.2s;
}
.service-icon i {
    font-size: 2rem;
    color: #f9b1cb;
}
.service-card:hover .service-icon {
    transform: scale(1.1);
}
.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #444;
    margin-bottom: 0.75rem;
}
.service-card .small {
    font-size: 0.95rem;
    color: #666;
}
.service-card a {
    color: #f9b1cb;
}

/* Горизонтальное меню услуг (только на мобилках) */
@media (max-width: 767.98px) {
    .mobile-services-slider-wrapper {
        position: relative;
    }

    .mobile-services-slider {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 12px;
        padding: 1rem 1rem 1rem 1rem;
        scrollbar-width: none;
        -ms-overflow-style: none;
        scroll-behavior: smooth;
    }

    .mobile-services-slider::-webkit-scrollbar {
        display: none;
    }

    .mobile-services-slider .item {
        flex: 0 0 auto;
        scroll-snap-align: start;
        text-align: center;
        background: #fff;
        border-radius: 1rem;
        box-shadow: 0 2px 6px rgba(0,0,0,0.05);
        padding: 1rem;
        width: 140px;
        transition: transform 0.2s, box-shadow 0.2s;
        border: 2px solid transparent;
    }

    .mobile-services-slider .item:hover,
    .mobile-services-slider .item:focus-within {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(249,177,203,0.25);
        border-color: #f9b1cb;
    }

    .mobile-services-slider .item img {
        width: 48px;
        height: 48px;
        margin-bottom: 0.5rem;
    }

    .mobile-services-slider .item p {
        font-size: 13px;
        color: #333;
        margin: 0;
        font-weight: 500;
    }

    .mobile-services-slider .item a {
        text-decoration: none;
        display: block;
    }

    .slider-hint {
        position: absolute;
        right: 0.75rem;
        top: 50%;
        transform: translateY(-50%);
        background: #f9b1cb;
        color: white;
        padding: 0.2rem 0.6rem;
        font-size: 0.75rem;
        border-radius: 1rem;
        box-shadow: 0 2px 6px rgba(0,0,0,0.1);
        animation: pulse 1.6s infinite;
    }

    @keyframes pulse {
        0% { opacity: 1; transform: translateY(-50%) translateX(0); }
        50% { opacity: 0.6; transform: translateY(-50%) translateX(-4px); }
        100% { opacity: 1; transform: translateY(-50%) translateX(0); }
    }
}


/* swipe menu  end */


/* swipe work time  */


 .address-box {
     background: #f9b1cb13;
     border-radius: 1rem;
     padding: 0.5em 1em;
     display: inline-flex;
     align-items: center;
     gap: 0.5em;
     font-size: 1.03rem;
     margin-bottom: 0.5em;
     justify-content: center;
 }
.btn-main-rose {
    background: linear-gradient(93deg, #f9b1cb 60%, #f6c1d7 100%);
    color: #fff !important;
    border: none;
    border-radius: 2rem;
    box-shadow: 0 2px 8px rgba(249,177,203,0.15);
    transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.15s;
    font-weight: 600;
    letter-spacing: 0.01em;
    font-size: 1.07rem;
}
.btn-main-rose:hover, .btn-main-rose:focus {
    background: #fff;
    color: #f9b1cb !important;
    border: 2px solid #f9b1cb;
    box-shadow: 0 6px 24px rgba(249, 177, 203, 0.28);
    transform: translateY(-2px) scale(1.04);
    text-decoration: none;
}


/* swipe work time  end */



/* uslugi */


 .services-section {
     background: linear-gradient(120deg, #fff 70%, #f4f6fa 100%);
     padding: 4rem 0;
     position: relative;
     overflow-x: hidden; /* добавлено */
 }
.services-section::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(249, 177, 203, 0.15), transparent 70%);
    z-index: 0;
}
.services-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}
.services-title h2 {
    font-weight: 700;
    color: #f9b1cb;
}
.services-title .subtitle {
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: #aaa;
    margin-bottom: 0.5rem;
}
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
    min-width: 0; /* добавлено */
}
@media (max-width: 767.98px) {
    .services-section .container {
        padding-left: 1rem;
        padding-right: 1rem;
        overflow-x: hidden; /* добавлено */
    }

    .service-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 1rem;
        gap: 1rem;
    }
    .service-card {
        flex: 0 0 80%;
        scroll-snap-align: start;
    }
}
.service-card {
    background: #fff;
    border-radius: 1.25rem;
    padding: 2rem;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.05);
    transition: transform 0.25s, box-shadow 0.25s;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border: 1px solid rgba(249, 177, 203, 0.15);
    position: relative;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(249, 177, 203, 0.2);
}
.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f9b1cb, #ffc6d7);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 6px 14px rgba(249, 177, 203, 0.35);
    transition: all 0.3s ease-in-out;
}
.service-card:hover .service-icon {
    transform: rotate(5deg) scale(1.1);
}
.service-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin: 0;
    color: #3a3a3a;
}
.service-card h3 a {
    text-decoration: none;
    color: inherit;
}
.service-card h3 a:hover {
    color: #f9b1cb;
    text-decoration: underline;
}
.service-card p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}



/* uslugi  end */



/* photo */


     /* текущие стили */
 .service-card {
     border-radius: 1.5rem;
     background: #fff;
     transition: box-shadow 0.18s, transform 0.18s;
     padding: 2rem 1.5rem;
     box-shadow: 0 4px 12px rgba(0,0,0,0.04);
     position: relative;
 }
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(119,119,119,0.15);
}
.service-icon {
    width: 64px;
    height: 64px;
    background: #fff;
    border: 2px solid #f9b1cb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
    box-shadow: 0 2px 8px rgba(249,177,203,0.2);
    transition: transform 0.2s;
}
.service-icon i {
    font-size: 2rem;
    color: #f9b1cb;
}
.service-card:hover .service-icon {
    transform: scale(1.1);
}
.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #444;
    margin-bottom: 0.75rem;
}
.service-card .small {
    font-size: 0.95rem;
    color: #666;
}
.service-card a {
    color: #f9b1cb;
}

.advantages-section h2 {
    font-weight: 700;
    color: #777777;
    margin-bottom: 2rem;
    text-align: center;
}
.advantages-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
}
.advantages-list li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 1rem;
    color: #555;
    font-size: 1.05rem;
}
.advantages-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #f9b1cb;
    font-weight: bold;
}

.clinic-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}
.clinic-gallery > div {
    flex: 1 1 calc(33.333% - 1rem);
}
.clinic-gallery img {
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    transition: transform 0.2s;
    object-fit: cover;
    width: 100%;
    height: 320px;
}
.clinic-gallery img:hover {
    transform: scale(1.03);
}

@media (max-width: 991.98px) {
    .clinic-gallery {
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 0.5rem;
    }
    .clinic-gallery > div {
        flex: 0 0 auto;
        scroll-snap-align: start;
        width: 280px;
    }
}


/* photo  end */

/* price */


     /* текущие стили */
 .service-card {
     border-radius: 1.5rem;
     background: #fff;
     transition: box-shadow 0.18s, transform 0.18s;
     padding: 2rem 1.5rem;
     box-shadow: 0 4px 12px rgba(0,0,0,0.04);
     position: relative;
 }
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(119,119,119,0.15);
}
.service-icon {
    width: 64px;
    height: 64px;
    background: #fff;
    border: 2px solid #f9b1cb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
    box-shadow: 0 2px 8px rgba(249,177,203,0.2);
    transition: transform 0.2s;
}
.service-icon i {
    font-size: 2rem;
    color: #f9b1cb;
}
.service-card:hover .service-icon {
    transform: scale(1.1);
}
.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #444;
    margin-bottom: 0.75rem;
}
.service-card .small {
    font-size: 0.95rem;
    color: #666;
}
.service-card a {
    color: #f9b1cb;
}

.section-title {
    font-weight: 700;
    color: #777777;
    margin-bottom: 2rem;
    text-align: center;
}

.prices-section {
    background: linear-gradient(120deg, #fafbfc 70%, #f4f6fa 100%);
}

.price-card {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 1.25rem 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.price-card .service-name {
    font-weight: 500;
    color: #444;
    font-size: 1.2rem;
}

.price-card .service-price {
    font-weight: 600;
    color: #f9b1cb;
    font-size: 1rem;
}
.old-price {
    position: relative;
    display: inline-block;
    color: #777;
    font-weight: 400;
    font-size: 0.9rem;
    padding: 0 0.2em;
}

.old-price::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: red; /* Цвет линии, можешь изменить */
    transform: rotate(20deg); /* Угол наклона */
    transform-origin: center;
}

.btn-price-list {
    display: inline-block;
    background-color: #f9b1cb;
    color: white;
    font-weight: 600;
    padding: 0.6rem 1.6rem;
    border-radius: 2rem;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(249,177,203,0.25);
    transition: all 0.2s ease;
    margin-top: 1rem;
}
.btn-price-list:hover {
    background: #fff;
    color: #f9b1cb;
    border: 2px solid #f9b1cb;
}


/* price  end */


/* personal  */


     /* текущие стили */
 .section-title {
     font-weight: 700;
     color: #777777;
     margin-bottom: 2rem;
     text-align: center;
 }
.team-section {
    background: linear-gradient(135deg, #fafbfc 0%, #f4f6fa 100%);
}
.team-card {
    background: #fff;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    padding: 1.5rem;
    transition: transform 0.2s;
    height: 100%;
}
.team-card:hover {
    transform: translateY(-5px);
}
.team-photo {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    margin: 0 auto 1rem;
    width: 100%;
    max-width: 230px;
    aspect-ratio: 4 / 5;
    box-shadow:
            0 0 0 2px #f9b1cb,
            0 0 5px 5px rgba(249, 177, 203, 0.5);
}
.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.team-name {
    font-weight: 600;
    font-size: 1.1rem;
    color: #444;
}
.team-role {
    color: #777;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}
.team-link {
    color: #f9b1cb;
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
}
.team-link:hover {
    text-decoration: underline;
}

@media (max-width: 767.98px) {
    .col-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}


/* personal  end */


/* feedback */


 .section-title {
     font-weight: 700;
     color: #777777;
     margin-bottom: 2rem;
     text-align: center;
 }
.reviews-section {
    background: #fff;
    position: relative;
}
.review-slider-wrapper {
    position: relative;
}
.review-slider {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 0.5rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
}
.review-slider::-webkit-scrollbar {
    display: none;
}
.review-card {
    flex: 0 0 300px;
    scroll-snap-align: start;
    background: #fafafa;
    border: 1px solid #eaeaea;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    transition: transform 0.2s;
    height: 100%;
    position: relative;
}
.review-card:hover {
    transform: translateY(-3px);
}
.review-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}
.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 0 0 2px #f9b1cb;
}
.review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.review-meta {
    font-size: 0.95rem;
}
.review-name {
    font-weight: 600;
    color: #444;
}
.review-date {
    color: #888;
    font-size: 0.85rem;
}
.review-stars {
    color: #fbbc04;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}
.review-text {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
}
.review-source {
    font-size: 0.85rem;
    color: #aaa;
    margin-top: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.review-source img {
    height: 20px;
    width: auto;
}

.review-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: background 0.2s;
    z-index: 10;
}
.review-nav-btn:hover {
    background: #f9f9f9;
}
.review-nav-btn.left {
    left: -18px;
}
.review-nav-btn.right {
    right: -18px;
}
@media (max-width: 768px) {
    .review-nav-btn {
        display: none;
    }
}


/* feedback  end */






/* faq  */



 .faq-section {
     background: linear-gradient(120deg, #f4f6fa 65%, #fafbfc 100%);
     padding: 3rem 0;
 }
.faq-title {
    font-weight: 700;
    text-align: center;
    color: #777;
    margin-bottom: 2rem;
}
.faq-item {
    margin-bottom: 1.5rem;
    padding: 1.25rem 1.5rem;
    border-radius: 1rem;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}
.faq-question {
    font-weight: 600;
    font-size: 1.05rem;
    color: #444;
    margin-bottom: 0.5rem;
}
.faq-answer {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}


/* faq  end */



/* maps */


 .contact-section {
     background: linear-gradient(120deg, #fafbfc 70%, #f4f6fa 100%);
     padding: 3rem 0;
 }
.contact-title {
    font-weight: 700;
    text-align: center;
    color: #777;
    margin-bottom: 2rem;
}
.contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
}
.contact-details {
    flex: 1 1 320px;
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    padding: 2rem;
    position: relative;
    overflow: hidden;
}
.contact-details::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(249,177,203,0.25) 0%, transparent 70%);
    z-index: 0;
}
.contact-details h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #444;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}
.contact-details p,
.contact-details a {
    color: #555;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}
.contact-details i {
    color: #f9b1cb;
    margin-right: 0.5rem;
}
.contact-map {
    flex: 1 1 480px;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 380px;
    border: none;
}


/* maps  end */



/* footer */


 .footer {
     background: linear-gradient(145deg, #f4f6fa 0%, #fafbfc 100%);
     padding: 4rem 0 2rem;
     position: relative;
     font-size: 0.95rem;
     color: #555;
     overflow: hidden;
 }
.footer::before {
    content: '';
    position: absolute;
    top: -40px;
    left: -40px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(249,177,203,0.15) 0%, transparent 70%);
    z-index: 0;
}
.footer .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}
.footer-logo h4 {
    font-weight: 700;
    color: #f9b1cb;
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}
.footer-logo p {
    max-width: 340px;
    line-height: 1.6;
}
.footer-links ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 0.5rem;
}
.footer-links a {
    color: #555;
    text-decoration: none;
    transition: all 0.2s;
    font-weight: 500;
}
.footer-links a:hover {
    color: #f9b1cb;
    text-decoration: underline;
}
.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}
.footer-social a {
    color: #fff;
    background-color: #f9b1cb;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(249, 177, 203, 0.35);
    transition: transform 0.3s, background 0.3s;
}
.footer-social a:hover {
    transform: scale(1.1);
    background-color: #f79cbf;
}
.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    font-size: 0.85rem;
    color: #aaa;
    position: relative;
    z-index: 1;
}


.footer .tulip-logo-footer img {
    max-height: 56px;
    filter: drop-shadow(0 2px 12px rgba(119,119,119,0.12));
    transition: transform 0.3s ease-in-out;
}
.footer .tulip-logo-footer img:hover {
    transform: scale(1.08) rotate(-3deg);
}



/* footer  end */



/* form  */


 #bookingModal .modal-content {
     border-radius: 1.2rem;
     box-shadow: 0 8px 32px rgba(249,177,203,0.15);
 }
#bookingModal .btn-main {
    background: #f9b1cb;
    color: #fff;
    border-radius: 2rem;
    border: none;
    box-shadow: 0 2px 8px rgba(249,177,203,0.13);
    font-weight: 600;
    font-size: 1.1rem;
}
#bookingModal .btn-main:hover {
    background: #fff;
    color: #f9b1cb;
    border: 2px solid #f9b1cb;
}
#bookingModal .form-check-label a {
    color: #f9b1cb;
    text-decoration: underline;
}



/* form  end */



/* line  */


/* ---- RS-MED main design elements ---- */

/* Бегущая полоса */
.divider-strip {
    background: #f9b1cb;
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.6rem 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.divider-strip span {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 12s linear infinite;
}

@keyframes marquee {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-100%); }
}

/* Разделитель секций */
.section-divider {
    text-align: center;
    margin: 2.5rem 0 2rem;
    position: relative;
}

.section-divider::before,
.section-divider::after {
    content: '';
    height: 1px;
    background: #f9b1cb;
    position: absolute;
    top: 50%;
    width: 40%;
}

.section-divider::before { left: 0; }
.section-divider::after { right: 0; }

.section-divider span {
    display: inline-block;
    padding: 0 1rem;
    font-weight: 600;
    color: #f9b1cb;
    background: #fff;
}

/* Градиентный разделитель */
.gradient-divider {
    height: 2px;
    background: linear-gradient(to right, transparent, #f9b1cb, transparent);
    position: relative;
    margin: 2rem 0;
}

.gradient-divider::after {
    content: 'RS-MED';
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    padding: 0 1rem;
    color: #f9b1cb;
    font-weight: 600;
    font-size: 0.95rem;
}

/* line  end */

/*  */
/*   end */