
        /* Общие стили */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        body {
            color: #333;
            line-height: 1.6;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .btn {  
            display: inline-block;
            background: #c19a6b;
            color: white;
            padding: 12px 25px;
            text-decoration: none;
            border-radius: 4px;
            font-weight: bold;
            margin-top: 10px;
            transition: background 0.3s;
        }
        .btn:hover {
            background: #a07a52;
        }
        h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            text-align: center;
        }
		
		h3 {
            font-size: 2rem;
            margin-bottom: 20px;
            text-align: left;
        }
		
		h4 {
            font-size: 1.1rem;
			margin-top: 13px;
            margin-bottom: 13px;
            text-align: left;
        }
		
		h5 {
            font-size: 0.9rem;
			color: #c19a6b;
			margin-top: 13px;
            margin-bottom: 13px;
            text-align: center;
        }
		
		a {
		   color: #c19a6b;
		}

        /* Герой-слайдер (базовые стили) */
/* Герой-слайдер с центрированным контентом */
.hero-slider {
    position: relative;
    width: 100%;
    margin-top: 0;
    overflow: hidden;
    height: 80vh;
    min-height: 500px;
}

.hero-slider .swiper {
    width: 100%;
    height: 100%;
}

.hero-slider .swiper-slide {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-content {
    position: absolute;
    text-align: center;
    color: white;
    z-index: 10;
    width: 90%;
    max-width: 800px;
    padding: 30px;
    background-color: rgba(193, 154, 107, 0.7);
    border-radius: 8px;
    backdrop-filter: blur(4px);
    margin: 0 auto; /* Добавлено для гарантированного центрирования */
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    line-height: 1.5;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.hero-content .btn {
    display: inline-block;
    padding: 12px 30px;
    background: #c19a6b;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

/* Адаптивность */
@media (max-width: 768px) {
    .hero-slider {
        height: 60vh;
        min-height: 400px;
    }
    
    .hero-content {
        padding: 20px;
        width: 85%;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
}
 	
        /* Блок с иконками */
        .description {
            padding: 80px 0;
            background: #f9f9f9;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        .stat-item {
            text-align: center;
            padding: 20px;
            background: white;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        .stat-icon {
            font-size: 2.5rem;
            color: #c19a6b;
            margin-bottom: 15px;
        }

        /* Табы */
        .tabs-section {
            padding: 80px 0;
        }
        .tabs-header {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 40px;
            gap: 10px;
        }
        .tab-btn {
            padding: 12px 25px;
            background: #f1f1f1;
            border: none;
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.3s;
        }
        .tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.tab-btn.active {
    background: #c19a6b;
    color: white;
}
		/* Добавьте этот стиль для всех табов */
       .tab-block {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
            margin-bottom: 60px;
       }

        /* Блоки внутри табов (2 колонки) */
        .tab-block__text {
            padding: 20px;
        }
        .tab-block__stats {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin: 20px 0;
        }
        .tab-block__stat {
            background: #f5f5f5;
            padding: 12px 15px;
            border-radius: 6px;
            min-width: 120px;
        }
        .tab-block__stat i {
            color: #c19a6b;
            margin-right: 8px;
        }

        /* Слайдеры в табах */
		.tab-block__slider-bk {
           padding: 20px;            
        }
		
        .tab-block__slider {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .tab-block__slides {
            display: flex;
            transition: transform 0.5s ease;
        }
        .tab-block__slide {
            min-width: 100%;
            position: relative;
        }
        .tab-block__slide img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            display: block;
        }
        .tab-block__nav {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            transform: translateY(-50%);
            padding: 0 15px;
            box-sizing: border-box;
        }
        .tab-block__prev,
        .tab-block__next {
            background: rgba(193,154,107,0.5);
            color: white;
            border: none;
            padding: 8px 12px;
            cursor: pointer;
            z-index: 10;
            border-radius: 50%;
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
        }
        .tab-block__dots {
            display: flex;
            justify-content: center;
            padding: 15px 0;
        }
        .tab-block__dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #ccc;
            margin: 0 5px;
            cursor: pointer;
            transition: background 0.3s;
        }
        .tab-block__dot.active {
            background: #c19a6b;
        }
        .tab-block__caption {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            background: rgba(193,154,107,0.7);
            color: white;
            padding: 12px;
            text-align: center;
            font-size: 14px;
        }

        /* Маршруты */
        .routes-section {
            padding: 80px 0;
            background: #f9f9f9;
        }
        .route-item {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-bottom: 60px;
            align-items: center;
        }
        .route-info h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
        }
        .route-date {
            color: #c19a6b;
            font-weight: bold;
            margin-bottom: 10px;
        }
        .route-slider {
            height: 300px;
            position: relative;
            overflow: hidden;
            border-radius: 8px;
        }
        .route-slider img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            display: block;
        }
		.route-route {
            font-weight: bold;
            margin-bottom: 10px;			
        }
		.route-price {
		    margin-top: 10px;
			margin-bottom: -2px;
		}
		.route-ship {
		    margin-bottom: 10px;
			font-size: 0.8rem;
		}
		

        /* Подвал */
        footer {
            background: #222;
            color: white;
            text-align: center;
            padding: 30px 0;
        }

        /* Адаптивность */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }
            .tab-inner, .route-item {
                grid-template-columns: 1fr;
            }
            .route-slider, .tab-slider__slide img {
                height: 250px;
            }
        }
/* Закругленная граница */
hr.rounded {
  border-top: 8px solid #c19a6b;
  border-radius: 5px;
  margin-top:-30px;
  margin-bottom: 30px;
}
div.stat {
  padding: .6rem 0 .6rem;
  margin: 0px;
  font-size: 2rem;
  font-weight: 700;
}
div.mini-menu {
  padding: .6rem 0 .6rem;
  margin: 0px;
  font-size: 0.9rem;
  font-weight: 900;
}



	.site-header {
    position: absolute;
    left: 0px;
    right: 0px;
    z-index: 10;
    background-color: #fff;
}
.head {
    position: relative;
    z-index: 20;
}
.wrapper {
    max-width: 1400px;
    padding: 0 20px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.head_row {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex
;
    -ms-align-items: center;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex
;
    -ms-align-items: center;
    align-items: center;
}
.phone_block {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex
;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: right;
}
.tel {
    color: #d90000;
}
.zakaz {
    font-style: italic;
    font-size: 13px;
    text-decoration: underline;
}
footer {
    background: #000000;
    position: relative;
    padding-top: 80px;
    color: #fff;
    display: block;
}
.footer a {
    color: #fff;
    display: block;
}
.foot_row {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex
;
    justify-content: space-between;
    -ms-align-items: flex-start;
    align-items: flex-start;
}
.foot_list ul.menu {
    list-style-type: none;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.foot_list li {
    width: 45%;
    font-weight: 400;
    font-size: 15px;
    margin-bottom: 15px;
}

.foot_col1 {
    width: 26%;
    margin-right: 4%;
}
.logo-footer {
    width: 80%;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex
;
    -ms-align-items: center;
    align-items: center;
}
.foot_ops {
    margin-top: 25px;
    font-size: 15px;
    font-weight: 400;
}
.foot_col2 {
    width: 25%;
}
.foot_col3 {
    width: 7%;
}
.foot_col4 {
    width: 30%;
}
.foot_zag {
    font-weight: 700;
    font-size: 21px;
    text-transform: uppercase;
    width: 100%;
    margin-bottom: 25px;
}
.foot_list {
    list-style-type: none;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex
;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.foot_list ul.menu {
    list-style-type: none;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex
;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.foot_list li {
    width: 45%;
    font-weight: 400;
    font-size: 15px;
    margin-bottom: 15px;
}
.foot_tel {
    display: table;
    font-weight: 700;
    font-size: 24px;
    padding: 3px 0 3px 40px;
    margin-bottom: 20px;
    background: url(../img/phone.svg) no-repeat;
    background-position: left center;
    -webkit-background-size: 30px auto;
    background-size: 25px auto;
}
.foot_mail {
    display: table;
    font-weight: 600;
    font-size: 16px;
    padding: 3px 0 3px 40px;
    margin-bottom: 20px;
    background: url(../img/mail.svg) no-repeat;
    background-position: left center;
    -webkit-background-size: 30px auto;
    background-size: 25px auto;
}
.foot_adr {
    display: table;
    font-size: 14px;
    padding: 3px 0 3px 40px;
    margin-bottom: 20px;
    background: url(../img/adr.svg) no-repeat;
    background-position: left center;
    -webkit-background-size: 30px auto;
    background-size: 25px auto;
}
.soc_row {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex
;
    -ms-align-items: center;
    align-items: center;
}
.foot_soc_ico {
    margin: 15px;
    width: 22px;
}
.copy_line {
	width: 100%;
    border-top: 1px solid #fff;
    padding-top: 15px;
    padding-bottom: 15px;
    position: relative;
}
p.copy {
	display: inline;
   	white-space: nowrap;
    font-size: 12px;
}
.services-wrap .cpt-alm-item {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex
;
    -ms-align-items: stretch;
    align-items: stretch;
    justify-content: space-between;
    margin-bottom: 80px;
}
.service_info {
    width: 47%;
}
.service_info p {
    font-size: 14px;
    margin-bottom: 30px;
}
.butt_more {
    border-color: #d90000;
    display: table;
    padding: 20px 60px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 15px;
    position: relative;
    border-width: 1px;
    border-style: solid;
}
 .service-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
  }
  
  .service-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
  }
  
  .service_info {
    flex: 1 1 400px;
  }
  
  .service_imgs {
    flex: 1 1 400px;
    display: flex;
    gap: 15px;
  }
  
  .serv_col {
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex: 1;
  }
  
  .serv_img_small, .serv_img_big {
    background-size: cover;
    background-position: center;
    border-radius: 8px;
  }
  
  .serv_img_small {
    height: 200px;
  }
  
  .serv_img_big {
    flex: 1;
    min-height: 415px;
  }
  
 .upbtn {
			z-index: 9999;
			width: 50px;
			height: 50px;
			color: #FFF;
			position: fixed;
			bottom: 20px;
			right: 20px;
			cursor: pointer;
			border:3px solid #c2aa8d;
			border-radius:50%;
			transform: scale(0);
			transition: all .7s ease-in-out;
			background-position: center center;
			background-repeat: no-repeat;
			background-color: #c19a6b;
			background-image: url(data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTkuMS4wLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iQ2FwYV8xIiB4PSIwcHgiIHk9IjBweCIgdmlld0JveD0iMCAwIDQ5MS44NTggNDkxLjg1OCIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgNDkxLjg1OCA0OTEuODU4OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgd2lkdGg9IjMycHgiIGhlaWdodD0iMzJweCI+CjxnPgoJPGc+CgkJPHBhdGggZD0iTTQ5MS44NTgsNDQyLjQ2MWMwLDEzLjkzMS0xMS4yOTMsMjUuMjI0LTI1LjIyNCwyNS4yMjRMMjQ1LjkzLDM3My4wOTdMMjUuMjI0LDQ2Ny42ODYgICAgQzExLjI5Miw0NjcuNjg2LDAsNDU2LjM5MiwwLDQ0Mi40NjFMMjI3LjAxMSwzMi41OGMwLDAsMTguOTE4LTE4LjkxOCwzNy44MzQsMEMyODMuNzY0LDUxLjQ5OSw0OTEuODU4LDQ0Mi40NjEsNDkxLjg1OCw0NDIuNDYxeiIgZmlsbD0iI0ZGRkZGRiIvPgoJPC9nPgoJPGc+Cgk8L2c+Cgk8Zz4KCTwvZz4KCTxnPgoJPC9nPgoJPGc+Cgk8L2c+Cgk8Zz4KCTwvZz4KCTxnPgoJPC9nPgoJPGc+Cgk8L2c+Cgk8Zz4KCTwvZz4KCTxnPgoJPC9nPgoJPGc+Cgk8L2c+Cgk8Zz4KCTwvZz4KCTxnPgoJPC9nPgoJPGc+Cgk8L2c+Cgk8Zz4KCTwvZz4KCTxnPgoJPC9nPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+Cjwvc3ZnPgo=)
			}
			.upbtn:hover {
			transform: scale(1.2)!important;
			}			
			
			@media (max-width: 1140px) {
			.navbar-collapse.collapse {
			display: none!important;
			}
			#navigation .navbar,
			#navigation .navbar-header {
			height: 80px!important;
			}
			#navigation .navbar-brand {
			margin-top: 14px!important;
			}
			}
.route-slider {
    width: 100%;
    height: 300px;
}
.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* Стили для секции с двумя колонками */
.two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 10px;
	margin-bottom:10px;
}

.column {
    padding: 15px;
    background: rgba(255,255,255,0.8);
    border-radius: 8px;
}

.column h4 {
    color: #c19a6b;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

/* Адаптивность */
@media (max-width: 768px) {
    .two-columns {
        grid-template-columns: 1fr;
    }
    
    .column {
        margin-bottom: 20px;
		padding-bottom: 20px;
    }
}

/* Иконки для пунктов */
.tab-block__stat i {
    color: #c19a6b;
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.tab-block__stat {
    margin-bottom: 12px;
    padding-left: 5px;
}

.agent-text {
		    color: red; 
			font-weight: bold; 
			font-size: 1.5rpm; 
			text-align: center; 
			margin-top: 5px;
		}
.admin-link {
		    margin-right: 20px; 
			color: #0066cc; 
			text-decoration: none; 
			font-weight: bold; 
			font-size: 0.8rem; 
		}
.export-section
        {
		    margin-bottom: 10px; 
		}
		
 .faq-block {
        margin-top: 20px;
    }
    
    .faq-item {
        border: 1px solid #ddd;
        border-radius: 5px;
        margin-bottom: 15px;
        overflow: hidden;
    }
    
    .faq-question {
        padding: 15px 20px;
        background-color: #f5f5f5;
		color: #c19a6b;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-weight: bold;
    }
    
    .faq-question:hover {
        background-color: #eee;
    }
    
    .faq-toggle {
        font-size: 20px;
    }
    
    .faq-answer {
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out, padding 0.3s ease;
    }
    
    .faq-item.active .faq-answer {
        padding: 15px 20px;
        max-height: 500px;
    }
    
    .faq-item.active .faq-toggle {
        transform: rotate(45deg);
    }

/* Компактные карточки круизов */
.compact-cruises-section {
    padding: 40px 0;
    background: #f9f9f9;
}

.cruises-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.cruise-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.cruise-card:hover {
    transform: translateY(-5px);
}

.cruise-image {
    height: 160px;
    overflow: hidden;
}

.cruise-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.cruise-card:hover .cruise-image img {
    transform: scale(1.05);
}

.cruise-details {
    padding: 15px;
}

.cruise-details h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #333;
}

.cruise-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 12px;
}

.cruise-meta i {
    color: #c19a6b;
    margin-right: 5px;
    width: 16px;
}

.cruise-price {
    font-weight: bold;
    color: #c19a6b;
    font-size: 1.1rem;
    margin: 10px 0;
}

.cruise-btn {
    display: block;
    text-align: center;
    background: #c19a6b;
    color: white;
    padding: 8px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background 0.3s;
}

.cruise-btn:hover {
    background: #a07a52;
}

/* Адаптивность */
@media (max-width: 768px) {
    .cruises-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }
}

/* 4-колоночная сетка круизов */
.cruises-grid-4col {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.cruise-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.cruise-image {
    height: 150px;
    overflow: hidden;
}

.cruise-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.cruise-details {
    padding: 15px;
}

.cruise-details h3 {
    font-size: 1rem;
    margin-bottom: 8px;
    line-height: 1.3;
}

.cruise-meta {
    font-size: 0.8rem;
    color: #666;
}

.cruise-meta span {
    display: block;
    margin-bottom: 5px;
}

.cruise-meta i {
    color: #c19a6b;
    margin-right: 5px;
    width: 15px;
}

.cruise-price {
    font-weight: bold;
    color: #c19a6b;
    margin: 10px 0;
    font-size: 1rem;
}

.cruise-btn {
    display: block;
    text-align: center;
    background: #c19a6b;
    color: white;
    padding: 6px;
    border-radius: 4px;
    font-size: 0.8rem;
    text-decoration: none;
}

/* Адаптивность */
@media (max-width: 1200px) {
    .cruises-grid-4col {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .cruises-grid-4col {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .cruises-grid-4col {
        grid-template-columns: 1fr;
    }
}

/* Карусель круизов */
.cruises-carousel-section {
    padding: 40px 0;
    background: #f9f9f9;
}

.cruises-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

/* Стили карточек (аналогично предыдущим) */
.cruise-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

/* ... остальные стили карточек как в предыдущем решении ... */


/* Адаптивность */
@media (max-width: 1200px) {
    .cruises-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .cruises-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .cruises-grid {
        grid-template-columns: 1fr;
    }
    
    .pagination {
        flex-wrap: wrap;
    }
}

/* Добавьте эти стили в ваш CSS */

/* Состояние "нет круизов" */
.no-cruises {
    text-align: center;
    padding: 40px 0;
}

.no-cruises i {
    font-size: 3rem;
    color: #c19a6b;
    margin-bottom: 20px;
}

.no-cruises p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* Улучшенная пагинация */
.pagination-wrapper {
    margin-top: 40px;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.page-numbers {
    display: flex;
    gap: 5px;
}

.page-link {
    padding: 8px 15px;
    border-radius: 4px;
    background: #f0f0f0;
    color: #333;
    text-decoration: none;
    transition: all 0.3s;
}

.page-link:hover, 
.page-link.active {
    background: #c19a6b;
    color: white;
}

.page-link.prev, 
.page-link.next {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Адаптивность пагинации */
@media (max-width: 600px) {
    .page-link:not(.prev):not(.next) {
        padding: 8px 12px;
    }
}

/* Вертикальная листалка */
.ajax-pagination {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
}

.ajax-prev, .ajax-next {
    background: #c19a6b;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ajax-prev:hover, .ajax-next:hover {
    background: #a07a52;
    transform: scale(1.1);
}

.ajax-prev:disabled, .ajax-next:disabled {
    background: #cccccc;
    cursor: not-allowed;
    transform: none;
}

.page-indicator {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
}

.current-page {
    color: #c19a6b;
}

/* Анимация загрузки */
.cruises-container.loading .cruises-grid {
    opacity: 0.5;
    transition: opacity 0.3s;
}

.cruises-container.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 3px solid #f3f3f3;
    border-top: 3px solid #c19a6b;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Стили для страницы корабля */
.ship-page {
    padding: 40px 0;
	max-width: 1200px;
}

.description-gallery {
    margin-bottom: 60px;
}

.ship-description {
    line-height: 1.7;
    margin-top: 20px;
}

.ship-characteristics {
    margin: 60px 0;
}

.ship-cruises {
    margin-top: 60px;
}
/* Стили для галереи (мозаика с раскрытием) */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.gallery-item {
    position: relative;
    height: 200px;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Модальное окно для галереи */
.gallery-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.gallery-modal img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    cursor: pointer;
}

/* Стили для сайдбара */
.ship-page .row {
    display: flex;
    flex-wrap: wrap;
}

.ship-page main {
    flex: 0 0 72%;
    max-width: 72%;
    padding-right: 30px;
}

.ship-page aside {
    flex: 0 0 24%;
    max-width: 24%;
    position: sticky;
    top: 20px;
    height: fit-content;
}

/* Адаптивность */
@media (max-width: 992px) {
    .ship-page main {
        flex: 0 0 100%;
        max-width: 100%;
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .ship-page aside {
        flex: 0 0 100%;
        max-width: 100%;
        position: static;
    }
    
    .route-item {
        grid-template-columns: 1fr;
    }
    
    .route-slider {
        order: -1;
        height: 250px;
    }
}
/* Заголовки секций */
.section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #c19a6b;
}

/* Кнопка бронирования */
.booking-btn {
    display: inline-block;
    background: #c19a6b;
    color: white;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    margin-top: 20px;
}

.booking-btn:hover {
    background: #a07a52;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
/* Стили только для страницы корабля (index.php) */
.hero {
            height: 80vh;
            height: 600px;
            display: flex;
            align-items: center;
            position: relative;
            color: white;
	    }

.hero-cont {
    position: absolute;
    color: white;
    z-index: 10;
    width:100vh;
    max-width: 400px;
    padding-left:-20px;
    text-align: center;
	background-color: rgba(193, 154, 107, 0.7);
    border-radius: 8px;
    margin: 0 auto;
}

.hero-cont h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.hero-cont p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    line-height: 1.5;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Компактные карточки круизов (только для страницы корабля) */
.ship-page .route-item {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
    padding: 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.ship-page .route-info {
    padding: 0;
}

.ship-page .route-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.ship-page .route-date,
.ship-page .route-ship,
.ship-page .route-route {
    margin-bottom: 5px;
    font-size: 0.85rem;
    line-height: 1.4;
}

.ship-page .route-date i,
.ship-page .route-ship i,
.ship-page .route-route i {
    width: 16px;
    text-align: center;
    margin-right: 5px;
}

.ship-page .route-slider {
    height: 200px;
    border-radius: 6px;
    overflow: hidden;
}

.ship-page .tab-block__stats {
    margin-top: 12px;
}

.ship-page .tab-block__stat {
    font-size: 0.85rem;
    margin-bottom: 6px;
    padding: 6px 8px;
    background: #f8f8f8;
    border-radius: 4px;
}

.ship-page .btn {
    padding: 8px 15px;
    font-size: 0.9rem;
    margin-top: 8px;
}

.ship-page hr.rounded {
    margin-top: 15px;
    margin-bottom: 15px;
}

/* Адаптивность */
@media (max-width: 768px) {
    .ship-page .route-item {
        grid-template-columns: 1fr;
    }
    
    .ship-page .route-slider {
        height: 180px;
        order: -1;
        margin-bottom: 15px;
    }
    
    .ship-page .route-info h3 {
        font-size: 1.2rem;
    }
}