/* Фирменные цвета из брендбука */
:root {
    --primary: #E19E00; /* Золотой */
    --secondary: #767562; /* Серо-зеленый */
    --accent: #bababa; /* Светло-серый */
    --dark: #333333;
    --light: #f9f9f9;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Шапка сайта */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary);
    display: flex;
    align-items: center;
    z-index: 1001;
}

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

.logo a {
    text-decoration: none;
    color: inherit;
}

/* Стили для переключателя языка */
.language-switcher {
    display: flex;
    gap: 5px;
    margin-left: 20px;
    z-index: 1001;
}

.lang-btn {
    display: inline-block;
    padding: 8px 12px;
    background-color: var(--light);
    color: var(--dark);
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid var(--accent);
    min-width: 40px;
    text-align: center;
}

.lang-btn:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    border-color: var(--primary);
}

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

/* Мобильная версия переключателя языка */
.lang-mobile {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--accent);
}

.lang-mobile a {
    display: inline-block;
    padding: 5px 10px;
    color: var(--dark);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
}

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

.lang-mobile a.active {
    color: var(--primary);
    font-weight: 600;
}

/* Адаптивность для переключателя языка */
@media (max-width: 992px) {
    .language-switcher {
        margin-left: auto;
        margin-right: 15px;
    }
}

@media (max-width: 768px) {
    .language-switcher {
        display: none;
    }
}

/* Навигация для десктопа */
.desktop-nav {
    display: flex;
}

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

.desktop-nav ul li {
    margin-left: 30px;
}

.desktop-nav ul li a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.desktop-nav ul li a:hover {
    color: var(--primary);
}

.desktop-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s;
}

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

/* Бургер-меню для мобильных */
.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.burger-menu span {
    height: 3px;
    width: 25px;
    background: var(--secondary);
    margin-bottom: 4px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--white);
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    transition: right 0.4s ease;
    z-index: 1000;
    padding: 80px 20px 20px;
    overflow-y: auto;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav ul {
    list-style: none;
}

.mobile-nav ul li {
    margin-bottom: 20px;
}

.mobile-nav ul li a {
    text-decoration: none;
    color: var(--dark);
    font-size: 1.2rem;
    font-weight: 500;
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid var(--accent);
    transition: color 0.3s;
}

.mobile-nav ul li a:hover {
    color: var(--primary);
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Анимация бургера при открытии */
.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Кнопки */
.book-btn, .btn-primary, .btn-secondary {
    background-color: var(--primary);
    color: var(--white);
    border: none;
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.book-btn:hover, .btn-primary:hover {
    background-color: #c98e00;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(225, 158, 0, 0.3);
}

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

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

.btn-large {
    padding: 15px 30px;
    font-size: 1.1rem;
}

/* Герой-секция - ИСПРАВЛЕННЫЙ ПУТЬ (было ../1/images/common/hero-bg.jpg) */
.hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../../images/common/hero-bg.jpg') center/cover no-repeat;
    color: var(--white);
    padding: 150px 0;
    text-align: center;
    position: relative;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.slogan {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: bold;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Форма бронирования */
.booking-widget {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
    max-width: 1000px;
    margin: -80px auto 0;
    position: relative;
    z-index: 10;
}

.search-form-placeholder {
    text-align: center;
    padding: 40px;
    background: var(--light);
    border-radius: 8px;
    border: 2px dashed var(--accent);
}

/* Секции */
section {
    padding: 100px 0;
}

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

.section-title h2 {
    font-size: 2.5rem;
    color: var(--secondary);
    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: 3px;
    background-color: var(--primary);
}

.section-title p {
    font-size: 1.1rem;
    color: var(--dark);
    max-width: 600px;
    margin: 20px auto 0;
}

/* Преимущества */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 40px 20px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(225, 158, 0, 0.1), transparent);
    transition: left 0.5s;
}

.feature-card:hover::before {
    left: 100%;
}

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

.feature-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
    transition: transform 0.3s;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-card h3 {
    margin-bottom: 15px;
    color: var(--secondary);
}

.feature-card p {
    color: var(--dark);
    line-height: 1.6;
}

/* Номера на главной */
.rooms-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.room-preview-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
}

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

.room-preview-image {
    height: 250px;
    position: relative;
    overflow: hidden;
}

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

.room-preview-card:hover .room-preview-image img {
    transform: scale(1.05);
}

.room-preview-content {
    padding: 25px;
    text-align: center;
}

.room-preview-content h3 {
    margin-bottom: 10px;
    color: var(--secondary);
    font-size: 1.4rem;
}

.room-preview-content p {
    color: var(--primary);
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.text-center {
    text-align: center;
}

/* Хлебные крошки */
.breadcrumbs {
    background: var(--white);
    padding: 15px 0;
    border-bottom: 1px solid var(--accent);
    margin-bottom: 30px;
}

.breadcrumbs a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s;
}

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

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

/* Стили для отзывов */
.testimonials {
    background: var(--light);
    padding: 80px 0;
}

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

@media (min-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-card::before {
    content: '"';
    font-size: 5rem;
    color: var(--primary);
    position: absolute;
    top: 10px;
    left: 20px;
    opacity: 0.2;
    line-height: 1;
}

.testimonial-content {
    margin-bottom: 25px;
    font-style: italic;
    position: relative;
    z-index: 2;
    line-height: 1.7;
    font-size: 1.1rem;
}

.testimonial-author {
    border-top: 1px solid var(--accent);
    padding-top: 20px;
}

.testimonial-author strong {
    display: block;
    color: var(--secondary);
    font-size: 1.1rem;
}

.testimonial-author span {
    font-size: 0.9rem;
    color: var(--dark);
    opacity: 0.7;
}

/* Стили для карты */
.map-section {
    padding: 80px 0;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.map-placeholder {
    display: grid;
    grid-template-columns: 1fr 2fr;
    min-height: 450px;
}

.map-info {
    background: linear-gradient(135deg, var(--secondary) 0%, #5a5b4a 100%);
    color: white;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.map-info h3 {
    color: var(--primary);
    margin-bottom: 25px;
    font-size: 1.5rem;
}

.map-info p {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
}

.map-info i {
    margin-right: 15px;
    width: 20px;
    color: var(--primary);
    font-size: 1.2rem;
}

.map-frame {
    background: var(--accent);
    position: relative;
    overflow: hidden;
}

/* Стили для карты-ссылки */
.map-link {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    overflow: hidden;
}

.map-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(225, 158, 0, 0.9);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.map-overlay i {
    font-size: 2rem;
    margin-bottom: 10px;
}

.map-overlay span {
    font-size: 1.1rem;
    font-weight: 600;
}

.map-link:hover .map-overlay {
    opacity: 1;
}

.map-link:hover img {
    transform: scale(1.05);
}

/* Футер */
footer {
    background: linear-gradient(135deg, var(--dark) 0%, #2a2a2a 100%);
    color: var(--white);
    padding: 70px 0 30px;
}

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

.footer-column h3 {
    color: var(--primary);
    margin-bottom: 25px;
    font-size: 1.4rem;
    position: relative;
    display: inline-block;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary);
}

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

.footer-links li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    transition: transform 0.3s;
}

.footer-links li:hover {
    transform: translateX(5px);
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

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

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

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

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

.social-links a:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(225, 158, 0, 0.3);
}

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

/* Стили для страницы О нас */
.about-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.about-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 300;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.4rem;
    opacity: 0.9;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

.about-content {
    padding: 80px 0;
}

.mission-section {
    margin-bottom: 100px;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.mission-text h2 {
    color: var(--secondary);
    margin-bottom: 2.5rem;
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
}

.mission-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary);
}

.mission-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--dark);
}

.mission-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    transition: transform 0.5s ease;
}

.mission-image img:hover {
    transform: scale(1.02);
}

.history-section {
    margin-bottom: 100px;
}

.history-section h2 {
    text-align: center;
    color: var(--secondary);
    margin-bottom: 4rem;
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.history-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary);
}

.history-timeline {
    max-width: 900px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    margin-bottom: 4rem;
    align-items: flex-start;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 60px;
    top: 0;
    bottom: -4rem;
    width: 2px;
    background: var(--primary);
    opacity: 0.3;
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-year {
    background: var(--primary);
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    min-width: 140px;
    text-align: center;
    margin-right: 40px;
    flex-shrink: 0;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(225, 158, 0, 0.3);
}

.timeline-content {
    flex: 1;
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.timeline-content h3 {
    color: var(--secondary);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.timeline-content p {
    line-height: 1.7;
    color: var(--dark);
    font-size: 1.1rem;
}

.values-section {
    margin-bottom: 100px;
}

.values-section h2 {
    text-align: center;
    color: var(--secondary);
    margin-bottom: 4rem;
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.values-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary);
}

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

.value-card {
    text-align: center;
    padding: 50px 30px;
    border-radius: 20px;
    background: var(--white);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.value-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    font-size: 2.2rem;
    transition: transform 0.3s;
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
}

.value-card h3 {
    color: var(--secondary);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.value-card p {
    color: var(--dark);
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Стили для блока "Наша команда" */
.team-section {
    margin-bottom: 100px;
}

.team-section h2 {
    text-align: center;
    color: var(--secondary);
    margin-bottom: 2rem;
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.team-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary);
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.team-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.team-photo {
    position: relative;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
    overflow: hidden;
    padding: 20px;
}

.team-photo img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 280px;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.5s ease;
}

.team-card:hover .team-photo img {
    transform: scale(1.03);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.team-info {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.team-info h3 {
    margin: 0 0 5px 0;
    color: var(--dark);
    font-size: 1.3rem;
    font-weight: 600;
}

.team-position {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 15px;
    display: block;
}

.team-info p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
    flex-grow: 1;
}

.advantages-section {
    margin-bottom: 100px;
}

.advantages-section h2 {
    text-align: center;
    color: var(--secondary);
    margin-bottom: 4rem;
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.advantages-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary);
}

.advantages-list {
    max-width: 900px;
    margin: 0 auto;
}

/* СТИЛИ ДЛЯ ФОТОГРАФИЙ ЗАВТРАКОВ - ДОБАВЛЕНО */
.advantage-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 3rem;
    padding: 30px;
    border-radius: 15px;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.advantage-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.advantage-image {
    flex-shrink: 0;
    width: 180px;
    height: 180px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    position: relative;
    margin-bottom: 25px;
}

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

.advantage-item:hover .advantage-image {
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

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

.advantage-content {
    flex: 1;
}

.advantage-content h3 {
    color: var(--secondary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    position: relative;
    display: inline-block;
}

.advantage-content h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--primary);
}

.advantage-content p {
    color: var(--dark);
    line-height: 1.7;
    font-size: 1.1rem;
    margin-top: 15px;
}

.about-cta {
    background: linear-gradient(135deg, var(--secondary) 0%, #5a5b4a 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Стили для страницы контактов */
.contacts-page {
    padding: 50px 0;
    min-height: 70vh;
}

.contacts-header {
    text-align: center;
    margin-bottom: 60px;
}

.contacts-header h1 {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 15px;
}

.contacts-header p {
    font-size: 1.2rem;
    color: var(--dark);
    opacity: 0.8;
}

/* Контактная сетка */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.contact-details h2,
.contact-map h2 {
    color: var(--secondary);
    margin-bottom: 30px;
    font-size: 1.8rem;
}

/* Контактные элементы */
.contact-items {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

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

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    flex-shrink: 0;
    color: white;
    font-size: 1.2rem;
}

.contact-text h3 {
    color: var(--secondary);
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.contact-text p {
    color: var(--dark);
    font-size: 1.1rem;
}

/* Социальные контакты - ОБНОВЛЕННЫЕ (КРУГЛЫЕ) */
.social-contacts h3 {
    color: var(--secondary);
    margin-bottom: 20px;
}

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

.social-contacts .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    text-decoration: none;
    color: var(--dark);
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    border: 1px solid var(--accent);
}

.social-contacts .social-link:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(225, 158, 0, 0.3);
    border-color: var(--primary);
}

.social-contacts .social-link i {
    font-size: 1.5rem;
}

/* Форма обратной связи */
.contact-form-section {
    background: var(--white);
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 80px;
}

.form-container h2 {
    color: var(--secondary);
    margin-bottom: 15px;
    text-align: center;
    font-size: 2rem;
}

.form-container p {
    text-align: center;
    margin-bottom: 40px;
    color: var(--dark);
    font-size: 1.1rem;
}

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

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--accent);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

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

/* Стили для уведомлений формы */
.form-notification {
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    font-weight: 500;
    text-align: center;
    display: none;
}

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

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

/* Стили для состояния загрузки */
.loading-spinner {
    font-style: italic;
    opacity: 0.8;
    display: none;
}

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

.button-text {
    display: inline;
}

/* Плейсхолдеры */
input::placeholder,
textarea::placeholder {
    color: #999;
    opacity: 0.7;
}

/* Telegram стили */
.telegram-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--secondary);
    font-size: 0.9rem;
    margin-top: 20px;
    padding: 10px;
    background: rgba(225, 158, 0, 0.05);
    border-radius: 8px;
    border-left: 3px solid var(--primary);
}

.telegram-info i {
    color: #0088cc;
    font-size: 1.2rem;
}

/* Стили для кнопки Telegram в форме */
.telegram-direct-link {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--accent);
    text-align: center;
}

.telegram-direct-link p {
    margin-bottom: 15px;
    color: var(--dark);
}

.telegram-direct-link strong {
    display: block;
    margin-bottom: 10px;
    color: var(--secondary);
    font-size: 1.1rem;
}

.telegram-direct-link a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--primary);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--primary);
}

.telegram-direct-link a:hover {
    background: #c98e00;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(225, 158, 0, 0.3);
}

.telegram-direct-link a i {
    font-size: 1.3rem;
}

/* FAQ секция */
.faq-section {
    margin-bottom: 80px;
}

.faq-section h2 {
    text-align: center;
    color: var(--secondary);
    margin-bottom: 50px;
    font-size: 2.2rem;
}

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

.faq-item {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    text-align: center;
}

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

.faq-item h3 {
    color: var(--secondary);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.faq-item p {
    color: var(--dark);
    line-height: 1.6;
}

/* Анимации */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease-out;
}

/* НОВЫЕ СТИЛИ ДЛЯ СТРАНИЦЫ УСЛУГ */

/* Центрирование текста */
.text-center {
    text-align: center !important;
}

/* Сетка для завтраков */
.advantages-grid {
    max-width: 1200px;
    margin: 0 auto;
}

.advantage-row {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 50px;
}

@media (max-width: 992px) {
    .advantage-row {
        flex-direction: column;
        gap: 30px;
    }
}

.advantage-center {
    display: flex;
    justify-content: center;
    margin: 0 auto;
    max-width: 800px;
}

/* Стили для центрированных advantage-item */
.advantage-item.text-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.advantage-item.text-center .advantage-image {
    margin-bottom: 25px;
}

.advantage-item.text-center .advantage-content {
    text-align: center;
}

.advantage-item.text-center .advantage-content h3::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Стили для трансфера */
.transfers-section {
    margin: 80px 0;
    text-align: center;
    padding: 60px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

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

.transfers-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary);
}

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

.transfer-content h3 {
    color: var(--secondary);
    margin-bottom: 25px;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.transfer-content h3 i {
    color: var(--primary);
}

.transfer-content p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--dark);
}

.transfer-content strong {
    color: var(--primary);
    font-size: 1.3rem;
    display: inline-block;
    margin: 15px 0;
}

.transfer-note {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px dashed var(--accent);
    color: var(--secondary);
    font-size: 1.2rem;
}

/* Центрирование заголовков в миссии */
.mission-text h2 {
    text-align: center;
    left: 0;
    transform: none;
    width: 100%;
}

.mission-text h2::after {
    left: 50%;
    transform: translateX(-50%);
}

.mission-text p {
    text-align: center;
}

/* Центрирование контактных деталей */
.contact-details.text-center h2 {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.contact-details.text-center h2 i {
    color: var(--primary);
}

.contact-details.text-center .contact-items {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Стили для центрированных контактных итеймов */
.contact-items .contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Центрирование секций */
.values-section .section-title h2 {
    left: 0;
    transform: none;
}

.values-section .section-title h2::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Стили для новой сетки услуг */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    padding: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.service-header {
    margin-bottom: 25px;
}

.service-header h2 {
    color: var(--secondary);
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 0;
}

.service-header h2 i {
    color: var(--primary);
    font-size: 1.4rem;
}

.service-images {
    margin-bottom: 25px;
    width: 100%;
}

.service-image-main {
    width: 100%;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

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

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

/* Стили для стека изображений */
.service-images.stacked {
    position: relative;
    height: 220px;
}

.service-image-stack {
    position: relative;
    width: 100%;
    height: 100%;
}

.service-image-top {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 70%;
    z-index: 2;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.service-image-bottom {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 70%;
    z-index: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    opacity: 0.9;
}

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

.service-card:hover .service-image-top img,
.service-card:hover .service-image-bottom img {
    transform: scale(1.05);
}

/* Стили для контента */
.service-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.service-content p {
    color: var(--dark);
    line-height: 1.7;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

/* Стили для блока "По запросу" */
.request-content {
    padding: 20px;
    background: var(--light);
    border-radius: 12px;
    border: 2px dashed var(--accent);
}

.request-note {
    font-style: italic;
    color: var(--secondary);
    margin-top: 15px;
    font-size: 1rem;
    font-weight: 500;
}

/* Адаптивность */
@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 30px;
    }
}

@media (max-width: 992px) {
    .desktop-nav {
        display: none;
    }
    
    .burger-menu {
        display: flex;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .map-placeholder {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form-section {
        padding: 40px 30px;
    }
    
    /* Адаптивность для блока "Наша команда" */
    .team-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .team-photo {
        min-height: 280px;
    }
    
    .team-photo img {
        max-height: 240px;
    }
    
    /* Адаптивность для завтраков */
    .advantage-row {
        flex-direction: column;
        gap: 30px;
    }
    
    .advantage-item {
        max-width: 600px;
        margin: 0 auto 30px;
    }
    
    .transfers-section {
        padding: 40px 30px;
    }
    
    /* Адаптивность для новой сетки */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .section-title h2 {
        font-size: 2rem;
    }
    
    .features-grid,
    .rooms-preview,
    .testimonials-grid,
    .values-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .booking-widget {
        margin: -40px auto 0;
        padding: 20px;
    }
    
    .hero {
        padding: 100px 0;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    /* Адаптивность для О нас */
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .timeline-item {
        flex-direction: column;
    }
    
    .timeline-year {
        margin-right: 0;
        margin-bottom: 1.5rem;
        align-self: flex-start;
    }
    
    .timeline-item::before {
        left: 25px;
    }
    
    /* АДАПТИВНОСТЬ ДЛЯ ФОТОГРАФИЙ ЗАВТРАКОВ */
    .advantage-item {
        flex-direction: column;
        text-align: center;
        padding: 25px;
        align-items: center;
        gap: 20px;
    }
    
    .advantage-image {
        width: 180px;
        height: 180px;
        margin: 0 auto 20px;
    }
    
    .advantage-content h3 {
        font-size: 1.4rem;
    }
    
    .advantage-content h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .advantage-content p {
        font-size: 1.05rem;
        text-align: center;
    }
    
    /* Адаптивность для трансфера */
    .transfers-section {
        padding: 30px 20px;
        margin: 50px 0;
    }
    
    .transfers-section h2 {
        font-size: 2rem;
    }
    
    .transfer-content h3 {
        font-size: 1.5rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .transfer-content p {
        font-size: 1.1rem;
    }
    
    /* Адаптивность для новой сетки услуг */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .service-card {
        padding: 25px;
    }
    
    .service-image-main {
        height: 180px;
    }
    
    .service-images.stacked {
        height: 200px;
    }
    
    .service-header h2 {
        font-size: 1.5rem;
    }
    
    .service-content h3 {
        font-size: 1.3rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .map-info {
        order: 2;
        padding: 30px 25px;
    }
    
    .map-frame {
        order: 1;
        min-height: 300px;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }
    
    .contact-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .social-contacts .social-links {
        justify-content: center;
    }
    
    /* Адаптивность для блока "Наша команда" */
    .team-section h2 {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .team-photo {
        min-height: 250px;
        padding: 15px;
    }
    
    .team-photo img {
        max-height: 220px;
    }
    
    .team-info {
        padding: 20px;
    }
    
    .team-info h3 {
        font-size: 1.2rem;
    }
    
    .team-info p {
        font-size: 0.9rem;
    }
    
    /* Адаптивность для Telegram формы */
    .telegram-direct-link a {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .book-btn, .btn-primary, .btn-secondary {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .feature-card,
    .testimonial-card,
    .value-card {
        padding: 30px 20px;
    }
    
    .contact-form-section {
        padding: 30px 20px;
    }
    
    .faq-item {
        padding: 20px;
    }
    
    /* Адаптивность для блока "Наша команда" */
    .team-photo {
        min-height: 220px;
    }
    
    .team-photo img {
        max-height: 180px;
    }
    
    .team-info {
        padding: 15px;
    }
    
    .team-info h3 {
        font-size: 1.1rem;
    }
    
    .team-position {
        font-size: 0.85rem;
    }
    
    /* АДАПТИВНОСТЬ ДЛЯ ФОТОГРАФИЙ ЗАВТРАКОВ */
    .advantage-item {
        padding: 20px 15px;
    }
    
    .advantage-image {
        width: 150px;
        height: 150px;
    }
    
    .advantage-content h3 {
        font-size: 1.2rem;
    }
    
    .advantage-content p {
        font-size: 1rem;
    }
    
    /* Адаптивность для трансфера */
    .transfers-section {
        padding: 25px 15px;
    }
    
    .transfers-section h2 {
        font-size: 1.7rem;
    }
    
    .transfer-content h3 {
        font-size: 1.3rem;
    }
    
    .transfer-content p {
        font-size: 1rem;
    }
    
    /* Адаптивность для новой сетки услуг */
    .service-card {
        padding: 20px;
    }
    
    .service-header h2 {
        font-size: 1.4rem;
    }
    
    .service-image-main {
        height: 160px;
    }
    
    .service-images.stacked {
        height: 180px;
    }
    
    .service-content h3 {
        font-size: 1.2rem;
    }
    
    .service-content p {
        font-size: 1rem;
    }
    
    .request-content {
        padding: 15px;
    }
    
    /* Адаптивность для Telegram формы */
    .telegram-info {
        font-size: 0.8rem;
    }
    
    .telegram-direct-link {
        margin-top: 20px;
        padding-top: 20px;
    }
}

/* Оптимизация загрузки изображений */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Ленивая загрузка */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* Плавная прокрутка */
html {
    scroll-behavior: smooth;
}

/* Улучшение производительности */
.feature-card,
.room-preview-card,
.testimonial-card,
.value-card,
.team-card {
    will-change: transform;
}

/* Оптимизация для медленных соединений */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}