/* =========================================================
   BASE STYLES
========================================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
    background: #ffffff;
    color: #222;
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

ul { list-style: none; }

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Container responsive padding */
@media (max-width: 768px) {
    .container {
        width: 95%;
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .container {
        width: 100%;
        padding: 0 15px;
    }
}

/* =========================================================
   HEADER
========================================================= */
.header {
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #e7e7e7;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo span {
    font-size: 20px;
    font-weight: 700;
    color: #2aa3c8;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    font-weight: 500;
    font-size: 16px;
    color: #333;
    transition: 0.2s;
}

.nav a:hover {
    color: #2aa3c8;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-header-booking {
    display: inline-block;
    padding: 8px 16px;
    background: #2aa3c8;
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-header-booking:hover {
    background: #1f7f9a;
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(42, 163, 200, 0.3);
}

.header-phone {
    font-weight: 600;
    font-size: 17px;
    color: #2aa3c8;
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.header-phone:hover {
    color: #1f7f9a;
}

/* Кнопка бургер */
.burger {
    display: none;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    color: #2aa3c8;
    user-select: none;
    transition: color 0.3s ease;
}

.burger:hover {
    color: #1f7f9a;
}

.burger.active {
    color: #1f7f9a;
}

/* Мобильное меню */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background: #ffffff;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    transition: left 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.show {
    left: 0;
}

.mobile-menu-content {
    padding: 80px 0 20px 0;
}

.menu-link {
    display: block;
    padding: 15px 25px;
    color: #333;
    text-decoration: none;
    font-size: 18px;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.3s ease;
}

.menu-link:hover {
    background-color: #f8f9fa;
    color: #2aa3c8;
}

.booking-link {
    background: #28a745 !important;
    color: white !important;
    margin: 15px 25px;
    padding: 15px 25px !important;
    border-radius: 25px;
    text-align: center;
    font-weight: 600;
    border: none;
}

.booking-link:hover {
    background: #218838 !important;
    color: white !important;
}

.phone-link {
    background: #2aa3c8;
    color: white !important;
    margin: 10px 25px;
    padding: 15px 25px !important;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    border: none;
}

.phone-link:hover {
    background: #1f7f9a !important;
    color: white !important;
}

/* =========================================================
   ADDITIONAL SECTION STYLES
========================================================= */
.feature-item {
    text-align: center;
    padding: 25px 20px;
}

.feature-item h3 {
    font-size: 22px;
    font-weight: 600;
    color: #2aa3c8;
    margin-bottom: 15px;
}

.feature-item p {
    color: #666;
    line-height: 1.5;
}

.about-short h2,
.cta h2 {
    font-size: 28px;
    color: #1c1c1c;
    margin-bottom: 20px;
}

.cta {
    background: #f7fcff;
    text-align: center;
}

.cta-box {
    max-width: 600px;
    margin: 0 auto;
}

/* =========================================================
   SECTIONS PADDING
========================================================= */
.features,
.about-short,
.cta {
    padding: 60px 0;
}

.footer {
    padding: 40px 0 20px 0;
}

/* =========================================================
   HERO SECTION
========================================================= */
.hero {
    padding: 120px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/Heroimage.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    text-align: center;
}

.hero-content h1 {
    font-size: 42px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-sub {
    font-size: 22px;
    max-width: 600px;
    margin: 0 auto 30px auto;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    line-height: 1.4;
}

.btn-primary {
    display: inline-block;
    background: #2aa3c8;
    padding: 16px 35px;
    border-radius: 10px;
    font-size: 19px;
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(42, 163, 200, 0.3);
    border: 2px solid transparent;
}

.btn-primary:hover {
    background: #1f7f9a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(42, 163, 200, 0.4);
}

.btn-outline {
    display: inline-block;
    border: 2px solid #2aa3c8;
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 16px;
    color: #2aa3c8;
    font-weight: 600;
    transition: 0.3s;
}

.btn-outline:hover {
    background: #2aa3c8;
    color: white;
}

/* =========================================================
   FEATURES
========================================================= */
.features {
    padding: 60px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.feature-item {
    background: #f7fcff;
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    border: 1px solid #e9f7fc;
}

.feature-item h3 {
    font-size: 22px;
    color: #2aa3c8;
    margin-bottom: 10px;
}

/* =========================================================
   ABOUT SHORT SECTION
========================================================= */
.about-short {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.about-img {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.about-logo {
    max-width: 250px;
    max-height: 200px;
    height: auto;
    object-fit: contain;
}

/* =========================================================
   SERVICES PAGE
========================================================= */
.page-header {
    padding: 50px 0;
    background: #f7fcff;
    text-align: center;
}

.services-list {
    padding: 50px 0;
}

.service-card {
    padding: 25px;
    border: 1px solid #e9f7fc;
    border-radius: 12px;
    margin-bottom: 25px;
    background: #fdfefe;
}

.service-card h3 {
    font-size: 22px;
    color: #2aa3c8;
    margin-bottom: 10px;
}

/* =========================================================
   CONTACTS PAGE
========================================================= */
.page-header {
    padding: 40px 0;
    background: #f7fcff;
    text-align: center;
}

.page-header h1 {
    font-size: 32px;
    color: #1c1c1c;
}

.contacts-page {
    padding: 50px 0;
}

.contacts-page h2 {
    font-size: 24px;
    color: #2aa3c8;
    margin: 30px 0 15px 0;
}

.contacts-page h2:first-of-type {
    margin-top: 0;
}

.contacts-page p {
    font-size: 18px;
    margin-bottom: 10px;
}

.contacts-page a {
    color: #2aa3c8;
    font-weight: 600;
}

.contacts-page iframe {
    border-radius: 12px;
    margin-top: 15px;
    width: 100%;
    min-height: 300px;
}

/* =========================================================
   FOOTER
========================================================= */
.footer {
    background: #f7fcff;
    padding: 50px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.footer-block h3, 
.footer-block h4 {
    margin-bottom: 10px;
    font-weight: 700;
}

.footer-bottom {
    margin-top: 30px;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #e7e7e7;
    color: #555;
}

/* =========================================================
   CTA SECTION
========================================================= */
.cta {
    padding: 60px 0;
}

.cta-box {
    background: #2aa3c8;
    color: white;
    padding: 40px;
    border-radius: 16px;
    text-align: center;
}

.cta-box h2 {
    margin-bottom: 10px;
}

/* =========================================================
   SOCIAL SECTION
========================================================= */
.social-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.social-section h2 {
    text-align: center;
    font-size: 28px;
    color: #1c1c1c;
    margin-bottom: 15px;
}

.social-section p {
    text-align: center;
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 600px;
    margin: 0 auto;
}

.social-link {
    display: flex;
    align-items: center;
    background: #ffffff;
    padding: 20px 25px;
    border-radius: 12px;
    text-decoration: none;
    color: #333;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    min-width: 200px;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    color: #333;
}

.social-link.vk:hover {
    border-left: 4px solid #4680C2;
}

.social-link.telegram:hover {
    border-left: 4px solid #0088CC;
}

.social-icon {
    font-size: 32px;
    margin-right: 15px;
}

.social-text {
    display: flex;
    flex-direction: column;
}

.social-text strong {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.social-text span {
    font-size: 14px;
    color: #666;
}

/* =========================================================
   SERVICES PAGE STYLES
========================================================= */
.services-page {
    padding: 60px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.service-card.highlight {
    border: 2px solid #2aa3c8;
    background: linear-gradient(135deg, #f7fcff 0%, #ffffff 100%);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.service-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.service-card h3 {
    font-size: 20px;
    color: #1c1c1c;
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.3;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.price-tag {
    font-size: 24px;
    font-weight: 700;
    color: #2aa3c8;
    margin-bottom: 10px !important;
}

.highlight-service {
    background: linear-gradient(135deg, #f7fcff 0%, #ffffff 100%);
    border: 2px solid #2aa3c8;
    position: relative;
    overflow: hidden;
}

.highlight-service::before {
    content: "НОВАЯ УСЛУГА";
    position: absolute;
    top: 15px;
    right: -30px;
    background: #2aa3c8;
    color: white;
    padding: 5px 40px;
    font-size: 12px;
    font-weight: 600;
    transform: rotate(45deg);
}

.service-link {
    color: #2aa3c8;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: #1f7f9a;
}

/* =========================================================
   MUSCLES SERVICE PAGE STYLES
========================================================= */
.service-full {
    padding: 60px 0;
}

.service-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.service-intro h2 {
    font-size: 28px;
    color: #1c1c1c;
    margin-bottom: 20px;
}

.service-intro p {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
}

.content-block {
    margin-bottom: 50px;
}

.content-block h2 {
    font-size: 26px;
    color: #1c1c1c;
    margin-bottom: 20px;
}

.content-block h3 {
    font-size: 22px;
    color: #2aa3c8;
    margin: 30px 0 15px 0;
}

.symptoms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.symptom-item {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    padding: 15px 20px;
    border-radius: 10px;
    border-left: 4px solid #2aa3c8;
}

.symptom-icon {
    font-size: 24px;
    margin-right: 15px;
}

.techniques-list {
    list-style: none;
    margin-top: 20px;
}

.techniques-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: #666;
    font-size: 16px;
}

.techniques-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2aa3c8;
    font-weight: bold;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.benefit-item {
    text-align: center;
    padding: 25px 20px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-3px);
}

.benefit-icon {
    font-size: 36px;
    display: block;
    margin-bottom: 15px;
}

.benefit-item h4 {
    font-size: 18px;
    color: #1c1c1c;
    margin-bottom: 10px;
}

.benefit-item p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

.service-booking {
    background: linear-gradient(135deg, #2aa3c8 0%, #1f7f9a 100%);
    border-radius: 16px;
    padding: 40px;
    color: white;
    text-align: center;
    margin-top: 50px;
}

.price-block {
    margin-bottom: 30px;
}

.price-block h2 {
    color: white;
    margin-bottom: 15px;
}

.price {
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin-bottom: 0;
}

.booking-block h3 {
    color: white;
    margin-bottom: 10px;
}

.booking-block p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
}

.booking-block .btn-primary {
    background: white;
    color: #2aa3c8;
    border: 2px solid white;
}

.booking-block .btn-primary:hover {
    background: transparent;
    color: white;
    border-color: white;
}

/* =========================================================
   CALLBACK FORM STYLES
========================================================= */
.callback {
    padding: 60px 0;
    background: linear-gradient(135deg, #2aa3c8 0%, #1f7f9a 100%);
    color: white;
    text-align: center;
}

.callback h2 {
    font-size: 32px;
    color: white;
    margin-bottom: 15px;
}

.callback p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.callback-form {
    max-width: 400px;
    margin: 0 auto 30px auto;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
}

.form-group input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.3s ease;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus {
    outline: none;
    border-color: white;
    background: rgba(255, 255, 255, 0.2);
}

.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.3s ease;
    font-family: inherit;
    resize: vertical;
    min-height: 80px;
}

.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group textarea:focus {
    outline: none;
    border-color: white;
    background: rgba(255, 255, 255, 0.2);
}

.optional {
    font-weight: normal;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.submit-btn {
    width: 100%;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 600;
    background: white;
    color: #2aa3c8;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.submit-btn:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.or-call {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.or-call a {
    color: white;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
    transition: border-color 0.3s ease;
}

.or-call a:hover {
    border-color: white;
}

.success-message,
.error-message {
    max-width: 500px;
    margin: 20px auto;
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
}

.success-message {
    background: rgba(46, 204, 113, 0.2);
    border: 2px solid #2ecc71;
    color: #2ecc71;
}

.error-message {
    background: rgba(231, 76, 60, 0.2);
    border: 2px solid #e74c3c;
    color: #e74c3c;
}

.success-icon,
.error-icon {
    margin-right: 10px;
    font-size: 18px;
}

/* Адаптивные стили для формы обратного звонка */
@media (max-width: 768px) {
    .callback {
        padding: 40px 0;
    }
    
    .callback h2 {
        font-size: 24px;
        margin-bottom: 10px;
    }
    
    .callback p {
        font-size: 16px;
        margin-bottom: 25px;
        padding: 0 20px;
    }
    
    .callback-form {
        max-width: 90%;
        margin: 0 auto 25px auto;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px 15px;
        font-size: 16px;
    }
    
    .form-group textarea {
        min-height: 70px;
    }
    
    .submit-btn {
        padding: 12px 25px;
        font-size: 16px;
    }
    
    .success-message,
    .error-message {
        margin: 15px 20px;
        padding: 12px 15px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .callback {
        padding: 30px 0;
    }
    
    .callback h2 {
        font-size: 20px;
    }
    
    .callback p {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 14px;
    }
    
    .form-group textarea {
        min-height: 60px;
    }
    
    .submit-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* =========================================================
   PRIVACY POLICY STYLES
========================================================= */
.privacy-policy {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    line-height: 1.6;
}

.privacy-policy h1 {
    font-size: 32px;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

.privacy-content section {
    margin-bottom: 30px;
}

.privacy-content h2 {
    font-size: 20px;
    color: #2aa3c8;
    margin-bottom: 15px;
    border-bottom: 2px solid #2aa3c8;
    padding-bottom: 5px;
}

.privacy-content p {
    margin-bottom: 15px;
    color: #555;
    text-align: justify;
}

.privacy-content ul {
    margin: 15px 0;
    padding-left: 25px;
}

.privacy-content li {
    margin-bottom: 8px;
    color: #555;
}

.privacy-content strong {
    color: #333;
    font-weight: 600;
}

/* =========================================================
   FORM AGREEMENT STYLES
========================================================= */
.form-agreements {
    margin: 25px 0;
}

.form-agree,
.form-privacy {
    display: block;
    margin-bottom: 20px;
    cursor: pointer;
    position: relative;
    padding-left: 35px;
    font-size: 14px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
}

.form-agree input[type="checkbox"],
.form-privacy input[type="checkbox"] {
    position: absolute;
    left: 0;
    top: 2px;
    width: 20px;
    height: 20px;
    margin: 0;
    opacity: 0;
    cursor: pointer;
}

.form-agree input[type="checkbox"] + span:before,
.form-privacy input[type="checkbox"] + span:before {
    content: '';
    position: absolute;
    left: -35px;
    top: 0;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.form-agree input[type="checkbox"]:checked + span:before,
.form-privacy input[type="checkbox"]:checked + span:before {
    background: white;
    border-color: white;
}

.form-agree input[type="checkbox"]:checked + span:after,
.form-privacy input[type="checkbox"]:checked + span:after {
    content: '✓';
    position: absolute;
    left: -32px;
    top: -1px;
    font-size: 14px;
    font-weight: bold;
    color: #2aa3c8;
}

.form-agree a,
.form-privacy a {
    color: white;
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.form-agree a:hover,
.form-privacy a:hover {
    opacity: 0.8;
}

/* =========================================================
   BREADCRUMBS
========================================================= */
.breadcrumbs {
    background: #f8f9fa;
    padding: 15px 0;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
    list-style: none;
    font-size: 14px;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    color: #6c757d;
    margin: 0 8px;
}

.breadcrumb-item a {
    color: #2aa3c8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #1f7f9a;
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #6c757d;
}

/* =========================================================
   SMOOTH SCROLL AND NAVIGATION
========================================================= */
html {
    scroll-behavior: smooth;
}

a[href^="#"] {
    transition: all 0.3s ease;
}

.btn-outline {
    display: inline-block;
    padding: 10px 20px;
    background: transparent;
    color: #2aa3c8;
    border: 2px solid #2aa3c8;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin: 5px;
}

.btn-outline:hover {
    background: #2aa3c8;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(42, 163, 200, 0.3);
}

/* Адаптивные стили для чекбоксов */
@media (max-width: 768px) {
    .form-agree,
    .form-privacy {
        font-size: 13px;
        padding-left: 30px;
    }
    
    .form-agree input[type="checkbox"] + span:before,
    .form-privacy input[type="checkbox"] + span:before {
        left: -30px;
        width: 16px;
        height: 16px;
    }
    
    .form-agree input[type="checkbox"]:checked + span:after,
    .form-privacy input[type="checkbox"]:checked + span:after {
        left: -27px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .privacy-policy {
        padding: 20px 15px;
    }
    
    .privacy-policy h1 {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .privacy-content h2 {
        font-size: 18px;
    }
    
    .form-agree,
    .form-privacy {
        font-size: 12px;
        padding-left: 25px;
    }
    
    .form-agree input[type="checkbox"] + span:before,
    .form-privacy input[type="checkbox"] + span:before {
        left: -25px;
        width: 14px;
        height: 14px;
    }
    
    .form-agree input[type="checkbox"]:checked + span:after,
    .form-privacy input[type="checkbox"]:checked + span:after {
        left: -23px;
        font-size: 11px;
    }
}

/* =========================================================
   RESPONSIVE DESIGN
========================================================= */

/* Tablets */
@media (max-width: 900px) {
    .nav {
        display: none;
    }

    .burger {
        display: block;
    }
    
    /* Показываем мобильное меню только на мобильных */
    .mobile-menu {
        display: block;
    }

    .hero {
        padding: 100px 0;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-sub {
        font-size: 20px;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }

    .header-actions {
        display: none;
    }

    .cta-box {
        padding: 35px 25px;
    }

    .cta-box h2 {
        font-size: 24px;
    }
}

/* Medium screens (tablets) */
@media (max-width: 900px) and (min-width: 769px) {
    .btn-header-booking {
        font-size: 13px;
        padding: 6px 12px;
    }
    
    .header-phone {
        font-size: 15px;
    }
    
    .header-actions {
        gap: 10px;
    }
}

/* Small tablets */
@media (max-width: 768px) {
    .hero {
        padding: 80px 0;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-sub {
        font-size: 19px;
    }

    .features {
        padding: 50px 0;
    }

    .about-short {
        padding: 50px 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta-box {
        padding: 30px 20px;
    }

    .cta-box h2 {
        font-size: 22px;
    }

    .social-links {
        gap: 20px;
    }

    .social-link {
        min-width: 180px;
        padding: 18px 20px;
    }
}

/* Mobile phones */
@media (max-width: 600px) {
    .hero {
        padding: 60px 0;
        background-attachment: scroll;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 28px;
        margin-bottom: 15px;
        line-height: 1.2;
    }

    .hero-sub {
        font-size: 18px;
        margin-bottom: 25px;
        line-height: 1.4;
    }
    
    .btn-primary {
        padding: 14px 28px;
        font-size: 17px;
        width: auto;
        min-width: 200px;
    }

    .features {
        padding: 40px 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .feature-item {
        text-align: center;
        padding: 20px 15px;
    }

    .feature-item h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .about-short {
        padding: 40px 0;
    }

    .about-short h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .cta {
        padding: 40px 0;
    }

    .cta-box {
        padding: 25px 15px;
    }

    .cta-box h2 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .footer {
        padding: 30px 0 15px 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }

    .btn-outline {
        width: auto;
        min-width: 200px;
        text-align: center;
    }

    .mobile-menu {
        padding: 15px;
    }

    .mobile-menu a {
        padding: 15px 0;
        font-size: 18px;
    }
}

/* Extra small phones */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 24px;
    }

    .hero-sub {
        font-size: 16px;
    }

    .btn-primary {
        font-size: 16px;
        padding: 12px 24px;
        min-width: 180px;
    }

    .logo span {
        font-size: 18px;
    }

    .burger {
        font-size: 24px;
    }

    .feature-item h3 {
        font-size: 18px;
    }

    .about-short h2 {
        font-size: 20px;
    }

    .cta-box {
        padding: 20px 12px;
    }

    .cta-box h2 {
        font-size: 18px;
    }

    .mobile-menu a {
        font-size: 16px;
    }

    .header-content {
        height: 60px;
    }

    .mobile-menu {
        padding: 10px 15px;
    }

    .mobile-phone {
        padding: 10px 15px !important;
        font-size: 16px;
    }

    .page-header {
        padding: 30px 0;
    }

    .page-header h1 {
        font-size: 24px;
    }

    .contacts-page {
        padding: 30px 0;
    }

    .contacts-page h2 {
        font-size: 20px;
        margin: 25px 0 10px 0;
    }

    .contacts-page p {
        font-size: 16px;
    }

    .contacts-page iframe {
        min-height: 250px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .service-card {
        padding: 20px 15px;
    }

    .service-icon {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .service-card h3 {
        font-size: 18px;
    }

    .symptoms-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .service-booking {
        padding: 25px 15px;
    }

    .price {
        font-size: 24px;
    }

    .service-intro h2 {
        font-size: 22px;
    }

    .content-block h2 {
        font-size: 20px;
    }

    .highlight-service::before {
        display: none;
    }

    .social-links {
        flex-direction: column;
        gap: 20px;
    }

    .social-link {
        min-width: auto;
        padding: 15px 20px;
    }

    .social-section {
        padding: 40px 0;
    }

    .social-section h2 {
        font-size: 24px;
    }

    .social-section p {
        font-size: 16px;
    }
}

/* Yandex Map */
.yandex-map {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.yandex-map iframe {
    width: 100% !important;
    height: 100% !important;
    border: none;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .yandex-map {
        height: 300px;
    }
}

/* Contacts Page */
.contacts-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 50px;
    align-items: start;
    margin-bottom: 40px;
}

.contacts-info h2 {
    color: #333;
    margin: 30px 0 15px 0;
    font-size: 24px;
}

.contacts-info h2:first-child {
    margin-top: 0;
}

.contacts-info p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 16px;
}

.contacts-info a {
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
}

.contacts-info a:hover {
    text-decoration: underline;
}

.contacts-image {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.contact-photo {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

@media (max-width: 992px) {
    .contacts-content {
        grid-template-columns: 1fr 300px;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .contacts-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contacts-image {
        order: -1;
    }
    
    .contact-photo {
        max-width: 400px;
        width: 100%;
    }
}

/* SEO Content */
.seo-content {
    background: #f8f9fa;
    padding: 60px 0;
    margin-top: 40px;
}

.seo-text h2 {
    color: #333;
    margin-bottom: 20px;
    font-size: 28px;
}

.seo-text h3 {
    color: #007bff;
    margin: 30px 0 15px 0;
    font-size: 20px;
}

.seo-text p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.seo-list {
    list-style: none;
    padding: 0;
}

.seo-list li {
    color: #666;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.seo-list li::before {
    content: "✓";
    color: #007bff;
    font-weight: bold;
    position: absolute;
    left: 0;
}
