
@import url('https://fonts.googleapis.com/css2?family=Jura:wght@300;400;500;600;700&family=Literata:ital,opsz,wght@0,7..72,200..900;1,7..72,200..900&display=swap');


:root {
    --color-primary: #AECCF5;
    --color-accent: #FFAE00;
    --color-dark: #000000;
    --color-darker: #0d0d0d;
    --color-white: #ffffff;
    --color-gray: #aaaaaa;
    --color-border: #222222;
    
    --font-heading: 'Jura', sans-serif;
    --font-body: 'Literata', serif;
    
    --container-width: 1400px;
    --border-radius: 40px;
    --border-radius-card: 20px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Literata', serif;
    background: #000;
    color: #000;
}


.header {
    padding: 24px 60px;
    border-bottom: 1px solid #000;
}

.header__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-family: 'Literata', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
}

.nav {
    display: flex;
    gap: 40px;
}

.nav__link {
    font-family: 'Jura', sans-serif;
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav__link:hover {
    color: #FFAE00;
}

.btn {
    font-family: 'Jura', sans-serif;
    background: #FFAE00;
    color: #000;
    padding: 14px 32px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-block;
}

.btn--big {
    font-family: var(--font-heading);
    padding: 20px 48px;
    font-size: 18px;
    margin-bottom: 100px;
    position: relative;
    z-index: 2;
    animation: pulse 2s infinite;
    transition: all 0.3s ease;
}


@keyframes pulse {
    0% {
        box-shadow: 0 0 15px rgba(254, 115, 65, 0.4);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 35px rgba(254, 115, 65, 0.8), 0 0 70px rgba(254, 115, 65, 0.3);
        transform: scale(1.03);
    }
    100% {
        box-shadow: 0 0 15px rgba(254, 115, 65, 0.4);
        transform: scale(1);
    }
}


.btn--big:hover {
    animation: none;
    background: #fff;
    color: #FE7341;
    transform: scale(1.08);
    box-shadow: 0 0 60px rgba(254, 115, 65, 1), 0 0 120px rgba(254, 115, 65, 0.6);
}

.btn:hover {
    animation: none;
    background: #fff;
    color: #FE7341;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(254, 115, 65, 0.6);
}

.hero {
    background: url('images/photo.jpg') center/cover no-repeat;
    position: relative;
    padding: 120px 60px 160px;
    text-align: left;
    margin-bottom: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero__badge {
    font-family: 'Literata', sans-serif;
    font-size: 64px;
    letter-spacing: 6px;
    font-weight: 600;
    margin-bottom: 40px;
    color: #fff;
    position: relative;
    z-index: 2;
    text-align: left;
}

.hero__title {
    font-family: 'Literata', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    max-width: 1000px;
    margin: 0 0 50px 0;
    color: #fff;
    position: relative;
    z-index: 2;
    text-align: left;
}

.btn--big {
    font-family: 'Literata', sans-serif;
    padding: 20px 48px;
    font-size: 18px;
    margin-bottom: 100px;
    position: relative;
    z-index: 2;
}


.stats {
    display: flex;
    justify-content: center;
    gap: 120px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    background: #FFAE00;
    padding: 35px 60px;
    border-radius: 80px;
}

.stats__item {
    text-align: center;
}

.stats__number {
    font-family: 'Literata', sans-serif;
    display: block;
    font-size: 52px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.stats__label {
    font-family: 'Literata', serif;
    font-size: 16px;
    color: #000;
}


.services {
    background: url('images/serv.jpg') center/cover no-repeat;
    position: relative;
    padding: 100px 60px;
    max-width: 100%;
    margin: 0;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.services__title {
    font-family: 'Literata', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.service-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid #000;
    border-radius: var(--border-radius-card);
    padding: 40px 20px;
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card:hover {
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
    transform: translateY(-6px);
    background: var(--color-white);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--color-dark);
}


.service-card__link {
    font-family: var(--font-heading);
    color: #000;
    background: var(--color-accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    padding: 12px 24px;
    border-radius: 30px;
    display: inline-block;
    transition: all 0.3s ease;
    margin-top: 5px;
    
    
    animation: btnGlow 2s infinite;
}


@keyframes btnGlow {
    0% {
        box-shadow: 0 0 5px rgba(254, 115, 65, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(254, 115, 65, 0.7), 0 0 40px rgba(254, 115, 65, 0.3);
    }
    100% {
        box-shadow: 0 0 5px rgba(254, 115, 65, 0.3);
    }
}


.service-card:nth-child(1) .service-card__link { animation-delay: 0s; }
.service-card:nth-child(2) .service-card__link { animation-delay: 0.2s; }
.service-card:nth-child(3) .service-card__link { animation-delay: 0.4s; }
.service-card:nth-child(4) .service-card__link { animation-delay: 0.6s; }
.service-card:nth-child(5) .service-card__link { animation-delay: 0.8s; }
.service-card:nth-child(6) .service-card__link { animation-delay: 1.0s; }
.service-card:nth-child(7) .service-card__link { animation-delay: 1.2s; }
.service-card:nth-child(8) .service-card__link { animation-delay: 1.4s; }
.service-card:nth-child(9) .service-card__link { animation-delay: 1.6s; }
.service-card:nth-child(10) .service-card__link { animation-delay: 1.8s; }


.service-card__link:hover {
    animation: none;
    background: #fff;
    color: #FE7341;
    transform: scale(1.1);
    box-shadow: 0 0 35px rgba(254, 115, 65, 0.9), 0 0 70px rgba(254, 115, 65, 0.5);
}

footer {
    background: var(--color-darker);
    padding: 40px 60px;
    border-top: 1px solid var(--color-border);
    text-align: center;
}

footer p {
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--color-gray);
    margin: 0;
}

.about {
    padding: 100px 60px;
    background: #fff;
}

.about__container {
    max-width: var(--container-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.about__title {
    font-family: Literata;
    font-size: 48px;
    color: #000;
    margin-bottom: 30px;
}

.about__text {
    font-family: Literata;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
}

.about__slogan {
    font-family: Literata;
    font-size: 20px;
    font-weight: 600;
    margin: 30px 0 20px;
}

.about__mission h3 {
    font-family: Literata;
    font-size: 18px;
    margin-bottom: 10px;
}

.about__stats {
    display: flex;
    gap: 30px;
    margin: 30px 0;
}

.about__stat {
    font-family: Jura;
}

.about__stat span {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 24px;
    color:  #C46322;
    display: block;
}

.about__image img {
    width: 100%;
    border-radius: 50px;
}

.about__btn {
    animation: pulse 2s infinite;
    transition: all 0.3s ease;
    margin-top: 20px;
}


@keyframes pulse {
    0% {
        box-shadow: 0 0 15px rgba(254, 115, 65, 0.4);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 35px rgba(254, 115, 65, 0.8), 0 0 70px rgba(254, 115, 65, 0.3);
        transform: scale(1.03);
    }
    100% {
        box-shadow: 0 0 15px rgba(254, 115, 65, 0.4);
        transform: scale(1);
    }
}


.about__btn:hover {
    animation: none;
    background: #fff;
    color: #FE7341;
    transform: scale(1.08);
    box-shadow: 0 0 60px rgba(254, 115, 65, 1), 0 0 120px rgba(254, 115, 65, 0.6);
}


.reviews {
    padding: 80px 60px;
    background: #f5f5f5;
}

.reviews__container {
    max-width: var(--container-width);
    margin: 0 auto;
}

.reviews__title {
    font-family: Literara;
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
}

.reviews__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.review-card {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.review-card h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--color-accent);
}

.review-card p {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}


.promo {
    padding: 80px 60px;
    background: url('images/6.jpg') center/cover no-repeat ;
}

.promo__container {
    max-width: var(--container-width);
    margin: 0 auto;
}

.promo__title {
    font-family: Literata;
    font-size: 36px;
    margin-bottom: 40px;
}

.promo__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Карточки акций */
.promo-card {
    background: #f9f9f9;
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    border: 2px solid #eee;
    cursor: pointer;
    animation: promoGlow 2s infinite;
}

/* Анимация свечения */
@keyframes promoGlow {
    0% {
        box-shadow: 0 0 5px rgba(254, 115, 65, 0.3);
        border-color: #eee;
    }
    50% {
        box-shadow: 0 0 25px rgba(254, 115, 65, 0.7), 0 0 50px rgba(254, 115, 65, 0.3);
        border-color: #FE7341;
    }
    100% {
        box-shadow: 0 0 5px rgba(254, 115, 65, 0.3);
        border-color: #eee;
    }
}

.promo-card:nth-child(1) { animation-delay: 0s; }
.promo-card:nth-child(2) { animation-delay: 0.6s; }
.promo-card:nth-child(3) { animation-delay: 1.2s; }

/* При наведении */
.promo-card:hover {
    animation: none;
    transform: translateY(-8px);
    box-shadow: 0 0 40px rgba(254, 115, 65, 0.9), 0 0 80px rgba(254, 115, 65, 0.5);
    border-color: #FE7341;
    background: #fff;
}

.promo-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--color-accent);
}

.promo-card p {
    font-family: var(--font-body);
    font-size: 14px;
    color: #333;
}


.works {
    padding: 80px 60px;
    background: #f5f5f5;
}

.works__container {
    max-width: var(--container-width);
    margin: 0 auto;
}

.works__title {
    font-family: Literata;
    font-size: 36px;
    margin-bottom: 40px;
}

.works__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.work-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
}

.work-card img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.work-card p {
    padding: 20px;
    font-family: var(--font-heading);
    font-weight: 600;
}




.calculator-page {
    padding: 100px 60px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #E8F0FE 100%);
    min-height: 80vh;
}

.calculator-page__container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.calculator-page__title {
    font-family: Literata;
    font-size: 48px;
    margin-bottom: 20px;
    color: #000;
}

.calculator-page__subtitle {
    font-family: Jura;
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.calculator-page__desc {
    font-family: Jura;
    font-size: 16px;
    margin-bottom: 30px;
    color: #555;
}

.calculator-page__form {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.calculator-page__input {
    flex: 1;
    padding: 16px 20px;
    border: none;
    border-radius: 40px;
    font-family: Jura;
    font-size: 16px;
    outline: none;
}

.calculator-page__btn {
    padding: 16px 32px;
    white-space: nowrap;
}


.calculator-page__result {
    display: none;
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    margin-top: 30px;
}

.calculator-page__price {
    font-family:Jura;
    font-size: 48px;
    font-weight: 700;
    color: var(--color-accent);
    display: block;
    margin: 15px 0 25px;
}


.calculator-page__error {
    display: none;
    background: #ffe6e6;
    padding: 15px 20px;
    border-radius: 40px;
    margin-top: 20px;
}

.calculator-page__error p {
    color: #d32f2f;
    font-family: Jura;
}


.calculator-page:has(.calculator-page__input:valid) .calculator-page__result {
    display: block;
}

.calculator-page:has(.calculator-page__input:valid) .calculator-page__error {
    display: none;
}

.calculator-page:has(.calculator-page__input:invalid) .calculator-page__result {
    display: none;
}

.calculator-page:has(.calculator-page__input:invalid) .calculator-page__error {
    display: block;
}


.booking {
    padding: 80px 60px;
    background: #000;
}

.booking__container {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.booking__title {
    font-family: Literata;
    font-size: 24px;
    margin-bottom: 30px;
    color: #fff;
}

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

.booking__input {
    padding: 16px 20px;
    border: 1px solid #ffffff;
    border-radius: 40px;
    font-family: var(--font-body);
    font-size: 16px;
}

.booking__btn {
    animation: pulse 2s infinite;
    transition: all 0.3s ease;
    margin-top: 10px;
}


.booking__btn:hover {
    animation: none;
    background: #fff;
    color: #FE7341;
    transform: scale(1.08);
    box-shadow: 0 0 60px rgba(254, 115, 65, 1), 0 0 120px rgba(254, 115, 65, 0.6);
}


.pricelist {
    padding: 80px 60px;
    background: #000;
    min-height: 100vh;
}

.pricelist__container {
    max-width: Literata;
    margin: 0 auto;
}

.pricelist__title {
    font-family: Literata;
    font-size: 48px;
    text-align: center;
    margin-bottom: 50px;
    color: #fff;
}

.pricelist__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.pricelist__col h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--color-accent);
    border-bottom: 2px solid var(--color-accent);
    padding-bottom: 10px;
}

.pricelist__col ul {
    list-style: none;
}

.pricelist__col li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 10px 0;
    border-bottom: 1px dashed #333;
    font-family: Jura;
    font-size: 14px;
}

.pricelist__col li span:first-child {
    color: #fff;
}

.pricelist__col li span:last-child {
    font-weight: 700;
    color: var(--color-accent);
    white-space: nowrap;
}


.pricelist + .footer {
    background: #000;
    border-top: 1px solid #222;
}

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

.logo span {
    margin-left: 0;
}


.contacts {
    padding: 80px 60px;
    background: #000;
}

.contacts__container {
    max-width: 1200px;
    margin: 0 auto;
}

.contacts__title {
    font-family: Literata;
    font-size: 36px;
    margin-bottom: 40px;
    color: #fff;
}

.contacts__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contacts__item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.contacts__icon {
    font-size: 24px;
}

.contacts__item h4 {
    font-family: Jura;
    font-size: 16px;
    margin-bottom: 5px;
    color: #fff;
}

.contacts__item p,
.contacts__item a {
    font-family: Jura;
    font-size: 16px;
    color: #fff;
    text-decoration: none;
}

.contacts__social {
    margin-top: 20px;
}

.contacts__social h4 {
    font-family: Jura;
    margin-bottom: 15px;
    color: #fff;
}

.contacts__social a {
    display: inline-block;
    padding: 8px 20px;
    background: var(--color-accent);
    color: #fff;
    border-radius: 20px;
    text-decoration: none;
    font-family: Jura;
    font-size: 14px;
    margin-right: 10px;
}

.contacts__map {
    border-radius: 20px;
    overflow: hidden;
}

.contacts__map iframe {
    border-radius: 20px;
}


@media (max-width: 1024px) {
    .header { padding: 20px 30px; }
    .nav { gap: 20px; }
    .nav__link { font-size: 14px; }
    .hero { padding: 80px 30px 100px; }
    .hero__title { font-size: 42px; }
    .stats { gap: 60px; padding: 25px 40px; }
    .stats__number { font-size: 36px; }
    .services__grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .about__container { grid-template-columns: 1fr; }
    .works__grid { grid-template-columns: repeat(2, 1fr); }
    .reviews__grid { grid-template-columns: 1fr; }
    .promo__grid { grid-template-columns: 1fr; }
    .contacts__grid { grid-template-columns: 1fr; }
}


@media (max-width: 767px) {
    .header { padding: 15px 20px; }
    .header__top { flex-wrap: wrap; gap: 10px; }
    .nav { gap: 10px; flex-wrap: wrap; justify-content: center; }
    .nav__link { font-size: 13px; }
    .btn { padding: 10px 20px; font-size: 14px; }
    
    .hero { padding: 60px 20px 80px; }
    .hero__badge { font-size: 12px; letter-spacing: 3px; }
    .hero__title { font-size: 28px; line-height: 1.3; }
    .btn--big { padding: 16px 32px; font-size: 16px; margin-bottom: 50px; }
    .stats { gap: 20px; padding: 20px 30px; border-radius: 40px; }
    .stats__number { font-size: 28px; }
    .stats__label { font-size: 12px; }
    
    .services { padding: 50px 20px; }
    .services__title { font-size: 32px; text-align: center; margin-bottom: 30px; }
    .services__grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .service-card { padding: 20px 10px; }
    .service-card h3 { font-size: 14px; }
    .service-card__link { font-size: 12px; padding: 8px 16px; }
    
    .about { padding: 50px 20px; }
    .about__title { font-size: 28px; }
    .about__container { grid-template-columns: 1fr; gap: 20px; }
    .about__stats { flex-wrap: wrap; gap: 15px; }
    
    .works { padding: 50px 20px; }
    .works__title { font-size: 28px; }
    .works__grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    
    .reviews { padding: 50px 20px; }
    .reviews__title { font-size: 24px; }
    .reviews__grid { grid-template-columns: 1fr; }
    
    .promo { padding: 50px 20px; }
    .promo__title { font-size: 24px; }
    .promo__grid { grid-template-columns: 1fr; gap: 15px; }
    
    .calculator { padding: 50px 20px; }
    .calculator__title { font-size: 24px; }
    .calculator__form { flex-direction: column; }
    .calculator__price { font-size: 36px; }
    
    .booking { padding: 50px 20px; }
    .booking__title { font-size: 22px; }
    
    .contacts { padding: 50px 20px; }
    .contacts__title { font-size: 28px; }
    .contacts__grid { grid-template-columns: 1fr; }
    .contacts__map iframe { height: 250px; }
    
    footer { padding: 30px 20px; }
}