:root {
    --primary: #BC8F8F;
    --secondary: #BC8F8F;
    --accent: #FFB4A2;
    --dark: #023047;
    --light: #F8F9FA;
    --text: #333333;
    --white: #FFFFFF;
    --gold: #BC8F8F;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.5s ease;
}
.video-wrapper {
    position: relative;
    display: inline-block;
}

.custom-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}
.video-section .video-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.video-section video {
    width: 100%;
    height: auto;
    display: block;
    background: #000;
}

.video-fallback {
    display: none;
    padding: 20px;
    text-align: center;
    background: #f8f9fa;
    border-radius: 10px;
    margin-top: 10px;
}

.video-fallback a {
    color: #8B7355;
    text-decoration: none;
    font-weight: bold;
}
/* Video Gallery Styles */
.video-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.main-video-player {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.main-video-player video {
    width: 100%;
    height: auto;
    display: block;
    background: #000;
}

.video-info {
    padding: 20px;
}

.video-info h3 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1.3em;
}

.video-info p {
    color: #7f8c8d;
    line-height: 1.5;
}

.video-thumbnails {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 15px;
    height: fit-content;
}

.video-thumbnails h4 {
    color: #2c3e50;
    margin-bottom: 15px;
    text-align: center;
}

.thumbnails-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.video-thumb {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.video-thumb:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.video-thumb.active {
    border-color: #8B7355;
}

.thumb-image {
    width: 100%;
    height: 120px;
    object-fit: cover;
    display: block;
}

.thumb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-thumb:hover .thumb-overlay {
    opacity: 1;
}

.play-icon {
    width: 40px;
    height: 40px;
    background: rgba(139, 115, 85, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.thumb-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 10px;
    color: white;
}

.thumb-info h5 {
    margin: 0;
    font-size: 0.9em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.thumb-duration {
    font-size: 0.8em;
    opacity: 0.8;
}

@media (max-width: 968px) {
    .video-gallery {
        grid-template-columns: 1fr;
    }
    
    .thumbnails-grid {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 10px;
    }
    
    .video-thumb {
        min-width: 200px;
    }
}
.video-fallback a:hover {
    text-decoration: underline;
}

.video-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

@media (max-width: 768px) {
    .video-container {
        grid-template-columns: 1fr;
    }
}
.custom-play-button:hover {
    background: white;
    transform: translate(-50%, -50%) scale(1.1);
}

.custom-play-button i {
    font-size: 30px;
    color: #8B7355;
    margin-left: 5px;
}
/* Video Section */
.video-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.video-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.video-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    background: #fff;
}

.video-placeholder {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: white;
}

.video-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.8;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.video-placeholder p {
    font-size: 1.2rem;
    font-weight: 500;
}

.video-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.video-feature {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}
/* Contact Form Styles */
.contact-form {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-control:focus {
    outline: none;
    border-color: #8B7355;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(139, 115, 85, 0.1);
}

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

/* Button Loading State */
#submitBtn {
    position: relative;
    width: 100%;
    padding: 15px;
    font-size: 16px;
    font-weight: 600;
}

.btn-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-loading i {
    font-size: 18px;
}

/* Form Status Messages */
.form-status {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
}

.form-status.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-status.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-status.info {
    background: #cce7ff;
    color: #004085;
    border: 1px solid #b3d7ff;
}

/* Validation Styles */
.form-control.error {
    border-color: #dc3545;
}

.form-control.success {
    border-color: #28a745;
}

.validation-error {
    color: #dc3545;
    font-size: 14px;
    margin-top: 5px;
    display: block;
}
.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
    font-size: 1.5rem;
}

.video-feature h4 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.video-feature p {
    color: #7f8c8d;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .video-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .video-features {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .video-feature {
        flex: 1;
        min-width: 200px;
    }
}

@media (max-width: 480px) {
    .video-features {
        flex-direction: column;
    }
    
    .video-icon {
        font-size: 3rem;
    }
    
    .video-placeholder p {
        font-size: 1rem;
    }
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
/* 📌 Базова структура картки */
.service-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* 🖼️ Зображення */
.service-img {
    height: 200px;
    overflow: hidden;
    position: relative;
}

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

.service-card:hover .service-img img {
    transform: scale(1.05);
}

/* 📋 Контент картки */
.service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 25px;
    overflow: hidden;
}

/* 🏷️ Заголовок */
.service-content h3 {
    font-size: 1.5rem;
    color: var(--dark, #2c5530);
    line-height: 1.3;
    margin-bottom: 10px;
    overflow: hidden;
    position: relative;
}

/* ✏️ Опис */
.service-content > p {
    line-height: 1.4;
    margin-bottom: 15px;
    color: #666;
    overflow: hidden;
    position: relative;
}

/* 💬 Деталі послуги */
.service-details {
    margin-bottom: 15px;
    padding: 10px 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.service-details span {
    display: block;
    font-weight: 600;
    color: #2c5530;
}

.service-price {
    color: #d4af37 !important;
    font-size: 1.1em;
}

/* 🌸 Показання / ⚠️ Протипоказання */
.service-indications,
.service-contraindications {
    margin-bottom: 15px;
}

.service-indications h4,
.service-contraindications h4 {
    color: #2c5530;
    margin-bottom: 8px;
    font-size: 0.95em;
}

/* 🔽 Списки показань */
.indications-container,
.contraindications-container {
    max-height: 120px;
    overflow: hidden;
    position: relative;
}

.indications-container ul,
.contraindications-container ul {
    list-style: none;
    margin: 0;
    padding-left: 0;
}

.indications-container li,
.contraindications-container li {
    font-size: 0.85em;
    line-height: 1.3;
    margin-bottom: 4px;
    color: #555;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.indications-container li::before,
.contraindications-container li::before {
    content: "•";
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.indications-container li::before {
    color: #2c5530;
}

.contraindications-container li::before {
    color: #dc3545;
}

/* 🌫️ Градієнт для затухання */
.indications-container::after,
.contraindications-container::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30px;
    background: linear-gradient(transparent, white);
    pointer-events: none;
}

/* 🪷 Спецстилі для KOBIDO і ритуалу */
.service-ritual-description {
    background: linear-gradient(135deg, #f8f6f0, #fff9f0);
    padding: 15px;
    border-radius: 10px;
    margin-top: 15px;
    border-left: 4px solid #d4af37;
}

.service-ritual-description h4 {
    color: #b8860b;
    margin-bottom: 10px;
    font-size: 0.95em;
}

/* 🪶 Бейдж */
.service-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #d4af37;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

/* 📏 Сітка */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    align-items: stretch;
}

/* 📱 Адаптація */
@media (max-width: 768px) {
    .service-content h3 {
        font-size: 1.3rem;
    }

    .service-content > p {
        max-height: 3.5em;
    }

    .indications-container,
    .contraindications-container {
        max-height: 80px;
    }

    .indications-container li,
    .contraindications-container li {
        font-size: 0.8em;
    }
}

/* ✨ Анімації при наведенні */
.service-card:hover .indications-container,
.service-card:hover .contraindications-container {
    max-height: 200px;
    transition: max-height 0.5s ease;
}

.service-card:hover .indications-container::after,
.service-card:hover .contraindications-container::after {
    opacity: 0;
    transition: opacity 0.3s ease;
}
/* ✅ Повна підтримка багаторядкового обрізання тексту */
.service-content h3,
.service-content > p {
    display: -webkit-box;
    display: box;
    display: -moz-box;
    display: flex;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    box-orient: vertical;
    flex-direction: column;
}

/* 🔹 Заголовок — 2 рядки */
.service-content h3 {
    -webkit-line-clamp: 2;
    line-clamp: 2;
}

/* 🔹 Опис — 3 рядки */
.service-content > p {
    -webkit-line-clamp: 3;
    line-clamp: 3;
}
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background-color: var(--light);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
}

.section-title h2 {
    font-size: 2.8rem;
    color: var(--dark);
    margin-bottom: 20px;
    font-weight: 700;
}

.section-title p {
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.title-decoration {
    position: relative;
    display: inline-block;
}

.title-decoration::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    border-radius: 2px;
}

.btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: var(--white);
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    transition: var(--transition);
    z-index: -1;
}

.btn:hover::before {
    left: 0;
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-secondary::before {
    background: var(--white);
}

.btn-secondary:hover {
    color: var(--secondary);
}

/* Header */
header {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--white);
    font-size: 1.5rem;
    box-shadow: var(--shadow);
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark);
}

.logo-text span {
    color: var(--secondary);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
    position: relative;
}

nav ul li a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    transition: var(--transition);
}

nav ul li a:hover::after {
    width: 100%;
}

nav ul li a:hover {
    color: var(--secondary);
}

.header-actions {
    display: flex;
    align-items: center;
}

.lang-switcher {
    display: flex;
    margin-right: 20px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.lang-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px 16px;
    transition: var(--transition);
    font-weight: 500;
    background-color: var(--light);
}

.lang-btn.active {
    background-color: var(--secondary);
    color: var(--white);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark);
    transition: var(--transition);
}

.mobile-menu-btn:hover {
    color: var(--secondary);
}
/* Стилі для показань та протипоказань */
.service-indications {
    background-color: #f8fff8;
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
    border-left: 5px solid #4CAF50;
}

.service-contraindications {
    background-color: #fff5f5;
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
    border-left: 5px solid #f44336;
}

.service-indications h4, .service-contraindications h4 {
    margin-bottom: 15px;
    color: var(--dark);
}

.indications-container, .contraindications-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 768px) {
    .indications-container, .contraindications-container {
        grid-template-columns: 1fr;
    }
}

.service-indications ul, .service-contraindications ul {
    list-style: none;
    padding-left: 0;
}

.service-indications ul li, .service-contraindications ul li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.service-indications ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
}

.service-contraindications ul li::before {
    content: '⚠️';
    position: absolute;
    left: 0;
}
/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(2, 48, 71, 0.8), rgba(188, 143, 143, 0.8)), url('https://images.unsplash.com/photo-1544161515-4ab6ce6db874?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" preserveAspectRatio="none"><path fill="rgba(255,255,255,0.05)" d="M0,0 L1000,0 L1000,1000 L0,1000 Z M0,0 Q500,200 1000,0 L1000,1000 Q500,800 0,1000 Z"></path></svg>');
    background-size: cover;
}

.hero-content {
    max-width: 900px;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    font-weight: 700;
    animation: fadeInUp 1s ease;
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 40px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    animation: fadeInUp 1s ease 0.4s both;
}

/* About Section */
.about {
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    opacity: 0.1;
    border-radius: 50%;
}

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

.about-text h3 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: var(--dark);
    position: relative;
    display: inline-block;
}

.about-text h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    border-radius: 2px;
}

.about-text p {
    margin-bottom: 25px;
    color: #666;
    font-size: 1.1rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 40px;
}

.feature {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    border-radius: 10px;
    background-color: var(--light);
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature i {
    font-size: 1.8rem;
    color: var(--secondary);
    margin-right: 20px;
    margin-top: 5px;
}

.feature-content h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.about-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.2), rgba(255, 183, 3, 0.2));
    z-index: 1;
    opacity: 0;
    transition: var(--transition);
}

.about-image:hover::before {
    opacity: 1;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

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

/* Services Section */
.services {
    background-color: var(--light);
    position: relative;
    overflow: hidden;
}

.services::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    opacity: 0.1;
    border-radius: 50%;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.service-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--accent), var(--gold));
    color: var(--white);
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.service-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.service-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.3));
    z-index: 1;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.service-content p {
    margin-bottom: 20px;
    color: #666;
}

.service-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
    font-weight: 600;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.service-price {
    color: var(--secondary);
    font-size: 1.3rem;
}

.contraindications {
    background-color: #FFF5F5;
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
    border-left: 5px solid var(--accent);
}

.contraindications h4 {
    color: var(--accent);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

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

.contraindications ul li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    font-size: 0.9rem;
}

.contraindications ul li::before {
    content: '⚠️';
    position: absolute;
    left: 0;
}

/* Special Service Detail */
.service-detail {
    background-color: var(--white);
    border-radius: 15px;
    padding: 50px;
    margin-top: 80px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.service-detail::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    opacity: 0.1;
    border-radius: 50%;
}

.service-detail-header {
    text-align: center;
    margin-bottom: 40px;
}

.service-detail-header h3 {
    font-size: 2.2rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.service-detail-header p {
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.service-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.detail-section h4 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--secondary);
    position: relative;
    display: inline-block;
}

.detail-section h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
}

.detail-section ul {
    list-style: none;
}

.detail-section ul li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.detail-section ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
}

/* Reviews Section */
.reviews {
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.reviews::before {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    opacity: 0.1;
    border-radius: 50%;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background-color: var(--light);
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 3px solid var(--primary);
}

.review-info h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--dark);
}

.review-date {
    color: #666;
    font-size: 0.9rem;
}

.review-rating {
    color: var(--gold);
    margin-bottom: 15px;
}

.review-text {
    color: #666;
    font-style: italic;
    line-height: 1.6;
}

/* Team Section */
.team {
    background-color: var(--light);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    justify-items: center;
}

.team-member {
    text-align: center;
    background-color: var(--white);
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    max-width: 350px;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
}

.team-member:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.member-photo {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 25px;
    border: 5px solid var(--white);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.team-member:hover .member-photo {
    transform: scale(1.05);
    border-color: var(--primary);
}

.team-member h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.team-member .specialization {
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.team-member .experience {
    color: #666;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.member-social a {
    width: 40px;
    height: 40px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.member-social a:hover {
    background-color: var(--secondary);
    color: var(--white);
    transform: translateY(-5px);
}

/* Gallery Section */
.gallery {
    background-color: var(--white);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

.filter-btn {
    background: none;
    border: 2px solid var(--secondary);
    color: var(--secondary);
    padding: 10px 25px;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.filter-btn.active, .filter-btn:hover {
    background-color: var(--secondary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    height: 280px;
    cursor: pointer;
    box-shadow: var(--shadow);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.7));
    display: flex;
    align-items: flex-end;
    padding: 25px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.gallery-info p {
    color: var(--primary);
    font-size: 0.95rem;
}

/* Booking Section */
.booking {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.booking::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.booking .section-title h2,
.booking .section-title p {
    color: var(--white);
}

.booking .section-title::after {
    background: var(--white);
}

.booking-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.booking-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.step {
    text-align: center;
    position: relative;
}

.step::before {
    content: '';
    position: absolute;
    top: 40px;
    right: -20px;
    width: 40px;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
}

.step:last-child::before {
    display: none;
}

.step-icon {
    width: 90px;
    height: 90px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.2rem;
    transition: var(--transition);
}

.step:hover .step-icon {
    transform: scale(1.1);
    background-color: rgba(255, 255, 255, 0.3);
}

.step h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.booksy-widget {
    background-color: var(--white);
    border-radius: 15px;
    padding: 50px;
    box-shadow: var(--shadow);
    margin-top: 50px;
}

.booksy-widget h3 {
    color: var(--dark);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.booksy-placeholder {
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
    border-radius: 10px;
    margin: 20px 0;
    padding: 40px;
}

.booksy-placeholder p {
    color: var(--dark);
    margin-bottom: 15px;
    text-align: center;
}

/* Contact Section */
.contact {
    background-color: var(--light);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    opacity: 0.1;
    border-radius: 50%;
}

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

.contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 35px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    padding: 25px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
    font-size: 1.8rem;
    color: var(--white);
    flex-shrink: 0;
}

.contact-details h3 {
    margin-bottom: 10px;
    color: var(--dark);
    font-size: 1.3rem;
}

.contact-form {
    background-color: var(--white);
    border-radius: 15px;
    padding: 50px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    opacity: 0.1;
    border-radius: 50%;
}

.contact-form h3 {
    color: var(--dark);
    margin-bottom: 30px;
    font-size: 1.8rem;
    position: relative;
    display: inline-block;
}

.contact-form h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    border-radius: 2px;
}

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

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

.form-control {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--secondary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.2);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.map-container {
    margin-top: 70px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 450px;
}

/* Footer */
footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 100px 0 30px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    opacity: 0.1;
    border-radius: 50%;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 50px;
    margin-bottom: 70px;
    position: relative;
    z-index: 1;
}

.footer-col h3 {
    font-size: 1.4rem;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
}

.footer-about p {
    margin-bottom: 25px;
    color: #bbb;
    line-height: 1.8;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 15px;
}

.footer-links ul li a {
    color: #bbb;
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.footer-links ul li a:hover {
    color: var(--primary);
    transform: translateX(8px);
}

.footer-links ul li a i {
    margin-right: 10px;
    font-size: 0.9rem;
    color: var(--primary);
}

.footer-contact p {
    margin-bottom: 18px;
    color: #bbb;
    display: flex;
    align-items: center;
}

.footer-contact i {
    margin-right: 15px;
    color: var(--primary);
    font-size: 1.1rem;
    width: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary);
    transform: translateY(-5px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #bbb;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

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

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Responsive */
@media (max-width: 1200px) {
    .step::before {
        display: none;
    }
}

@media (max-width: 992px) {
    .about-content,
    .contact-content,
    .service-detail-content {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: -1;
    }

    .hero-content h1 {
        font-size: 3.2rem;
    }
}

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

    nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        box-shadow: var(--shadow);
        display: none;
        padding: 20px 0;
    }

    nav.active {
        display: block;
    }

    nav ul {
        flex-direction: column;
        padding: 0 20px;
    }

    nav ul li {
        margin: 12px 0;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
    }

    .hero-btns .btn {
        width: 80%;
        margin-bottom: 15px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .booking-steps {
        grid-template-columns: 1fr;
    }

    .section-title h2 {
        font-size: 2.2rem;
    }

    .service-detail {
        padding: 30px 20px;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .booksy-widget {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .services-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

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

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

    .service-detail-content {
        grid-template-columns: 1fr;
    }
}




        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        html {
            scroll-behavior: smooth;
            overflow-x: hidden;
        }

        body {
            background-color: var(--light);
            color: var(--text);
            line-height: 1.7;
            overflow-x: hidden;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        section {
            padding: 80px 0;
        }

        /* Header Styles */
        header {
            background-color: rgba(255, 255, 255, 0.95);
            box-shadow: var(--shadow);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            transition: var(--transition);
            backdrop-filter: blur(10px);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--secondary), var(--primary));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            color: var(--white);
            font-size: 1.5rem;
            box-shadow: var(--shadow);
        }

        .logo-text {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--dark);
        }

        .logo-text span {
            color: var(--secondary);
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 30px;
            position: relative;
        }

        nav ul li a {
            text-decoration: none;
            color: var(--text);
            font-weight: 500;
            transition: var(--transition);
            position: relative;
            padding: 5px 0;
        }

        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            transition: var(--transition);
        }

        nav ul li a:hover::after {
            width: 100%;
        }

        nav ul li a:hover {
            color: var(--secondary);
        }

        .header-actions {
            display: flex;
            align-items: center;
        }

        .lang-switcher {
            display: flex;
            margin-right: 20px;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }

        .lang-btn {
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px 16px;
            transition: var(--transition);
            font-weight: 500;
            background-color: var(--light);
        }

        .lang-btn.active {
            background-color: var(--secondary);
            color: var(--white);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--dark);
            transition: var(--transition);
        }

        .mobile-menu-btn:hover {
            color: var(--secondary);
        }

        /* Article Hero */
        .article-hero {
            background: linear-gradient(rgba(2, 48, 71, 0.9), rgba(188, 143, 143, 0.8)), url('https://images.unsplash.com/photo-1544161515-4ab6ce6db874?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            color: var(--white);
            padding: 150px 0 80px;
            text-align: center;
            position: relative;
        }

        .article-hero-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .article-hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
        }

        .article-meta {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }

        .article-meta span {
            display: flex;
            align-items: center;
            font-size: 1.1rem;
        }

        .article-meta i {
            margin-right: 10px;
            color: var(--primary);
        }

        /* Breadcrumb */
        .breadcrumb {
            background-color: var(--white);
            padding: 20px 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .breadcrumb-content {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.95rem;
        }

        .breadcrumb a {
            color: var(--secondary);
            text-decoration: none;
            transition: var(--transition);
        }

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

        .breadcrumb span {
            color: #666;
        }

        /* Article Content */
        .article-content {
            background-color: var(--white);
            border-radius: 15px;
            box-shadow: var(--shadow);
            overflow: hidden;
            margin-top: -50px;
            position: relative;
            z-index: 2;
        }

        .article-main-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
        }

        .article-body {
            padding: 50px;
        }

        .article-section {
            margin-bottom: 40px;
        }

        .article-section h2 {
            color: var(--dark);
            margin-bottom: 20px;
            font-size: 1.8rem;
            position: relative;
            padding-bottom: 10px;
        }

        .article-section h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
        }

        .article-section p {
            margin-bottom: 15px;
            font-size: 1.1rem;
            line-height: 1.8;
        }

        .article-section ul, .article-section ol {
            margin: 20px 0;
            padding-left: 30px;
        }

        .article-section li {
            margin-bottom: 10px;
            font-size: 1.1rem;
        }

        .benefits-grid, .contraindications-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }

        .benefit-card, .contraindication-card {
            background-color: var(--light);
            padding: 25px;
            border-radius: 10px;
            border-left: 4px solid var(--secondary);
        }

        .contraindication-card {
            border-left-color: #ff6b6b;
        }

        .benefit-card h3, .contraindication-card h3 {
            color: var(--dark);
            margin-bottom: 10px;
            font-size: 1.3rem;
        }

        .warning-box {
            background-color: #fff5f5;
            border: 1px solid #ff6b6b;
            border-radius: 10px;
            padding: 25px;
            margin: 30px 0;
        }

        .warning-box h3 {
            color: #d63031;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        /* Article Footer */
        .article-footer {
            border-top: 1px solid #eee;
            padding-top: 30px;
            margin-top: 50px;
        }

        .article-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 30px;
        }

        .tag {
            background-color: var(--primary);
            color: var(--dark);
            padding: 8px 16px;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 500;
            text-decoration: none;
            transition: var(--transition);
        }

        .tag:hover {
            background-color: var(--secondary);
            transform: translateY(-2px);
        }

        .article-actions {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .social-share {
            display: flex;
            gap: 15px;
        }

        .social-share a {
            width: 45px;
            height: 45px;
            background-color: var(--light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--dark);
            transition: var(--transition);
            text-decoration: none;
        }

        .social-share a:hover {
            background-color: var(--secondary);
            color: var(--white);
            transform: translateY(-3px);
        }

        /* Related Articles */
        .related-articles {
            background-color: var(--light);
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: var(--dark);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            border-radius: 2px;
        }

        .articles-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .article-card {
            background-color: var(--white);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .article-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .article-card-img {
            height: 200px;
            overflow: hidden;
        }

        .article-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

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

        .article-card-content {
            padding: 25px;
        }

        .article-card h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--dark);
        }

        .article-card p {
            color: #666;
            margin-bottom: 20px;
        }

        .read-more {
            color: var(--secondary);
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 5px;
            transition: var(--transition);
        }

        .read-more:hover {
            color: var(--primary);
            gap: 10px;
        }

        /* Footer */
        footer {
            background-color: var(--dark);
            color: var(--white);
            padding: 80px 0 30px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 50px;
            margin-bottom: 50px;
        }

        .footer-col h3 {
            font-size: 1.4rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 15px;
        }

        .footer-col h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
        }

        .footer-about p {
            margin-bottom: 25px;
            color: #bbb;
            line-height: 1.8;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links ul li {
            margin-bottom: 15px;
        }

        .footer-links ul li a {
            color: #bbb;
            text-decoration: none;
            transition: var(--transition);
            display: flex;
            align-items: center;
        }

        .footer-links ul li a:hover {
            color: var(--primary);
            transform: translateX(8px);
        }

        .footer-links ul li a i {
            margin-right: 10px;
            font-size: 0.9rem;
            color: var(--primary);
        }

        .footer-contact p {
            margin-bottom: 18px;
            color: #bbb;
            display: flex;
            align-items: center;
        }

        .footer-contact i {
            margin-right: 15px;
            color: var(--primary);
            font-size: 1.1rem;
            width: 20px;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 25px;
        }

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

        .social-links a:hover {
            background-color: var(--primary);
            transform: translateY(-5px);
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #bbb;
            font-size: 0.95rem;
        }

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

            nav {
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: var(--white);
                box-shadow: var(--shadow);
                display: none;
                padding: 20px 0;
            }

            nav.active {
                display: block;
            }

            nav ul {
                flex-direction: column;
                padding: 0 20px;
            }

            nav ul li {
                margin: 12px 0;
            }

            .article-hero h1 {
                font-size: 2.2rem;
            }

            .article-body {
                padding: 30px 20px;
            }

            .article-actions {
                flex-direction: column;
                align-items: flex-start;
            }

            .benefits-grid, .contraindications-grid {
                grid-template-columns: 1fr;
            }
        }

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

        .fade-in {
            animation: fadeInUp 0.8s ease;
        }
/* Blog Hero Section */
.blog-hero {
    height: 60vh;
    background: linear-gradient(rgba(2, 48, 71, 0.8), rgba(188, 143, 143, 0.8)), url('https://images.unsplash.com/photo-1544161515-4ab6ce6db874?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" preserveAspectRatio="none"><path fill="rgba(255,255,255,0.05)" d="M0,0 L1000,0 L1000,1000 L0,1000 Z M0,0 Q500,200 1000,0 L1000,1000 Q500,800 0,1000 Z"></path></svg>');
    background-size: cover;
}

.blog-hero-content {
    max-width: 800px;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.blog-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    font-weight: 700;
    animation: fadeInUp 1s ease;
}

.blog-hero-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease 0.2s both;
}

/* Blog Content */
.blog-content {
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.blog-content::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    opacity: 0.1;
    border-radius: 50%;
}

.blog-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.articles-container {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.blog-article {
    background-color: var(--light);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.blog-article:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.article-img {
    height: 300px;
    overflow: hidden;
    position: relative;
}

.article-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.3));
    z-index: 1;
}

.article-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-article:hover .article-img img {
    transform: scale(1.05);
}

.article-content {
    padding: 40px;
}

.article-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 0.95rem;
    color: #666;
}

.article-meta span {
    display: flex;
    align-items: center;
}

.article-meta i {
    margin-right: 8px;
    color: var(--secondary);
}

.article-content h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--dark);
    line-height: 1.3;
}

.article-content p {
    margin-bottom: 25px;
    color: #666;
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.tag {
    background-color: var(--primary);
    color: var(--dark);
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
}

.article-link {
    color: var(--secondary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
}

.article-link i {
    margin-left: 8px;
    transition: var(--transition);
}

.article-link:hover i {
    transform: translateX(8px);
}

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

/* Sidebar */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.sidebar-widget {
    background-color: var(--light);
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--shadow);
}

.widget-title {
    font-size: 1.4rem;
    margin-bottom: 25px;
    color: var(--dark);
    position: relative;
    display: inline-block;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
}

.categories-list {
    list-style: none;
}

.categories-list li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.categories-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.categories-list a {
    color: var(--text);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.categories-list a:hover {
    color: var(--secondary);
}

.categories-list span {
    background-color: var(--primary);
    color: var(--dark);
    padding: 3px 10px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 500;
}

.recent-posts {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.recent-post {
    display: flex;
    gap: 15px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.recent-post:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.recent-post-img {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.recent-post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.recent-post:hover .recent-post-img img {
    transform: scale(1.1);
}

.recent-post-content h4 {
    font-size: 1rem;
    margin-bottom: 8px;
    line-height: 1.4;
}

.recent-post-content h4 a {
    color: var(--dark);
    text-decoration: none;
    transition: var(--transition);
}

.recent-post-content h4 a:hover {
    color: var(--secondary);
}

.recent-post-meta {
    display: flex;
    gap: 15px;
    font-size: 0.85rem;
    color: #666;
}

.recent-post-meta span {
    display: flex;
    align-items: center;
}

.recent-post-meta i {
    margin-right: 5px;
    font-size: 0.8rem;
}

.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-cloud {
    background-color: var(--white);
    color: var(--dark);
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition);
    border: 1px solid #eee;
}

.tag-cloud:hover {
    background-color: var(--secondary);
    color: var(--white);
    transform: translateY(-3px);
}

/* Pagination */
.blog-pagination {
    display: flex;
    justify-content: center;
    margin-top: 70px;
}

.pagination-list {
    display: flex;
    list-style: none;
    gap: 10px;
}

.pagination-item a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: var(--light);
    color: var(--dark);
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.pagination-item.active a,
.pagination-item a:hover {
    background-color: var(--secondary);
    color: var(--white);
}

/* Newsletter */
.newsletter {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: var(--white);
    text-align: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.newsletter h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.newsletter p {
    margin-bottom: 40px;
    font-size: 1.1rem;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 50px 0 0 50px;
    font-size: 1rem;
    outline: none;
}

.newsletter-btn {
    background: var(--dark);
    color: var(--white);
    border: none;
    padding: 0 30px;
    border-radius: 0 50px 50px 0;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-btn:hover {
    background: var(--accent);
    color: var(--dark);
}

/* Footer */
footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    opacity: 0.1;
    border-radius: 50%;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 50px;
    margin-bottom: 70px;
    position: relative;
    z-index: 1;
}

.footer-col h3 {
    font-size: 1.4rem;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
}

.footer-about p {
    margin-bottom: 25px;
    color: #bbb;
    line-height: 1.8;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 15px;
}

.footer-links ul li a {
    color: #bbb;
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.footer-links ul li a:hover {
    color: var(--primary);
    transform: translateX(8px);
}

.footer-links ul li a i {
    margin-right: 10px;
    font-size: 0.9rem;
    color: var(--primary);
}

.footer-contact p {
    margin-bottom: 18px;
    color: #bbb;
    display: flex;
    align-items: center;
}

.footer-contact i {
    margin-right: 15px;
    color: var(--primary);
    font-size: 1.1rem;
    width: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary);
    transform: translateY(-5px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #bbb;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

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

/* Responsive */
@media (max-width: 992px) {
    .blog-container {
        grid-template-columns: 1fr;
    }
    
    .blog-sidebar {
        order: -1;
    }
}

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

    nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        box-shadow: var(--shadow);
        display: none;
        padding: 20px 0;
    }

    nav.active {
        display: block;
    }

    nav ul {
        flex-direction: column;
        padding: 0 20px;
    }

    nav ul li {
        margin: 12px 0;
    }

    .blog-hero-content h1 {
        font-size: 2.5rem;
    }

    .blog-hero-content p {
        font-size: 1.2rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-input {
        border-radius: 50px;
        margin-bottom: 15px;
    }

    .newsletter-btn {
        border-radius: 50px;
        padding: 15px;
    }

    .section-title h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 576px) {
    .article-content {
        padding: 30px 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}
