* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
@font-face {
	font-family: 'Segoeuib';
	src: url(/static/fonts/segoeui/segoeuib.ttf);
}
.container {
    max-width: 1024px;
    margin-left: auto;
    margin-right: auto;
}
a {
    text-decoration: none;
    color: #6A6A6A;
    -moz-transition: .3s;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}
a:hover {
    color: #02B056;
}
.btn_mal {
    display: inline-block;
    text-transform: uppercase;
    background-color:#BB0D30;
    color: #fff;
    padding: 10px 30px;
    border-radius: 30px;
    transition: .3s;
    cursor: pointer;
}
.btn_mal:hover {
    color: #fff;
    box-shadow: 0 0 6px rgba(187, 13, 48, .8);
}
.btn_mal:focus {
    transform: scale(.9);
}
@font-face {
    font-family: 'Segoe UI Reg';
    src: url("../fonts/segoeui/segoeui.ttf");
}
@font-face {
    font-family: 'Segoe UI Bold';
    src: url("../fonts/segoeui/segoeuib.ttf");
}
@font-face {
    font-family: 'Segoe UI Italic';
    src: url("../fonts/segoeui/segoeuii.ttf");
}
@font-face {
    font-family: 'Segoe UI Italic Bold';
    src: url("../fonts/segoeui/segoeuiz.ttf");
}

body {
    font-family: 'Segoe UI Reg';
    background-color: #F5F5F5;
}
header {
    z-index: 999;
    position: sticky;
    top: 0;
    background-color: #fff;
}
.logo {
    margin: auto 0;
    height: 80%;
}
.logo img {
    height: 100%;
}
.menu {
    margin: auto 0;
}
.menu_list {
    display: flex;
    list-style-type: none;
    font-size: 18px;
    text-transform: uppercase;
}
.list_item {
    margin-left: 30px;
}
.link-active::before {
    position: relative;
    display: block;
    content: "";
    height: 1px;
    width: 100%;
    top: 7px;
    background-color: #02B056;
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    opacity: 0;
}
.link-active::after {
    position: relative;
    display: block;
    content: "";
    height:13px;
    width:13px;
    margin-left: auto;
    margin-right: auto;
    background-color: #02B056;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    opacity: 0;
}

.list-link:hover ~ .link-active::before,
.list-link:focus ~ .link-active::before {
    opacity: 1;
}
.list-link:hover ~ .link-active::after {
    opacity: 1;
    -webkit-transform: rotate(405deg);
    -moz-transform: rotate(405deg);
    -o-transform: rotate(405deg);
    transform: rotate(405deg);
}
/* Header end */
.d-flex {
    display: flex !important;
}
.time_input {
    width: 50px;
    height: 50px;
    border: 0;
    text-align: center;
}
.time_savebtn {
    border: 1px solid #02B056;
    border-radius: 12px;
    background-color: transparent;
    padding: 12px 18px;
    cursor: pointer;
    color: #02B056;
    transition: .3s;
    text-transform: uppercase;
}
.time_savebtn:hover {
    color: #fff;
    background-color: #02B056;
}

/* Payment form start */
.payment {
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    z-index: 1001;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, .3);
    display: none;
    justify-content: center;
    align-items: center;
    animation: form_show .5s;
}
@keyframes form_show {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
.service_title_name {
    color: #fff;
    font-size: 20px;
}
.title_service {
    color: #F5F5F5;
    font-size: 16px;
}
.price_service {
    color: #F5F5F5;
    font-size: 18px;
}
.price_service:last-of-type {
    margin-bottom: 12px;
}

.payment_form {
    width: 400px;
    position: relative;
    margin-top: -150px;
    background-color: #02B056;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 0 6px rgba(0, 0, 0, .3);
}
.payment_form_title {
    font-size: 26px;
    text-align: center;
    margin-bottom: 12px;
    color: #fff;
    font-family: 'Segoe UI Italic Bold';
}
.payment_form_input {
    width: 100%;
    margin-bottom: 12px;
    font-size: 18px;
    padding: 8px 12px;
    border-radius: 18px;
    border: 0;
    font-family: 'Segoe UI Italic';
}
.message-error {
    display: none;
    border-radius: 12px;
    color: #fff;
    background-color: #BB0D30;
    margin-top: 4px;
    padding: 12px;
    margin-bottom: 14px;
}
.country_code {
    position: absolute;
    color: #fff;
    font-size: 18px;
    font-family: 'Segoe UI Italic Bold';

}
.payment_form_btn_buy {
    border: 0;
    font-family: 'Segoe UI Reg';
}
#close-menu {
    display: none
}
#close_form {
    position: absolute;
    top: 8px;
    right: 8px;
}
/* Payment form end */


/* Footer start */
footer {
    background-color: #282B33;
}
.footer-line-up {
    background-color: #02B056;
    width: 100%;
    height: 10px;
}
.footer {
    padding: 20px 20px;
    display: flex;
    justify-content: space-between;
    color: #fff;
}
.footer-block {
    flex-grow: 1;
    display: flex;
    align-items: center;
}
.footer_blocks_line {
    width: 1px;
    height: 60%;
    background-color: #3F434B;
}
.footer_map {
    width: 270px;
    height: 200px;
    background-color: #555555;
}
.footer_block_content {
    margin-left: 20px;
}
.footer_heading {
    font-size: 26px;
    text-transform: uppercase;
}
.footer_block_list {
    list-style-type: none;
    font-size: 16px;
    color: #EEEEEE;
}
.footer_link {
    color: #EEEEEE;
}
.footer_link:hover {
    border-bottom: 1px solid #02B056;
}
.footer-line-down {
    background-color: #3F434B;
    height: 1px;
    width: 100%;
}
.copyright {
    color: #EEEEEE;
    padding-top: 15px;
    padding-bottom: 15px;
    text-align: center;
    font-size: 15px;
}

/* Footer end */

.heading {
    font-family: 'Segoe UI Bold';
    font-size: 30px;
    background-color: #fff;
    display: inline-block;
    padding: 25px 40px;
    margin-bottom: 40px;
    border-radius: 12px;
    box-shadow: 0 0 6px rgba(0, 0, 0, .3);
}

/* Services */
.services {
    max-width: 1150px;
    margin: 100px auto;
}
.services-block {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.service-block {
    position: relative;
    margin: 12px;
    background-color: #fff;
    width: 330px;
    /* height: 400px; */
    border-radius: 12px;
    box-shadow: 0 0 6px rgba(0, 0, 0, .3);
}
.service_content_block {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
}
.service-col-block-1 {
    position: absolute;
    width: 100%;
    background-color: #BB0D30;
    height: 80px;
    top: 10px;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}
.service-col-block-2 {
    position: absolute;
    background-color: #02B056;
    width: 100%;
    height: 80px;
    top: 20px;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.service_title {
    color: #fff;
    font-size: 18px;
}
.service_price_info {
    margin-top: 125px;
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    color: #02B056;
}
.tgmark {
    font-size: 10px;
    margin-top:10px;
}
.service_price {
    font-size: 34px;
    margin-bottom: -8px;
}
.service_time {
    font-size: 20px;
    text-align: right;
}
.service_description {
    color:#671727;
    font-size: 16px;
}
.service_btn_buy {
    margin-top: 30px;
    margin-bottom: 30px;
    text-align: center;
}
/* Services end */

/* Time content start */
.time_content {
    margin: 80px auto;
    background-color: #fff;
    border-radius: 12px;
    padding-top: 18px;
    padding-bottom: 18px;
    box-shadow: 0 0 6px rgba(0, 0, 0, .3);
}
.time_heading {
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    font-size: 30px;
    margin-bottom: 50px;
}
.time_blocks {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.time_block {
    flex-basis: 400px;
    background-color:#CBFFFA;
    box-shadow: 0 0 6px rgba(0, 0, 0, .3);
    border-radius: 12px;
    padding: 33px 15px;
    margin: 0 32px;
    margin-bottom: 32px;
}
.time_block_heading {
    font-size: 24px;
    text-align: center;
    margin-bottom: 15px;
}
.time_block_table {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
.time_thead th {
    padding: 8px 16px;    
    font-size: 20px;
}
.time_tbody {
    font-size: 20px;
}
/* Time content end */

/* About start */
.about_picture {
    background: url(../img/aboutpicture.jpg) no-repeat;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    min-height: 720px;
}
.about_picture_heading {
    color: #fff;
    font-size: 44px;
    max-width: 750px;
    text-align: center;
    margin-top: 20px;
    text-shadow: 0 0 12px rgba(0, 0, 0, .5);
    font-family: 'Segoe UI Italic Bold';
}
.about {
    margin-top: 40px;
    margin-bottom: 40px;
}
.about_content {
    background-color: #fff;
    box-shadow: 0 0 6px rgba(0, 0, 0, .3);
    border-radius: 12px;
    padding: 44px 40px;
}
.about_content_heading {
    margin-bottom: 34px;
    font-family: 'Segoe UI Bold';
    text-transform: uppercase;
    color: #000;
    font-size: 28px;
    text-align: center;
}
.about_content_text {
    font-size: 20px;
    color: #555555;
    line-height: 1.5;
    text-align: justify;
}
/* Pictures */
.about_content_pictures {
    margin-top: 18px;
    padding: 25px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 0 6px rgba(0, 0, 0, .3);
}
.small-pictures {
    display: flex;
    justify-content: space-between;
}
.small-pictures img {
    flex-grow: 1;
}
.small-pictures img:first-child {
    margin-right: 20px;
}
.large-pictures img {
    margin-top: 20px;
    width: 100%;
}
/* About end */

/* Alert start */
.alert {
    position: fixed;
    z-index: 1001;
    background-color: #CBFFFA;
    width: 400px;
    height: 550px;
    border-radius: 12px;
    margin: auto;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.closer-alert {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: 1s;
    -o-transition: 1s;
    -moz-transition: 1s;
    -webkit-transition: 1s;
}
.closer-alert:hover {
    transform: rotate(360deg);
}
.alert-heading {
    margin-bottom: 12px;
}
#saveFile {
    margin-top: 10px;
    border: 2px solid #02B056;
    padding: 8px 12px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: bold;
    color: #02B056;
    transition: .3s;
    -o-transition: .3s;
    -moz-transition: .3s;
    -webkit-transition: .3s;
}
#saveFile:hover {
    background-color: #02B056;
    color: #fff;
}
#saveFile:focus,
#saveFile:active {
    transform: scale(0.96);
}
/* Alert end */
.d-none {
    display: none;
}

.news {
    margin: 60px auto;
    padding: 0;
}
.news_blocks {
    margin-bottom: 60px;
}
.news-title {
    text-align: center;
    margin-bottom: 25px;
}
.news-text {
    font-size: 20px;
    line-height: 30px;
    text-align: justify;
    color: #0D0D0D;
    margin-bottom: 37px;
    margin-top: 26px;
}
.simple-block {
    padding: 23px 26px;
}
.simple-block_details {
    background: #ffffff;
    -webkit-box-shadow: 0px 2px 4px rgba(100,100,100,0.5);
    -moz-box-shadow: 0px 2px 4px rgba(100,100,100,0.5);
    -o-box-shadow: 0px 2px 4px rgba(100,100,100,0.5);
    box-shadow: 0px 2px 4px rgba(100,100,100,0.5);
    border-radius: 12px;
}
.simple-block_heading {
    color: #686868;
    font-size: 30px;
	font-family: 'Segoeuib';
}


.simple-block_button {
    border-radius: 12px;
    background: #0072ff;
    font-size: 17px;
    font-weight: 700;
    line-height: 20px;
    text-align: center;
    letter-spacing: -0.3px;
    color: #fff;
    padding: 10px 35px;
    display: block;
    width: 107px;
    margin-right: 0;
    margin-left: auto;
}
.simple-block_button:hover {
    color: #fff;
    -webkit-box-shadow: 3px 3px 3px rgba(100,100,100,0.5);
    -moz-box-shadow: 3px 3px 3px rgba(100,100,100,0.5);
    -o-box-shadow: 3px 3px 3px rgba(100,100,100,0.5);
    box-shadow: 3px 3px 3px rgba(100,100,100,0.5);
}

.news-image {
    width: 100%;
}

/* News Slider Start */
.wrapper {
    height: 400px;
    margin-top: 10px;
    margin-bottom: 30px;
    position: relative;
}

.slider {
	background-color: #ddd;
	height: inherit;
	overflow: hidden;
	position: relative;
}
.wrapper > input {
	display: none;
}

.slides {
	height: inherit;
	position: absolute;
	width: inherit;
}

.wrapper .controls {
	left: 50%;
	margin-left: -98px;
	position: absolute;
}

.wrapper label {
	cursor: pointer;
	display: inline-block;
	height: 8px;
	margin: 25px 12px 0 16px;
	position: relative;
	width: 8px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-o-border-radius: 50%;
	border-radius: 50%;
}

.wrapper label:after {
	border: 2px solid #0047e0;
	content: " ";
	display: block;
	height: 8px;
	left: -4px;
	position: absolute;
	top: -4px;
	width: 8px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-o-border-radius: 50%;
	border-radius: 50%;
}

.wrapper label {
	cursor: pointer;
	display: inline-block;
	height: 4px;
	margin: 15px 2px 0 16px;
	position: relative;
	width: 4px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-o-border-radius: 50%;
	border-radius: 50%;
	-webkit-transition: background ease-in-out .5s;
	-moz-transition: background ease-in-out .5s;
	-o-transition: background ease-in-out .5s;
	transition: background ease-in-out .5s;
}

.wrapper label:hover, 
#slide1:checked ~ .controls label:nth-of-type(1),
#slide2:checked ~ .controls label:nth-of-type(2),
#slide3:checked ~ .controls label:nth-of-type(3),
#slide4:checked ~ .controls label:nth-of-type(4),
#slide5:checked ~ .controls label:nth-of-type(5) {
	background: #0047e0;
}

.slides {
	height: inherit;
	opacity: 0;
	position: absolute;
	width: inherit;
	z-index: 0;
	-webkit-transform: scale(1.5);
	-moz-transform: scale(1.5);
	-o-transform: scale(1.5);
	transform: scale(1.5);
	-webkit-transition: transform ease-in-out .5s, opacity ease-in-out .5s;
	-moz-transition: transform ease-in-out .5s, opacity ease-in-out .5s;
	-o-transition: transform ease-in-out .5s, opacity ease-in-out .5s;
	transition: transform ease-in-out .5s, opacity ease-in-out .5s;
}

#slide1:checked ~ .slider > .slide1,
#slide2:checked ~ .slider > .slide2,
#slide3:checked ~ .slider > .slide3,
#slide4:checked ~ .slider > .slide4,
#slide5:checked ~ .slider > .slide5 {
	opacity: 1;
	z-index: 1;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
}

/* News Slider End */

.feedback-form {
    max-width: 500px;
    margin: 110px auto;
    background-color: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.feedback-form h2 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
}

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

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: bold;
    color: #444;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #007bff;
    outline: none;
}

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

.submit-btn {
    width: 100%;
    background-color: #007bff;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #0056b3;
}

/* Герой-блок с изображением */
.ice-about-hero {
    position: relative;
    height: 800px;
    background-image: url('/static/img/about/lpic1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 60px;
}

.ice-about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 153, 204, 0.3), rgba(0, 50, 80, 0.7));
    z-index: 1;
}

.ice-about-hero-title {
    position: relative;
    z-index: 2;
    color: white;
    font-size: 42px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    max-width: 900px;
    padding: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.3;
    border-left: 5px solid #66ccff;
    border-right: 5px solid #66ccff;
    animation: iceTitleGlow 2s infinite alternate;
}

@keyframes iceTitleGlow {
    from {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }
    to {
        text-shadow: 0 0 20px rgba(102, 204, 255, 0.8), 2px 2px 4px rgba(0, 0, 0, 0.3);
    }
}

/* Контейнер для контента */
.ice-about-container {
    max-width: 1400px;
    margin: 0 auto 80px;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Блок с текстом */
.ice-about-content {
    background: white;
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 153, 204, 0.1);
    position: relative;
    overflow: hidden;
}

.ice-about-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #0099cc, #66ccff, #0099cc);
}

.ice-about-heading {
    font-size: 32px;
    font-weight: 700;
    color: #1e2b3c;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.ice-about-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: #0099cc;
    border-radius: 2px;
}

.ice-about-text {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5a6e;
    text-align: justify;
}

.ice-about-text br {
    margin-bottom: 15px;
}

/* Галерея */
.ice-about-gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ice-gallery-small {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.ice-gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
    border: 3px solid transparent;
}

.ice-gallery-img:hover {
    transform: scale(1.02);
    border-color: #66ccff;
    box-shadow: 0 20px 40px rgba(0, 153, 204, 0.3);
}

.ice-gallery-img-small {
    height: 200px;
}

.ice-gallery-img-large {
    height: 420px;
}

/* Адаптация для планшетов */
@media (max-width: 992px) {
    .ice-about-hero {
        height: 300px;
    }
    
    .ice-about-hero-title {
        font-size: 32px;
    }
    
    .ice-about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .ice-about-content {
        padding: 30px;
    }
    
    .ice-gallery-img-large {
        height: 350px;
    }
}

/* Адаптация для мобилок */
@media (max-width: 576px) {
    .ice-about-hero {
        height: 500px;
        margin-bottom: 40px;
    }
    
    .ice-about-hero-title {
        font-size: 24px;
        letter-spacing: 2px;
        padding: 15px;
    }
    
    .ice-about-container {
        padding: 0 20px;
    }
    
    .ice-about-heading {
        font-size: 26px;
    }
    
    .ice-about-text {
        font-size: 15px;
        line-height: 1.7;
    }
    
    .ice-gallery-small {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .ice-gallery-img-small {
        height: 250px;
    }
    
    .ice-gallery-img-large {
        height: 300px;
    }
}

/* Эффект снежинок (опционально) */
.ice-about-content {
    position: relative;
    overflow: hidden;
}

.ice-about-content::after {
    content: '❄️';
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 60px;
    opacity: 0.05;
    transform: rotate(15deg);
    pointer-events: none;
}

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

.ice-services {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 30px;
}

/* Заголовок страницы */
.ice-services-header {
    text-align: center;
    margin-bottom: 50px;
}

.ice-services-title {
    font-size: 36px;
    font-weight: 800;
    color: #1e2b3c;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #1e2b3c, #0099cc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ice-title-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.ice-decoration-line {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #0099cc, #66ccff, #0099cc, transparent);
}

.ice-decoration-ice {
    font-size: 30px;
    animation: iceRotate 3s infinite linear;
}

@keyframes iceRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Сетка карточек */
.ice-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

/* Карточка услуги */
.ice-service-card {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 153, 204, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 1px solid rgba(102, 204, 255, 0.2);
    display: flex;
    flex-direction: column;
}

.ice-service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 153, 204, 0.3);
    border-color: #66ccff;
}

/* Верхний декоративный элемент */
.ice-card-top {
    height: 10px;
    background: linear-gradient(90deg, #0099cc, #66ccff, #0099cc);
    position: relative;
    overflow: hidden;
}

.ice-card-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    animation: cardGlow 2s infinite;
}

@keyframes cardGlow {
    to {
        left: 100%;
    }
}

/* Контент карточки */
.ice-card-content {
    padding: 30px 25px;
    flex-grow: 1;
}

.ice-card-title {
    font-size: 22px;
    font-weight: 700;
    color: #1e2b3c;
    margin-bottom: 20px;
    line-height: 1.4;
    min-height: 60px;
    border-bottom: 2px solid #e6f0fa;
    padding-bottom: 15px;
    position: relative;
}

.ice-card-title::after {
    content: '⛸️';
    position: absolute;
    right: 0;
    bottom: 10px;
    font-size: 20px;
    opacity: 0.3;
}

/* Блок цены */
.ice-card-price-block {
    background: linear-gradient(135deg, #f0f9ff, #ffffff);
    padding: 20px;
    border-radius: 20px;
    margin-bottom: 20px;
    border: 1px solid #e1eef9;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ice-currency {
    font-size: 18px;
    font-weight: 600;
    color: #0099cc;
    background: rgba(0, 153, 204, 0.1);
    padding: 8px 15px;
    border-radius: 30px;
}

.ice-price-time {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.ice-price {
    font-size: 32px;
    font-weight: 800;
    color: #1e2b3c;
    line-height: 1;
}

.ice-time {
    font-size: 16px;
    color: #7f8c8d;
    font-weight: 500;
}

/* Описание */
.ice-card-description {
    font-size: 15px;
    line-height: 1.7;
    color: #4a5a6e;
    margin-bottom: 20px;
    min-height: 80px;
}

/* Футер карточки с кнопкой */
.ice-card-footer {
    padding: 0 25px 30px 25px;
}

/* Кнопка покупки */
.ice-btn-buy {
    width: 100%;
    padding: 16px 25px;
    background: linear-gradient(135deg, #1e2b3c, #2c3e50);
    border: none;
    border-radius: 50px;
    color: white;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.ice-btn-buy::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 204, 255, 0.3), transparent);
    transition: left 0.5s;
}

.ice-btn-buy:hover {
    background: linear-gradient(135deg, #0099cc, #0077aa);
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 153, 204, 0.4);
}

.ice-btn-buy:hover::before {
    left: 100%;
}

.ice-btn-text {
    position: relative;
    z-index: 2;
}

.ice-btn-icon {
    font-size: 20px;
    position: relative;
    z-index: 2;
    transition: transform 0.3s;
}

.ice-btn-buy:hover .ice-btn-icon {
    transform: rotate(360deg);
}

/* Адаптация для планшетов */
@media (max-width: 768px) {
    .ice-services {
        margin: 40px auto;
        padding: 0 20px;
    }
    
    .ice-services-title {
        font-size: 28px;
    }
    
    .ice-services-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
    }
    
    .ice-card-title {
        font-size: 20px;
        min-height: auto;
    }
    
    .ice-price {
        font-size: 28px;
    }
}

/* Адаптация для мобилок */
@media (max-width: 576px) {
    .ice-services-title {
        font-size: 24px;
    }
    
    .ice-decoration-line {
        width: 50px;
    }
    
    .ice-services-grid {
        grid-template-columns: 1fr;
    }
    
    .ice-card-content {
        padding: 20px;
    }
    
    .ice-card-price-block {
        padding: 15px;
    }
    
    .ice-price {
        font-size: 26px;
    }
    
    .ice-btn-buy {
        padding: 14px 20px;
        font-size: 16px;
    }
}

/* Эффект для скрытых инпутов */
.ice-service-card input[type="hidden"] {
    display: none;
}

/* Анимация появления карточек */
.ice-service-card {
    animation: cardAppear 0.6s ease-out backwards;
}

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

/* Задержки для анимации */
.ice-service-card:nth-child(1) { animation-delay: 0.1s; }
.ice-service-card:nth-child(2) { animation-delay: 0.2s; }
.ice-service-card:nth-child(3) { animation-delay: 0.3s; }
.ice-service-card:nth-child(4) { animation-delay: 0.4s; }
.ice-service-card:nth-child(5) { animation-delay: 0.5s; }
.ice-service-card:nth-child(6) { animation-delay: 0.6s; }


/* ===== СТИЛИ ДЛЯ PAYMENT ФОРМЫ (ЛЕДОВАЯ ТЕМА) ===== */

.payment {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 20, 40, 0.7);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: paymentFadeIn 0.3s ease;
}

@keyframes paymentFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.payment_form {
    background: white;
    width: 90%;
    max-width: 500px;
    border-radius: 40px;
    padding: 40px 35px;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 153, 204, 0.3), 0 0 0 2px rgba(102, 204, 255, 0.2) inset;
    transform: translateY(0);
    animation: paymentSlideUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

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

/* Крестик закрытия */
.payment .closer {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f0f7fd;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    border: 2px solid transparent;
}

.payment .closer:hover {
    background: #e1eef9;
    transform: rotate(90deg);
    border-color: #0099cc;
}

.payment .closer-ic {
    position: relative;
    width: 18px;
    height: 18px;
}

.payment .closer-ic::before,
.payment .closer-ic::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 2px;
    background: #0099cc;
    top: 8px;
    left: 0;
    border-radius: 2px;
}

.payment .closer-ic::before {
    transform: rotate(45deg);
}

.payment .closer-ic::after {
    transform: rotate(-45deg);
}

/* Заголовок формы */
.payment_form_title {
    font-size: 32px;
    font-weight: 800;
    color: #1e2b3c;
    margin-bottom: 30px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 15px;
}

.payment_form_title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #0099cc, #66ccff, #0099cc);
    border-radius: 2px;
}

.payment_form_title::before {
    content: '❄️';
    position: absolute;
    top: -15px;
    right: 20px;
    font-size: 30px;
    opacity: 0.2;
    transform: rotate(15deg);
}

/* Название услуги */
.service_title_name {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 5px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.title_service {
    font-size: 20px;
    font-weight: 700;
    color: #1e2b3c;
    margin-bottom: 20px;
    padding: 15px 0;
    border-bottom: 2px dashed #d9e6f2;
    position: relative;
    padding-left: 15px;
}

.title_service::before {
    content: '⛸️';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    opacity: 0.5;
}

/* Цена */
.price_service {
    font-size: 16px;
    color: #2c3e50;
    margin-bottom: 15px;
    padding: 15px;
    background: linear-gradient(135deg, #f8fcff, #ffffff);
    border-radius: 20px;
    border: 1px solid #e1eef9;
    position: relative;
    overflow: hidden;
}

.price_service::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(102, 204, 255, 0.1) 0%, transparent 70%);
    animation: priceGlow 4s infinite;
}

@keyframes priceGlow {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(-10%, -10%);
    }
}

.price_service span {
    font-weight: 800;
    color: #0099cc;
    font-size: 24px;
    margin-left: 5px;
}

.price_service.d-none {
    display: none;
}

/* Группы полей */
.payment .form-group {
    margin-bottom: 20px;
    position: relative;
}

/* Поля ввода */
.payment_form_input {
    width: 100%;
    padding: 16px 20px;
    font-size: 16px;
    border: 2px solid #e1eef9;
    border-radius: 20px;
    background: white;
    transition: all 0.3s ease;
    color: #1e2b3c;
    box-shadow: 0 2px 10px rgba(0, 153, 204, 0.05);
}

.payment_form_input:focus {
    outline: none;
    border-color: #0099cc;
    box-shadow: 0 0 0 4px rgba(0, 153, 204, 0.15), 0 2px 10px rgba(0, 153, 204, 0.1);
    transform: translateY(-2px);
}

.payment_form_input:hover {
    border-color: #66ccff;
}

.payment_form_input::placeholder {
    color: #a0b8cc;
    font-size: 15px;
    transition: opacity 0.3s;
}

.payment_form_input:focus::placeholder {
    opacity: 0.5;
}

/* Специальный стиль для телефона */
input[type="tel"].payment_form_input {
    font-family: 'Courier New', monospace;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Сообщение об ошибке */
.payment .message-error {
    color: #e74c3c;
    font-size: 14px;
    margin: -10px 0 15px;
    padding: 8px 15px;
    background: rgba(231, 76, 60, 0.1);
    border-radius: 30px;
    border-left: 4px solid #e74c3c;
    font-weight: 500;
}

/* Кнопка отправки */
.payment_form_btn_buy {
    width: 100%;
    padding: 18px 25px;
    background: linear-gradient(135deg, #0099cc, #0077aa);
    border: none;
    border-radius: 50px;
    color: white;
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 25px rgba(0, 153, 204, 0.4);
    position: relative;
    overflow: hidden;
    margin-top: 15px;
}

.payment_form_btn_buy::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.payment_form_btn_buy::after {
    content: '❄️';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    opacity: 0;
    transition: all 0.3s;
}

.payment_form_btn_buy:hover {
    background: linear-gradient(135deg, #0077aa, #0099cc);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 35px rgba(0, 153, 204, 0.5);
    padding-left: 20px;
    padding-right: 50px;
}

.payment_form_btn_buy:hover::before {
    left: 100%;
}

.payment_form_btn_buy:hover::after {
    opacity: 1;
    right: 25px;
    animation: iceSpin 1s infinite linear;
}

@keyframes iceSpin {
    from {
        transform: translateY(-50%) rotate(0deg);
    }
    to {
        transform: translateY(-50%) rotate(360deg);
    }
}

.payment_form_btn_buy:active {
    transform: translateY(-2px) scale(1);
    box-shadow: 0 10px 20px rgba(0, 153, 204, 0.3);
}

/* Скрытые инпуты */
.payment input[type="hidden"] {
    display: none;
}

/* Декоративные ледяные элементы */
.payment_form::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, #0099cc, #66ccff, #0099cc);
    border-radius: 45px;
    z-index: -1;
    opacity: 0.2;
    filter: blur(15px);
    animation: borderGlow 3s infinite alternate;
}

@keyframes borderGlow {
    from {
        opacity: 0.1;
        filter: blur(10px);
    }
    to {
        opacity: 0.3;
        filter: blur(20px);
    }
}

/* Снежинки на фоне */
.payment_form {
    position: relative;
    overflow: hidden;
}

.payment_form .snowflake {
    position: absolute;
    color: #0099cc;
    opacity: 0.1;
    font-size: 20px;
    pointer-events: none;
    animation: snowFall 10s linear infinite;
}

@keyframes snowFall {
    from {
        transform: translateY(-100%) rotate(0deg);
    }
    to {
        transform: translateY(100vh) rotate(360deg);
    }
}

/* Адаптация для мобилок */
@media (max-width: 576px) {
    .payment_form {
        padding: 30px 20px;
        width: 95%;
        border-radius: 30px;
    }
    
    .payment_form_title {
        font-size: 26px;
        margin-bottom: 25px;
    }
    
    .payment_form_title::before {
        font-size: 24px;
        top: -10px;
        right: 10px;
    }
    
    .title_service {
        font-size: 18px;
        padding: 12px 0 12px 15px;
    }
    
    .price_service span {
        font-size: 20px;
    }
    
    .payment_form_input {
        padding: 14px 18px;
        font-size: 15px;
    }
    
    .payment_form_btn_buy {
        padding: 15px 20px;
        font-size: 16px;
    }
}

/* Для очень маленьких экранов */
@media (max-width: 380px) {
    .payment_form {
        padding: 25px 15px;
    }
    
    .payment_form_title {
        font-size: 22px;
    }
    
    .payment .closer {
        width: 35px;
        height: 35px;
        top: 10px;
        right: 10px;
    }
}



/* TIME */
/* ===== СТИЛИ ДЛЯ СТРАНИЦЫ РАСПИСАНИЯ (ЛЕДОВАЯ ТЕМА) ===== */

.ice-schedule {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 30px;
}

/* Заголовок страницы */
.ice-schedule-header {
    text-align: center;
    margin-bottom: 50px;
}

.ice-schedule-title {
    font-size: 36px;
    font-weight: 700;
    color: #1e2b3c;
    line-height: 1.4;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.ice-title-highlight {
    display: block;
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(135deg, #0099cc, #66ccff, #0099cc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-top: 10px;
    text-shadow: 0 5px 15px rgba(0, 153, 204, 0.2);
}

.ice-schedule-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.ice-decoration-bar {
    width: 150px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #0099cc, #66ccff, #0099cc, transparent);
}

.ice-decoration-icon {
    font-size: 40px;
    animation: icePulse 2s infinite ease-in-out;
    filter: drop-shadow(0 0 10px #0099cc);
}

@keyframes icePulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 5px #0099cc);
    }
    50% {
        transform: scale(1.2);
        filter: drop-shadow(0 0 20px #66ccff);
    }
}

/* Сетка карточек */
.ice-schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

/* Карточка дня */
.ice-schedule-card {
    background: white;
    border-radius: 30px;
    padding: 25px 20px 20px;
    box-shadow: 0 15px 35px rgba(0, 153, 204, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(102, 204, 255, 0.2);
    display: flex;
    flex-direction: column;
}

.ice-schedule-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 153, 204, 0.3);
    border-color: #66ccff;
}

/* Ледяной эффект сверху */
.ice-card-frost {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 10px;
    background: linear-gradient(90deg, #0099cc, #66ccff, #ffffff, #66ccff, #0099cc);
    opacity: 0.7;
}

/* Заголовок дня */
.ice-day-heading {
    font-size: 28px;
    font-weight: 800;
    color: #1e2b3c;
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ice-day-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #0099cc, #66ccff);
    border-radius: 2px;
}

.ice-day-heading::before {
    content: '📅';
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    opacity: 0.5;
}

/* Контейнер таблицы */
.ice-table-container {
    overflow-x: auto;
    margin-bottom: 20px;
    border-radius: 20px;
    background: linear-gradient(135deg, #f8fcff, #ffffff);
    padding: 5px;
}

/* Таблица */
.ice-time-table {
    overflow: hidden;
    width: 100%;
    border-collapse: collapse;
    font-size: 16px;
    min-width: 250px;
}

/* Заголовок таблицы */
.ice-table-head {
    background: linear-gradient(135deg, #1e2b3c, #2c3e50);
    color: white;
}

.ice-table-head th {
    padding: 15px 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.ice-table-head th:first-child {
    border-top-left-radius: 15px;
}

.ice-table-head th:last-child {
    border-top-right-radius: 15px;
}

/* Тело таблицы */
.ice-table-body {
    background: white;
}

.ice-table-row {
    transition: all 0.3s ease;
    border-bottom: 1px solid #e1eef9;
}

.ice-table-row:last-child {
    border-bottom: none;
}

.ice-table-row:hover {
    background: rgba(102, 204, 255, 0.1);
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(0, 153, 204, 0.1);
}

.ice-table-row td {
    padding: 12px 10px;
    text-align: center;
    color: #2c3e50;
}

/* Номер по порядку */
.ice-number {
    font-weight: 700;
    color: #0099cc;
    font-size: 18px;
}

/* Время */
.ice-time-start, 
.ice-time-end {
    font-weight: 600;
    font-family: 'Courier New', monospace;
    font-size: 16px;
    color: #1e2b3c;
}

.ice-time-start {
    color: #0099cc;
}

.ice-time-end {
    color: #2c3e50;
}

/* Разделитель */
.ice-separator {
    font-weight: 700;
    color: #7f8c8d;
    font-size: 18px;
    width: 20px;
}

/* Декоративные снежинки внизу */
.ice-card-ice {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed #d9e6f2;
}

.ice-card-ice span {
    font-size: 20px;
    animation: iceFloat 3s infinite ease-in-out;
    opacity: 0.5;
}

.ice-card-ice span:nth-child(1) {
    animation-delay: 0s;
}

.ice-card-ice span:nth-child(2) {
    animation-delay: 0.5s;
}

.ice-card-ice span:nth-child(3) {
    animation-delay: 1s;
}

@keyframes iceFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-5px) rotate(10deg);
    }
}

/* Адаптация для планшетов */
@media (max-width: 992px) {
    .ice-schedule {
        margin: 40px auto;
    }
    
    .ice-schedule-title {
        font-size: 30px;
    }
    
    .ice-title-highlight {
        font-size: 40px;
    }
    
    .ice-schedule-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Адаптация для мобилок */
@media (max-width: 768px) {
    .ice-schedule {
        padding: 0 20px;
    }
    
    .ice-schedule-title {
        font-size: 24px;
    }
    
    .ice-title-highlight {
        font-size: 32px;
    }
    
    .ice-decoration-bar {
        width: 80px;
    }
    
    .ice-schedule-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .ice-day-heading {
        font-size: 24px;
    }
    
    .ice-table-head th {
        padding: 12px 8px;
        font-size: 13px;
    }
    
    .ice-table-row td {
        padding: 10px 8px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .ice-schedule {
        margin: 30px auto;
    }
    
    .ice-schedule-title {
        font-size: 20px;
    }
    
    .ice-title-highlight {
        font-size: 26px;
        letter-spacing: 2px;
    }
    
    .ice-decoration-icon {
        font-size: 30px;
    }
    
    .ice-decoration-bar {
        width: 50px;
    }
    
    .ice-day-heading {
        font-size: 22px;
        padding-bottom: 12px;
    }
    
    .ice-day-heading::before {
        font-size: 20px;
    }
    
    .ice-time-table {
        font-size: 14px;
    }
    
    .ice-number {
        font-size: 16px;
    }
    
    .ice-time-start, 
    .ice-time-end {
        font-size: 14px;
    }
}

/* Анимация появления карточек */
.ice-schedule-card {
    animation: scheduleCardAppear 0.6s ease-out backwards;
}

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

/* Задержки для карточек */
.ice-schedule-card:nth-child(1) { animation-delay: 0.1s; }
.ice-schedule-card:nth-child(2) { animation-delay: 0.2s; }
.ice-schedule-card:nth-child(3) { animation-delay: 0.3s; }
.ice-schedule-card:nth-child(4) { animation-delay: 0.4s; }
.ice-schedule-card:nth-child(5) { animation-delay: 0.5s; }
.ice-schedule-card:nth-child(6) { animation-delay: 0.6s; }
.ice-schedule-card:nth-child(7) { animation-delay: 0.7s; }

/* Эффект при наведении на строки */
.ice-table-row {
    position: relative;
    overflow: hidden;
}

.ice-table-row::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(102, 204, 255, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.ice-table-row:hover::after {
    opacity: 1;
}

/* Если нет записей на день */
.ice-table-body:empty::after {
    content: 'Ýok';
    display: block;
    text-align: center;
    padding: 20px;
    color: #7f8c8d;
    font-style: italic;
}


/* ===== СТИЛИ ДЛЯ СТРАНИЦЫ КОНТАКТОВ (ЛЕДОВАЯ ТЕМА) ===== */

.ice-contact {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 30px;
    position: relative;
}

/* Заголовок страницы */
.ice-contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.ice-contact-title {
    font-size: 42px;
    font-weight: 800;
    color: #1e2b3c;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.ice-title-ice {
    position: absolute;
    top: -20px;
    right: -40px;
    font-size: 40px;
    animation: iceSpin 4s infinite linear;
    opacity: 0.5;
}

@keyframes iceSpin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.ice-contact-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.ice-line {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #0099cc, #66ccff, #0099cc, transparent);
}

.ice-icon {
    font-size: 40px;
    animation: iceBounce 2s infinite ease-in-out;
}

@keyframes iceBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.ice-contact-subtitle {
    font-size: 18px;
    color: #4a5a6e;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Основной контейнер */
.ice-contact-container {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 30px;
    align-items: start;
    position: relative;
}

/* Декоративные элементы по бокам */
.ice-contact-decoration-left,
.ice-contact-decoration-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px 0;
}

.ice-crystal {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(102, 204, 255, 0.1), rgba(0, 153, 204, 0.2));
    border-radius: 20px;
    transform: rotate(45deg);
    animation: crystalFloat 3s infinite ease-in-out;
    box-shadow: 0 0 20px rgba(0, 153, 204, 0.2);
    backdrop-filter: blur(5px);
}

.ice-crystal:nth-child(1) { animation-delay: 0s; }
.ice-crystal:nth-child(2) { animation-delay: 0.5s; }
.ice-crystal:nth-child(3) { animation-delay: 1s; }

@keyframes crystalFloat {
    0%, 100% {
        transform: rotate(45deg) translateY(0);
    }
    50% {
        transform: rotate(55deg) translateY(-10px);
    }
}

/* Обертка формы */
.ice-form-wrapper {
    background: white;
    border-radius: 40px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0, 153, 204, 0.15);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(102, 204, 255, 0.3);
}

.ice-form-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(102, 204, 255, 0.1) 0%, transparent 70%);
    animation: formGlow 10s infinite linear;
}

@keyframes formGlow {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Верхний декор формы */
.ice-form-top {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.ice-form-top span {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #0099cc, #66ccff);
    border-radius: 50%;
    opacity: 0.2;
    animation: formTopPulse 2s infinite;
}

.ice-form-top span:nth-child(1) { animation-delay: 0s; }
.ice-form-top span:nth-child(2) { animation-delay: 0.3s; }
.ice-form-top span:nth-child(3) { animation-delay: 0.6s; }

@keyframes formTopPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.2;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.4;
    }
}

/* Группы полей */
.ice-form-group {
    margin-bottom: 25px;
    position: relative;
}

/* Лейблы */
.ice-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #1e2b3c;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ice-label-icon {
    font-size: 20px;
}

/* Обертка инпута */
.ice-input-wrapper {
    position: relative;
}

/* Поля ввода */
.ice-input,
.ice-textarea {
    width: 100%;
    padding: 16px 20px;
    font-size: 16px;
    border: 2px solid #e1eef9;
    border-radius: 20px;
    background: white;
    transition: all 0.3s ease;
    color: #1e2b3c;
    font-family: inherit;
    position: relative;
    z-index: 2;
}

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

.ice-input:focus,
.ice-textarea:focus {
    outline: none;
    border-color: #0099cc;
    box-shadow: 0 0 0 4px rgba(0, 153, 204, 0.1);
    transform: translateY(-2px);
}

.ice-input:hover,
.ice-textarea:hover {
    border-color: #66ccff;
}

.ice-input::placeholder,
.ice-textarea::placeholder {
    color: #a0b8cc;
    font-size: 15px;
}

/* Эффект фокуса */
.ice-input-focus {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background: linear-gradient(135deg, #0099cc, #66ccff);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 1;
}

.ice-input:focus ~ .ice-input-focus,
.ice-textarea:focus ~ .ice-input-focus {
    opacity: 0.1;
}

/* Футер формы */
.ice-form-footer {
    margin-top: 35px;
    text-align: center;
}

/* Кнопка отправки */
.ice-btn-submit {
    padding: 18px 45px;
    background: linear-gradient(135deg, #1e2b3c, #2c3e50);
    border: none;
    border-radius: 50px;
    color: white;
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.ice-btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 204, 255, 0.3), transparent);
    transition: left 0.5s;
}

.ice-btn-submit:hover {
    background: linear-gradient(135deg, #0099cc, #0077aa);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 35px rgba(0, 153, 204, 0.4);
}

.ice-btn-submit:hover::before {
    left: 100%;
}

.ice-btn-icon {
    font-size: 24px;
    transition: transform 0.3s;
}

.ice-btn-submit:hover .ice-btn-icon {
    transform: rotate(360deg);
}

/* Защита данных */
.ice-form-protection {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    padding: 10px;
    background: rgba(102, 204, 255, 0.1);
    border-radius: 30px;
}

.ice-protection-icon {
    font-size: 16px;
}

.ice-protection-text {
    font-size: 14px;
    color: #4a5a6e;
}

/* Информационный блок справа */
.ice-contact-info {
    background: white;
    border-radius: 40px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 153, 204, 0.1);
    border: 1px solid rgba(102, 204, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.ice-contact-info::after {
    content: '❄️';
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 60px;
    opacity: 0.1;
    transform: rotate(15deg);
}

.ice-info-card {
    position: relative;
    z-index: 2;
}

.ice-info-title {
    font-size: 24px;
    font-weight: 700;
    color: #1e2b3c;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e1eef9;
}

.ice-info-icon {
    font-size: 28px;
}

.ice-info-list {
    list-style: none;
    margin-bottom: 25px;
}

.ice-info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding: 10px;
    border-radius: 15px;
    transition: all 0.3s;
}

.ice-info-item:hover {
    background: rgba(102, 204, 255, 0.1);
    transform: translateX(5px);
}

.ice-info-item-icon {
    font-size: 22px;
    min-width: 30px;
}

.ice-info-item-content {
    flex: 1;
}

.ice-info-label {
    display: block;
    font-size: 12px;
    color: #7f8c8d;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.ice-info-link,
.ice-info-text {
    font-size: 16px;
    color: #1e2b3c;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.ice-info-link:hover {
    color: #0099cc;
}

/* Время работы */
.ice-info-work-time {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 2px dashed #d9e6f2;
}

.ice-work-title {
    font-size: 18px;
    font-weight: 700;
    color: #1e2b3c;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ice-work-icon {
    font-size: 20px;
}

.ice-work-text {
    font-size: 16px;
    color: #0099cc;
    font-weight: 600;
    padding: 8px 15px;
    background: rgba(0, 153, 204, 0.1);
    border-radius: 30px;
    display: inline-block;
}

/* Адаптация для планшетов */
@media (max-width: 1200px) {
    .ice-contact-container {
        grid-template-columns: 1fr 2fr;
    }
    
    .ice-contact-decoration-right {
        display: none;
    }
}

@media (max-width: 992px) {
    .ice-contact {
        margin: 40px auto;
    }
    
    .ice-contact-title {
        font-size: 36px;
    }
    
    .ice-contact-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .ice-contact-decoration-left,
    .ice-contact-decoration-right {
        display: none;
    }
    
    .ice-form-wrapper {
        padding: 30px;
    }
    
    .ice-contact-info {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .ice-contact {
        padding: 0 20px;
    }
    
    .ice-contact-title {
        font-size: 32px;
    }
    
    .ice-title-ice {
        font-size: 30px;
        right: -30px;
    }
    
    .ice-line {
        width: 60px;
    }
    
    .ice-icon {
        font-size: 32px;
    }
    
    .ice-contact-subtitle {
        font-size: 16px;
    }
    
    .ice-form-wrapper {
        padding: 25px;
    }
    
    .ice-input,
    .ice-textarea {
        padding: 14px 18px;
        font-size: 15px;
    }
    
    .ice-btn-submit {
        padding: 15px 35px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .ice-contact-title {
        font-size: 26px;
    }
    
    .ice-title-ice {
        font-size: 24px;
        right: -20px;
        top: -10px;
    }
    
    .ice-contact-decoration {
        gap: 10px;
    }
    
    .ice-line {
        width: 40px;
    }
    
    .ice-icon {
        font-size: 28px;
    }
    
    .ice-form-wrapper {
        padding: 20px;
        border-radius: 30px;
    }
    
    .ice-label {
        font-size: 14px;
    }
    
    .ice-input,
    .ice-textarea {
        padding: 12px 16px;
        border-radius: 15px;
    }
    
    .ice-btn-submit {
        width: 100%;
        padding: 15px 20px;
        font-size: 16px;
    }
    
    .ice-contact-info {
        padding: 20px;
    }
    
    .ice-info-title {
        font-size: 20px;
    }
    
    .ice-info-item {
        padding: 8px;
    }
    
    .ice-info-link,
    .ice-info-text {
        font-size: 14px;
    }
}

/* Анимация появления */
.ice-contact {
    animation: contactFadeIn 0.8s ease-out;
}

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

/* Валидация полей */
.ice-input:invalid:not(:placeholder-shown),
.ice-textarea:invalid:not(:placeholder-shown) {
    border-color: #e74c3c;
}

.ice-input:valid:not(:placeholder-shown),
.ice-textarea:valid:not(:placeholder-shown) {
    border-color: #2ecc71;
}

/* Flash сообщения */
.ice-contact .flash-message {
    background: white;
    border-radius: 30px;
    padding: 15px 25px;
    margin-bottom: 30px;
    border-left: 5px solid #0099cc;
    box-shadow: 0 5px 15px rgba(0, 153, 204, 0.2);
    animation: flashSlide 0.5s ease-out;
}

@keyframes flashSlide {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}