/* ==================== ROOT VARIABLES ==================== */
:root {
    /*--color-primary: #C4A574;*/
    --color-primary: #C6A96D;
    --color-bg-light: #F5EFE7;
    --color-bg-cream: #F0EBE3;
    --color-text-dark: #3D3128;
    --color-text-brown: #5C4D3C;
    --color-white: #FFFFFF;
    --color-divider: #D4C3A8;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;

    --header-height: 90px;
    --header-mobile-height: 70px;
}

/* ==================== GLOBAL STYLES ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-dark);
    /*background-color: var(--color-bg-light);*/
    overflow-x: hidden;
    padding-top: var(--header-height);
}

@media (max-width: 991px) {
    body {
        padding-top: var(--header-mobile-height);
    }
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

.cssmail {
    display: none;
}

/* ==================== HEADER SECTION ==================== */
.header-section {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--color-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-section .navbar {
    padding: 1.2rem 0;
}

@media (max-width: 991px) {
    .header-section .navbar {
        padding: 0.8rem 0;
    }
}

/* Logo Styles */
.navbar-brand {
    padding: 0;
}

.logo-desktop {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 600;
    color: var(--color-primary);
    letter-spacing: 2px;
}

.logo-mobile {
    display: none;
}

@media (max-width: 991px) {
    .logo-desktop {
        display: none;
    }

    .logo-mobile {
        display: block;
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, var(--color-primary) 0%, #B89968 100%);
        border-radius: 50%;
        position: relative;
    }

    .logo-mobile::after {
        /*content: 'BC';*/
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: var(--color-white);
        font-family: var(--font-heading);
        font-size: 18px;
        font-weight: 600;
    }
        
}

/* Navigation Links */
.navbar-nav .nav-link {
    color: var(--color-text-brown);
    font-size: 15px;
    font-weight: 400;
    padding: 0.5rem 1.2rem;
    position: relative;
}

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

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
    width: 60%;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.phone-desktop {
    color: var(--color-text-dark);
    font-size: 16px;
    font-weight: 500;
    white-space: nowrap;
}

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

.btn-appointment {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 500;
    border: 2px solid var(--color-primary);
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(196, 165, 116, 0.3);
}

.btn-appointment:hover {
    background-color: transparent;
    color: var(--color-primary);
    box-shadow: 0 6px 16px rgba(196, 165, 116, 0.4);
}

/* Mobile Header Actions */
.mobile-actions {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.phone-mobile {
    color: var(--color-text-dark);
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
}

.btn-appointment-mobile {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    box-shadow: 0 3px 10px rgba(196, 165, 116, 0.3);
}

.btn-appointment-mobile:hover {
    box-shadow: 0 4px 14px rgba(196, 165, 116, 0.4);
}

/* Burger Menu */
.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    width: 24px;
    height: 20px;
}

/* Mobile Menu */
@media (max-width: 991px) {
    .navbar-collapse {
        background-color: var(--color-white);
        padding: 1.5rem;
        margin-top: 1rem;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .navbar-nav {
        margin-bottom: 1rem;
    }

    .navbar-nav .nav-link {
        padding: 0.8rem 0;
        border-bottom: 1px solid var(--color-bg-light);
    }
}

/* ==================== HERO SECTION ==================== */
/*.hero-section {
    background: linear-gradient(135deg, var(--color-bg-light) 0%, var(--color-bg-cream) 100%);
    padding: 80px 0;
    min-height: calc(100vh - var(--header-height));
    display: flex;
    align-items: center;
    max-width: 90%;
    margin: 0 auto;
}*/

.hero-section {
    background: linear-gradient(-135deg, #ff0000 50%, var(--color-bg-cream) 100%);
    background-image: url('img/head_1_bg.png');
    background-position-y: top;
    background-repeat: repeat-x;
    padding: 80px 0;
    min-height: calc(100vh - var(--header-height));
    display: flex;
    align-items: center;
    /*max-width: 90%;*/
    margin: 0 auto;
}

.bg_hero_level1 {
    background: linear-gradient(45deg, #fcf2e3 0%, #fefefe 10%);
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
}

.bg_hero_level2 {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
}

@media (max-width: 991px) {
    .hero-section {
        padding: 60px 0;
        min-height: auto;
    }
}

.hero-content {
    padding-right: 2rem;
}

@media (max-width: 991px) {
    .hero-content {
        padding-right: 0;
        margin-bottom: 3rem;
    }
}

.hero-badge {
    display: inline-block;
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 10px 24px;
    border-radius: 25px;
    font-size: 14px; /*13*/
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 48px;
    line-height: 1.3;
    color: var(--color-text-dark);
    margin-bottom: 2rem;
    font-weight: 600;
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 28px;
    }
}

.hero-divider {
    width: 180px; /*80*/
    height: 3px;
    background-color: var(--color-primary);
    margin-bottom: 2rem;
}

.hero-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text-brown);
    font-weight: 400;
    width: 55%;
}

@media (max-width: 991px) {
    .hero-text {
        font-size: 15px;
        width: 100%;
    }
}


.hero-image {
    border-radius: 2px; /*20px*/
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

/* ==================== RECOGNITION SECTION ==================== */
.recognition-section {
    background-color: var(--color-white);
    padding: 100px 0;
}

@media (max-width: 991px) {
    .recognition-section {
        padding: 60px 0;
    }
}

.section-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 1.5rem;
}

@media (max-width: 991px) {
    .section-title {
        font-size: 36px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 28px;
    }
}

.section-subtitle {
    font-size: 20px;
    color: var(--color-text-brown);
    margin-bottom: 1rem;
}

@media (max-width: 991px) {
    .section-subtitle {
        font-size: 18px;
    }
}

.section-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text-brown);
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 991px) {
    .section-description {
        font-size: 15px;
    }
}

.recognition-card {
    background-color: var(--color-white);
    border: 2px solid var(--color-bg-light);
    /*border-left: 4px solid #c6a96d;*/
    border-left: 4px solid var(--color-primary);
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.recognition-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(196, 165, 116, 0.15);
    border-left-width: 6px;
}

.card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
}

.card-icon svg {
    width: 100%;
    height: 100%;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 1rem;
}

@media (max-width: 991px) {
    .card-title {
        font-size: 20px;
    }
}

.card-text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-text-brown);
}

/* ==================== PROCEDURE SECTION ==================== */
.procedure-section {
    background: linear-gradient(135deg, var(--color-bg-cream) 0%, var(--color-bg-light) 100%);
    padding: 100px 0;
}

@media (max-width: 991px) {
    .procedure-section {
        padding: 60px 0;
    }
}

.section-label {
    display: inline-block;
    color: var(--color-primary);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.procedure-subtitle {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 2rem;
}

@media (max-width: 991px) {
    .procedure-subtitle {
        font-size: 24px;
    }
}

.procedure-list {
    list-style: none;
    padding: 0;
}

.procedure-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1.2rem;
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text-brown);
}

.procedure-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-size: 20px;
    font-weight: bold;
}

.procedure-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text-brown);
}

@media (max-width: 991px) {
    .procedure-text {
        font-size: 15px;
    }
}

/* ==================== OPERATIONS SECTION ==================== */
.operations-section {
    /*background-color: var(--color-bg-light);*/
    background: url('img/block3_back.png') no-repeat center; 
    background-size: cover;
    padding: 100px 0;
}

@media (max-width: 991px) {
    .operations-section {
        padding: 60px 0;
    }
}

.title-divider {
    width: 200px; /*100*/
    height: 3px;
    background-color: var(--color-primary);
}

.operation-card {
    background: var(--color-white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    height: 100%;
    transition: all 0.3s ease;
    border-top: 4px solid var(--color-primary);
}

.operation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(196, 165, 116, 0.2);
}

.operation-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.operation-number-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.operation-number-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.operation-badge {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

.operation-body {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

@media (max-width: 991px) {
    .operation-body {
        flex-direction: column;
    }
}

.operation-left {
    flex: 1;
}

.operation-right {
    flex: 0 0 200px;
}

@media (max-width: 991px) {
    .operation-right {
        flex: 1;
        width: 100%;
    }
}

.operation-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 0.5rem;
}

.operation-subtitle {
    color: var(--color-text-brown);
    font-size: 14px;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.operation-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.operation-benefits li {
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-text-brown);
    font-size: 15px;
    line-height: 1.6;
}

.operation-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--color-primary);
    color: var(--color-white);
    font-size: 14px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Если нужно использовать свою картинку вместо галочки, раскомментируйте следующие строки: */
    /* background-image: url('path/to/your/icon.png'); */
    /* background-size: contain; */
    /* background-position: center; */
    /* background-repeat: no-repeat; */
    /* content: ''; */
}

.btn-learn-more {
    display: inline-block;
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-learn-more:hover {
    background-color: var(--color-text-dark);
    color: var(--color-white);
}

.operation-illustration {
    border-radius: 15px;
    overflow: hidden;
    width: 100%;
    height: 100%;
    min-height: 250px;
}

.operation-illustration img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==================== BOOKING FORM SECTION ==================== */
.booking-section {
    background: linear-gradient(135deg, var(--color-bg-cream) 0%, var(--color-bg-light) 100%);
    padding: 100px 0;
}

@media (max-width: 991px) {
    .booking-section {
        padding: 60px 0;
    }
}

.booking-form-wrapper {
    background: var(--color-white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.booking-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

@media (max-width: 991px) {
    .booking-title {
        font-size: 26px;
    }
}

.input-with-icon {
    position: relative;
}

.input-with-icon i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-primary);
    font-size: 20px;
}

.input-with-icon i::before {
    font-style: normal;
}

.icon-user::before {
    content: '👩';
}

.icon-phone::before {
    content: '📞';
}

.icon-comment::before {
    content: '🗨️';
}

.booking-form .form-control {
    padding: 15px 20px 15px 55px;
    border: 2px solid var(--color-bg-light);
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.booking-form .form-control:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(196, 165, 116, 0.1);
    outline: none;
}

.btn-submit-booking {
    width: 100%;
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 15px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(196, 165, 116, 0.3);
}

.btn-submit-booking:hover {
    background-color: var(--color-text-dark);
    box-shadow: 0 6px 20px rgba(196, 165, 116, 0.4);
}

.booking-image {
    /*border-radius: 20px;*/
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.booking-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==================== JOURNEY SECTION ==================== */
.journey-section {
    background-color: var(--color-white);
    padding: 100px 0;
    overflow-x: auto;
}

@media (max-width: 991px) {
    .journey-section {
        padding: 60px 0;
    }
}

.journey-timeline {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 60px 0;
    gap: 0.5rem;
    overflow-x: auto;
}

@media (max-width: 1200px) {
    .journey-timeline {
        padding-bottom: 30px;
    }
}

.journey-step {
    flex: 0 0 180px;
    text-align: center;
}

.step-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    position: relative;
}

.step-name {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    color: var(--color-text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.step-arrow-top {
    position: absolute;
    right: -45px; /*-25*/
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 2px;
    background: repeating-linear-gradient(
        to right,
        var(--color-primary) 0px,
        var(--color-primary) 4px,
        transparent 4px,
        transparent 8px
    );
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.step-arrow-top .arrow-img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.step-circle {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 3px solid var(--color-primary);
    background: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
    overflow: hidden;
}

.step-circle:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(196, 165, 116, 0.3);
}

.step-icon {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.step-title {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.step-description {
    font-size: 13px;
    line-height: 1.6;
    color: var(--color-text-brown);
    margin-bottom: 1rem;
}

.btn-step {
    display: inline-block;
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 8px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-step:hover {
    background-color: var(--color-text-dark);
    color: var(--color-white);
}

.journey-arrow-bottom {
    flex: 0 0 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
}

.journey-arrow-bottom img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

@media (max-width: 991px) {
    .journey-step {
        flex: 0 0 160px;
    }

    .step-circle {
        width: 120px;
        height: 120px;
    }

    .journey-arrow-bottom {
        flex: 0 0 25px;
        padding-top: 70px;
    }

    .journey-arrow-bottom img {
        width: 25px;
        height: 25px;
    }

    .step-arrow-top {
        width: 40px;
        right: -20px;
    }
}

/* ==================== SAFETY SECTION ==================== */
.safety-section {
    /*background: linear-gradient(135deg, var(--color-bg-light) 0%, var(--color-bg-cream) 100%);*/
    background: url('img/block6_back.png') no-repeat center; 
    background-size: cover;
    padding: 100px 0;
}

@media (max-width: 991px) {
    .safety-section {
        padding: 60px 0;
    }
}

.safety-badge {
    display: inline-block;
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 10px 24px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
}

.safety-card {
    background: var(--color-white);
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--color-primary);
}

.safety-card:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 30px rgba(196, 165, 116, 0.15);
}

.safety-icon {
    flex: 0 0 60px;
}

.safety-content {
    flex: 1;
}

.safety-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 0.5rem;
}

.safety-text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-text-brown);
    margin: 0;
}

/* ==================== RESULTS SECTION ==================== */
.results-section {
    background-color: var(--color-white);
    padding: 100px 0;
}

@media (max-width: 991px) {
    .results-section {
        padding: 60px 0;
    }
}

.results-badge {
    display: inline-block;
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
}

.result-card {
    background: var(--color-white);
    border: 3px solid var(--color-primary);
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.result-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(196, 165, 116, 0.3);
}

.result-images {
    display: flex;
    gap: 0;
}

.result-before,
.result-after {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.result-label {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 5px 15px; /*8px 20px;*/
    border-radius: 20px;
    font-size: 12px; /*14*/
    font-weight: 600;
    z-index: 1;
}
.result-label-r {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 5px 15px; /*8px 20px;*/
    border-radius: 20px;
    font-size: 12px; /*14*/
    font-weight: 600;
    z-index: 1;
}

.result-images img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.result-info {
    padding: 2rem;
    text-align: center;
    background-color: #f3eae1;
}

.result-name {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 1rem;
}

.result-weight {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 0.5rem;
}

.result-weight span {
    font-size: 14px;
    color: var(--color-text-brown);
    font-weight: 400;
}

.result-operation {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text-dark);
    margin: 1rem 0;
}

.result-quote {
    font-size: 14px;
    font-style: italic;
    color: var(--color-text-brown);
    margin-bottom: 1rem;
}

.result-rating {
    font-size: 18px;
}

/* ==================== VIDEO SECTION ==================== */
.video-section {
    background: linear-gradient(135deg, var(--color-bg-light) 0%, var(--color-bg-cream) 100%);
    padding: 100px 0;
}

@media (max-width: 991px) {
    .video-section {
        padding: 60px 0;
    }
}

.video-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.video-container {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    background: #000;
    border: 4px solid var(--color-primary);
}

.custom-video {
    width: 100%;
    height: auto;
    display: block;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.play-button {
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
}

.play-button svg {
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

.video-caption {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--color-text-dark);
    text-align: center;
    margin-top: 2rem;
    font-weight: 500;
}

@media (max-width: 991px) {
    .video-caption {
        font-size: 18px;
    }
}

/* ==================== SURGEON SECTION ==================== */
.surgeon-section {
    background-color: var(--color-bg-cream);
    padding: 100px 0;
}

@media (max-width: 991px) {
    .surgeon-section {
        padding: 60px 0;
    }
}

.surgeon-badge {
    display: inline-block;
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 10px 24px;
    border-radius: 15px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
}

.surgeon-photo {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.surgeon-photo img {
    width: 100%;
    height: auto;
}

.surgeon-name {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 0.5rem;
}

.surgeon-title {
    color: var(--color-primary);
    font-size: 16px;
    margin-bottom: 1.5rem;
}

.surgeon-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.badge-item {
    display: inline-block;
    background-color: var(--color-bg-light);
    border: 2px solid var(--color-primary);
    color: var(--color-text-dark);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

.surgeon-subtitle {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 1.5rem;
}

.surgeon-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text-brown);
}

/* ==================== FAQ SECTION ==================== */
.faq-section {
    background: linear-gradient(135deg, var(--color-bg-cream) 0%, var(--color-bg-light) 100%);
    padding: 100px 0;
}

@media (max-width: 991px) {
    .faq-section {
        padding: 60px 0;
    }
}

.faq-accordion {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: var(--color-white);
    border: 3px solid var(--color-primary);
    border-radius: 15px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(196, 165, 116, 0.2);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: var(--color-bg-light);
}

.faq-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.faq-text {
    flex: 1;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text-dark);
}

@media (max-width: 991px) {
    .faq-text {
        font-size: 16px;
    }
}

.faq-toggle {
    font-size: 32px;
    font-weight: 300;
    color: var(--color-primary);
    flex-shrink: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.5rem 5rem;
}

@media (max-width: 991px) {
    .faq-item.active .faq-answer {
        padding-left: 2rem;
    }
}

.faq-answer p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-text-brown);
    margin: 0;
}
/* ==================== PRICE SECTION ==================== */


.special-offer-block {
    background: linear-gradient(135deg, #2b1c12 0%, #5a3b21 100%);
    padding: 80px 20px;
    text-align: center;
    color: #fff;
}

.special-offer-block .container {
    max-width: 900px;
    margin: 0 auto;
}

/* Верхний бейдж */
.offer-badge {
    display: inline-block;
    background: #c8923a;
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 500;
}

.offer-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.offer-subtitle {
    font-size: 18px;
    color: #f1e2c5;
    margin-bottom: 40px;
}

/* Карточка цены */
/* Обёртка для позиционирования */
.offer-card-wrapper {
    position: relative;
    max-width: 520px;
    margin: 0 auto 60px;
}

/* Карточка */
.offer-card {
    background: #ffffff;
    border: 4px solid #c8923a;
    border-radius: 40px;
    padding: 50px 30px 70px 30px; /* больше нижнего отступа */
    color: #333;
    position: relative;
    z-index: 1;

    box-shadow:
        0 0 0 4px rgba(200, 146, 58, 0.15),
        0 10px 40px rgba(200, 146, 58, 0.25),
        0 0 80px rgba(200, 146, 58, 0.15);
}

/* Нижний золотой блок */
.offer-bottom-banner {
    position: absolute;
    left: 50%;
    bottom: -20px; /* наезд */
    transform: translateX(-50%);
    width: 90%;
    background: linear-gradient(90deg, #f5c76b, #c8923a);
    color: #2b1c12;
    font-weight: 600;
    font-size: 16px;

    padding: 12px 30px;
    border-radius: 3px;

    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    white-space: nowrap;
    z-index: 2;
}

/* Надпись пакет */
.offer-package {
    font-size: 16px;
    letter-spacing: 1px;
    color: #a97a2f;
    margin-bottom: 20px;
    font-weight: 600;
}

/* Старая цена + Было */
.price-old-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    /*margin-bottom: 20px;*/
}

.price-old {
    font-size: 36px;
    color: #999;
    text-decoration: line-through;
    font-weight: 500;
}

.price-badge {
    background: #ff6b3d;
    color: #fff;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
}

/* Стрелка */
.price-arrow {
    font-size: 28px;
    color: #c8923a;
    /*margin-bottom: 15px;*/
}

/* Новая цена */
.price-new {
    font-size: 64px;
    font-weight: 800;
    color: #c8923a;
}

/* Нижняя надпись */
.offer-footer {
    color: #f5dba8;
    font-size: 16px;
}

/* ==============================
   АДАПТИВ
   ============================== */

@media (max-width: 768px) {
    .offer-title {
        font-size: 30px;
    }

    .price-new {
        font-size: 46px;
    }

    .price-old {
        font-size: 26px;
    }

    .offer-card {
        padding: 35px 20px;
    }
}
@media (max-width: 768px) {

    .offer-bottom-banner {
        font-size: 14px;
        padding: 10px 20px;
        bottom: -20px;
        white-space: normal;
        text-align: center;
        max-width: 90%;
    }

    .offer-card {
        padding: 40px 20px 65px 20px;
    }

}

/* ==================== PRICE SECTION ==================== */




/* ==================== CONSULTATION WITH MAP SECTION ==================== */

.consultation-section {
    background: linear-gradient(135deg, #f3e8da, #e7d6c3);
    padding: 100px 20px;
}

.consultation-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    align-items: stretch;
}

/* ================= LEFT ================= */

.consultation-title {
    font-size: 42px;
    margin-bottom: 35px;
    color: #5b3a24;
    letter-spacing: 1px;
}

.consultation-form {
    background: linear-gradient(145deg, #efe3d3, #f6ecdf);
    padding: 45px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(90, 58, 36, 0.15);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 17px;
    color: #5b3a24;
}

.input-wrapper {
    display: flex;
    align-items: center;
    border: 2px solid #d2b48c;
    border-radius: 14px;
    padding: 0 16px;
    background: #f3e8da;
}

/* Иконка */
.input-icon {
    font-size: 18px;
    color: #a67c52;
    display: flex;
    align-items: center;
    margin-right: 12px;
}

/* Поле ввода */
.input-wrapper input {
    border: none;
    outline: none;
    width: 100%;
    background: transparent;
    font-size: 16px;
    color: #5b3a24;

    /* Вертикальная линия слева */
    border-left: 1px solid rgba(166, 124, 82, 0.5);
    padding: 14px 0 14px 12px;
}

/* КНОПКА */

.consultation-btn {
    width: 100%;
    padding: 18px;
    margin-top: 15px;
    border-radius: 14px;
    border: none;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    background: linear-gradient(90deg, #8b5e34, #c8923a);
    box-shadow: 0 10px 25px rgba(200,146,58,0.35);
    transition: 0.3s ease;
}

.consultation-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(200,146,58,0.45);
}

/* ================= RIGHT ================= */

.consultation-info-block {
    flex: 1;
    background: linear-gradient(145deg, #efe3d3, #f6ecdf);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(90, 58, 36, 0.15);
    display: flex;
    flex-direction: column;
}

/* Карта */

.map-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #e6d3bd, #f2e5d6);
    border-bottom: 1px solid rgba(90, 58, 36, 0.15);
}

/* Контакты */
.contact-info {
    padding-top: 20px;
    padding-right: 20px;
}



.contact-item {
    display: flex;
    justify-content: flex-end; /* прижимаем вправо */
    align-items: center;
    margin-bottom: 20px;
    font-size: 18px;
    color: #5b3a24;
    text-align: right;
}

.contact-text {
    margin-right: 12px; /* отступ от иконки */
}

.contact-text.phone {
    font-size: 28px;
    font-weight: 700;
}

.contact-icon {
    font-size: 22px;
    color: #c8923a;
    min-width: 24px;
    text-align: right;
}

/* ================= АДАПТИВ ================= */

@media (max-width: 992px) {
    .consultation-container {
        flex-direction: column;
    }

    .consultation-title {
        text-align: center;
        font-size: 30px;
    }

    .contact-text.phone {
        font-size: 22px;
    }

    .map-placeholder {
        height: 250px;
    }
}

/* ==================== CONSULTATION WITH MAP SECTION ==================== */





/* ==================== FOOTER SECTION ==================== */
.footer-section {
    background: var(--color-bg-cream);
    padding: 0;
    position: relative;
}

.footer-top-bar {
    background: linear-gradient(180deg, rgba(232, 220, 200, 0.4) 0%, rgba(232, 220, 200, 0.2) 100%);
    backdrop-filter: blur(10px);
    height: 60px;
    border-bottom: 1px solid rgba(212, 195, 168, 0.3);
}

.footer-section .container {
    padding: 80px 15px;
}

@media (max-width: 991px) {
    .footer-section .container {
        padding: 60px 15px;
    }

    .footer-top-bar {
        height: 40px;
    }
}

.footer-logo-text {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 600;
    color: var(--color-primary);
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    line-height: 1;
}

@media (max-width: 991px) {
    .footer-logo-text {
        font-size: 36px;
        letter-spacing: 2px;
    }
}

.footer-description {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-text-brown);
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--color-primary);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--color-text-dark);
    transform: translateY(-3px);
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--color-primary);
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

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

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--color-text-brown);
    font-size: 15px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-primary);
    padding-left: 5px;
}

.footer-contacts {
    list-style: none;
    padding: 0;
}

.footer-contacts li {
    margin-bottom: 1rem;
    font-size: 15px;
    color: var(--color-text-brown);
}

.contact-phone {
    color: var(--color-text-dark);
    font-size: 20px;
    font-weight: 600;
    text-decoration: underline;
}

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

.footer-contacts a {
    color: var(--color-text-brown);
}

.footer-contacts a:hover {
    color: var(--color-primary);
}

.contact-address {
    line-height: 1.6;
}

.contact-hours {
    font-weight: 500;
}

.footer-bottom-bar {
    background: linear-gradient(180deg, rgba(232, 220, 200, 0.3) 0%, rgba(232, 220, 200, 0.5) 100%);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(212, 195, 168, 0.3);
    padding: 30px 0;
}

.footer-copyright {
    text-align: center;
    color: var(--color-text-brown);
    font-size: 14px;
    margin: 0;
}
.foot {
    padding-top: 10px;
    padding-bottom: 10px;
}


/* ==================== RESPONSIVE ADJUSTMENTS ==================== */
@media (max-width: 576px) {
    :root {
        --header-mobile-height: 65px;
    }

    .hero-badge {
        font-size: 11px;
        padding: 8px 18px;
    }

    .recognition-card {
        padding: 1.5rem;
    }

    .footer-logo {
        font-size: 28px;
    }
}

/* ==================== UTILITY CLASSES ==================== */
.text-primary {
    color: var(--color-primary) !important;
}

.bg-primary {
    background-color: var(--color-primary) !important;
}

.bg-light-cream {
    background-color: var(--color-bg-light) !important;
}



/* ==================== form_agreement CLASSES ==================== */





/* Стили чекбокса и ссылки */
.checkbox-label {
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}
.open-policy {
    text-decoration: underline;
    color: var(--color-text-brown);
    cursor: pointer;
}

/* Стили модального окна */
.modal-overlay {
    display: none; /* Скрыто по умолчанию */
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}
.modal-content {
    background: var(--color-divider);
    color: var(--color-text-dark);
    padding: 25px;
    border-radius: 8px;
    max-width: 70%; /*500px*/
    width: 90%;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    border: 1px solid var(--color-text-brown);
}
.close-modal {
    position: absolute;
    top: 10px; right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}
.modal-text {
    margin-top: 15px;
    max-height: 300px;
    overflow-y: auto; /* Прокрутка, если текста много */
}

/*баннер о куки*/
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95); /* Светлый фон с легкой прозрачностью */
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    z-index: 9999;
    display: none; /* Скрыто по умолчанию, JS покажет если нужно */
    font-family: 'Montserrat', sans-serif;
    opacity: 0; /* Изначально прозрачный для анимации появления */
    transition: opacity 0.1s ease; /* Плавность для всех изменений */    
}

.cookie-text {
    font-size: 13px;
    color: #4a4a4a;
    line-height: 1.5;
    max-width: 80%;
}

.cookie-link {
    color: #C4A574; /* Золотистый цвет из вашего дизайна */
    text-decoration: underline;
}

.btn-cookie {
    background-color: #C4A574;
    color: white;
    border: none;
    padding: 8px 25px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-cookie:hover {
    background-color: #a68b5e;
    color: white;
}

/* Адаптивность для мобильных */
@media (max-width: 768px) {
    .cookie-text {
        max-width: 100%;
        text-align: center;
    }
}    