/* ===== VARIABLES ===== */
:root {
    --primary: #E8600A;
    --primary-dark: #C85000;
    --primary-light: #FF8C3A;
    --dark: #1A1A2E;
    --dark-2: #16213E;
    --gray-900: #212529;
    --gray-700: #495057;
    --gray-500: #6c757d;
    --gray-300: #dee2e6;
    --gray-100: #f8f9fa;
    --white: #ffffff;
    --font: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    --shadow: 0 4px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
    --radius: 12px;
    --radius-sm: 8px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font);
    color: var(--gray-900);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition);
}

ul { list-style: none; }
img { max-width: 100%; display: block; }

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

.text-accent { color: var(--primary); }

/* ===== ICONS ===== */
.icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.icon-sm {
    width: 12px;
    height: 12px;
    margin-left: 4px;
    transition: transform var(--transition);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:active::after {
    width: 300px;
    height: 300px;
}

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

.btn--primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(232, 96, 10, 0.35);
}

.btn--outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn--outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(232, 96, 10, 0.35);
}

.btn--lg {
    padding: 16px 36px;
    font-size: 15px;
}

.btn--full {
    width: 100%;
}

/* ===== SECTION COMMON ===== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background: rgba(232, 96, 10, 0.1);
    color: var(--primary);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-tag--light {
    background: rgba(255,255,255,0.15);
    color: var(--white);
}

.section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-title--light {
    color: var(--white);
}

.section-desc {
    font-size: 16px;
    color: var(--gray-500);
    max-width: 560px;
    margin: 0 auto;
}

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--dark);
    color: rgba(255,255,255,0.8);
    font-size: 13px;
    padding: 8px 0;
}

.top-bar__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.top-bar__left,
.top-bar__right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.top-bar__item {
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.top-bar__item .icon {
    color: var(--primary);
}

/* ===== HEADER ===== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    transition: all var(--transition);
}

.header--scrolled {
    box-shadow: 0 4px 30px rgba(0,0,0,0.1);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    height: 72px;
}

/* ===== LOGO ===== */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo__icon {
    width: 42px;
    height: 42px;
}

.logo__icon svg {
    width: 100%;
    height: 100%;
}

.logo__text {
    font-size: 22px;
    font-weight: 800;
    color: var(--gray-900);
    letter-spacing: 1px;
}

.logo__text--light {
    color: var(--white);
}

.logo__accent {
    color: var(--primary);
}

.logo__img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.logo__img--footer {
    height: 40px;
    filter: brightness(1.1);
}

/* ===== NAV ===== */
.nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav__link {
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-700);
    letter-spacing: 0.5px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    display: flex;
    align-items: center;
}

.nav__link:hover,
.nav__link--active {
    color: var(--primary);
}

.nav__link--active {
    background: rgba(232, 96, 10, 0.08);
}

/* Dropdown */
.nav__dropdown {
    position: relative;
}

.nav__dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 220px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition);
}

.nav__dropdown:hover .nav__dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav__dropdown:hover .icon-sm {
    transform: rotate(180deg);
}

.nav__dropdown-link {
    display: block;
    padding: 10px 16px;
    font-size: 14px;
    color: var(--gray-700);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.nav__dropdown-link:hover {
    background: rgba(232, 96, 10, 0.08);
    color: var(--primary);
    padding-left: 22px;
}

.header__btn {
    padding: 10px 24px;
    font-size: 13px;
}

/* Burger */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.burger span {
    width: 24px;
    height: 2px;
    background: var(--gray-900);
    border-radius: 2px;
    transition: all var(--transition);
}

.burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav */
.mobile-nav {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 999;
    padding: 20px;
    flex-direction: column;
    gap: 4px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform var(--transition);
}

.mobile-nav.active {
    transform: translateX(0);
}

.mobile-nav__link {
    padding: 14px 20px;
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-700);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.mobile-nav__link:hover {
    background: rgba(232, 96, 10, 0.08);
    color: var(--primary);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("./Автосфера (0).jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(18, 22, 34, 0.72) 0%,
        rgba(18, 22, 34, 0.56) 50%,
        rgba(18, 22, 34, 0.48) 100%);
}

.hero__particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 120px 20px 80px;
}

.hero__title {
    font-size: clamp(32px, 6vw, 64px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero__title-accent {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__photo {
    display: none;
    margin: 30px auto 30px;
    max-width: 700px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 16px 50px rgba(0,0,0,0.4);
    border: 3px solid rgba(232, 96, 10, 0.4);
    position: relative;
}

.hero__photo::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius);
    box-shadow: inset 0 0 40px rgba(0,0,0,0.2);
    pointer-events: none;
}

.hero__photo-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.hero__photo:hover .hero__photo-img {
    transform: scale(1.03);
}

.hero__subtitle {
    font-size: clamp(15px, 2vw, 18px);
    color: rgba(255,255,255,0.75);
    max-width: 640px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero__buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero__stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.hero__stat {
    text-align: center;
}

.hero__stat-number {
    display: block;
    font-size: 48px;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

.hero__stat-label {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.hero__scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounceDown 2s infinite;
}

.hero__scroll-down svg {
    width: 32px;
    height: 32px;
    color: rgba(255,255,255,0.4);
}

@keyframes bounceDown {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-12px); }
    60% { transform: translateX(-50%) translateY(-6px); }
}

/* ===== SERVICES ===== */
.services {
    padding: 100px 0;
    background: var(--gray-100);
}

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

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-card__image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.service-card__image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        hsl(var(--bg-hue, 30), 15%, 90%),
        hsl(var(--bg-hue, 30), 20%, 82%)
    );
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.6s ease;
}

.service-card__image-placeholder svg {
    width: 80px;
    height: 80px;
    opacity: 0.7;
}

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

.service-card__overlay {
    position: absolute;
    inset: 0;
    background: rgba(232, 96, 10, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition);
}

.service-card:hover .service-card__overlay {
    opacity: 1;
}

.service-card__overlay-text {
    color: var(--white);
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transform: translateY(10px);
    transition: transform var(--transition);
}

.service-card:hover .service-card__overlay-text {
    transform: translateY(0);
}

.service-card__body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
}

.service-card__title {
    font-size: 17px;
    font-weight: 700;
    color: var(--gray-900);
}

.service-card__desc {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.5;
}

.service-card__link {
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.service-card__link svg {
    width: 18px;
    height: 18px;
    color: var(--primary);
}

.service-card:hover .service-card__link {
    background: var(--primary);
}

.service-card:hover .service-card__link svg {
    color: var(--white);
}

/* CTA Card */
.service-card--cta {
    background: linear-gradient(135deg, var(--dark), var(--dark-2));
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card--cta:hover {
    transform: translateY(-8px);
}

.service-card--cta__inner {
    padding: 40px;
    text-align: center;
}

.service-card--cta__label {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
    line-height: 1.6;
}

/* ===== ABOUT ===== */
.about {
    padding: 100px 0;
}

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

.about__text {
    color: var(--gray-500);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 32px;
}

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

.about__feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    border-radius: var(--radius);
    transition: all var(--transition);
}

.about__feature:hover {
    background: var(--gray-100);
}

.about__feature-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    background: rgba(232, 96, 10, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about__feature-icon svg {
    width: 24px;
    height: 24px;
}

.about__feature h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.about__feature p {
    font-size: 14px;
    color: var(--gray-500);
}

.about__visual {
    display: flex;
    justify-content: center;
}

.about__image-wrapper {
    position: relative;
    width: 100%;
    max-width: 440px;
}

.about__image-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--gray-100), hsl(30, 20%, 88%));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about__image-placeholder svg {
    width: 60%;
    height: 60%;
    opacity: 0.5;
}

.about__badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary);
    color: var(--white);
    padding: 24px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: 0 12px 30px rgba(232, 96, 10, 0.4);
    animation: floatBadge 3s ease-in-out infinite;
}

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

.about__badge-number {
    display: block;
    font-size: 36px;
    font-weight: 900;
    line-height: 1;
}

.about__badge-text {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* ===== PRICES ===== */
.prices {
    padding: 100px 0;
    background: var(--gray-100);
}

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

.price-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px 32px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all var(--transition);
    position: relative;
    border: 2px solid transparent;
}

.price-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.price-card--popular {
    border-color: var(--primary);
    transform: scale(1.05);
}

.price-card--popular:hover {
    transform: scale(1.05) translateY(-8px);
}

.price-card__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    padding: 4px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-card__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
}

.price-card__icon svg {
    width: 100%;
    height: 100%;
}

.price-card__title {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 20px;
}

.price-card__list {
    margin-bottom: 24px;
}

.price-card__list li {
    padding: 10px 0;
    font-size: 14px;
    color: var(--gray-500);
    border-bottom: 1px solid var(--gray-300);
}

.price-card__list li:last-child {
    border-bottom: none;
}

.price-card__price {
    font-size: 16px;
    color: var(--gray-500);
    margin-bottom: 24px;
}

.price-card__price span {
    font-size: 36px;
    font-weight: 900;
    color: var(--primary);
}

/* ===== BOOKING ===== */
.booking {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark), var(--dark-2));
    overflow: hidden;
}

.booking__overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(232, 96, 10, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(232, 96, 10, 0.1) 0%, transparent 50%);
}

.booking__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.booking__text {
    color: rgba(255,255,255,0.7);
    font-size: 16px;
    line-height: 1.7;
}

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

.booking__form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-input {
    width: 100%;
    padding: 14px 20px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-family: var(--font);
    font-size: 14px;
    transition: all var(--transition);
    outline: none;
}

.form-input::placeholder {
    color: rgba(255,255,255,0.4);
}

.form-input:focus {
    border-color: var(--primary);
    background: rgba(255,255,255,0.12);
    box-shadow: 0 0 0 3px rgba(232, 96, 10, 0.2);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.5)' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: pointer;
}

.form-select option {
    background: var(--dark);
    color: var(--white);
}

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

/* ===== BLOG ===== */
.blog {
    padding: 100px 0;
}

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

.blog-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all var(--transition);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.blog-card__image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-card__image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        hsl(var(--bg-hue, 30), 15%, 90%),
        hsl(var(--bg-hue, 30), 20%, 82%)
    );
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.6s ease;
}

.blog-card__image-placeholder svg {
    width: 64px;
    height: 64px;
    opacity: 0.5;
}

.blog-card:hover .blog-card__image-placeholder {
    transform: scale(1.1);
}

.blog-card__date {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: var(--primary);
    color: var(--white);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.blog-card__body {
    padding: 24px;
}

.blog-card__title {
    font-size: 17px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-card__desc {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 16px;
}

.blog-card__link {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    transition: all var(--transition);
}

.blog-card__link:hover {
    color: var(--primary-dark);
    letter-spacing: 1px;
}

/* ===== MAP SECTION ===== */
.map-section {
    padding: 100px 0 0;
}

.map-section__wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    min-height: 450px;
    margin-top: 40px;
}

.map-section__info {
    background: var(--dark);
    color: var(--white);
    display: flex;
    align-items: center;
}

.map-section__info-inner {
    padding: 40px;
}

.map-section__title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--white);
}

.map-section__details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.map-section__details li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: rgba(255,255,255,0.75);
}

.map-section__details li .icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.map-section__details a {
    color: rgba(255,255,255,0.75);
    transition: color var(--transition);
}

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

.map-section__map {
    min-height: 450px;
}

.map-section__map iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    padding: 80px 0 0;
}

.footer__top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer__desc {
    font-size: 14px;
    line-height: 1.7;
    margin: 16px 0 24px;
}

.footer__socials {
    display: flex;
    gap: 12px;
}

.footer__social {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.footer__social svg {
    width: 18px;
    height: 18px;
}

.footer__social:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.footer__heading {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.footer__list li {
    margin-bottom: 10px;
}

.footer__list a {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    transition: all var(--transition);
}

.footer__list a:hover {
    color: var(--primary);
    padding-left: 6px;
}

.footer__contacts li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 14px;
}

.footer__contacts .icon {
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer__bottom {
    padding: 24px 0;
    text-align: center;
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition);
    z-index: 100;
    box-shadow: 0 4px 20px rgba(232, 96, 10, 0.4);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
    color: var(--white);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-4px);
}

/* ===== ANIMATIONS ===== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: var(--delay, 0s);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Particle */
.particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(232, 96, 10, 0.3);
    pointer-events: none;
    animation: floatParticle linear infinite;
}

@keyframes floatParticle {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% {
        transform: translateY(-100px) rotate(720deg);
        opacity: 0;
    }
}

/* Toast */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--dark);
    color: var(--white);
    padding: 16px 32px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    z-index: 10000;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 10px;
}

.toast.show {
    transform: translateX(-50%) translateY(0);
}

.toast__icon {
    width: 24px;
    height: 24px;
    color: #4ade80;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about__visual {
        order: -1;
    }
    .prices__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .price-card--popular {
        transform: none;
    }
    .price-card--popular:hover {
        transform: translateY(-8px);
    }
    .footer__top {
        grid-template-columns: repeat(2, 1fr);
    }
    .booking__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .map-section__wrapper {
        grid-template-columns: 1fr;
    }
    .map-section__map {
        min-height: 350px;
    }
}

@media (max-width: 768px) {
    .top-bar__left {
        display: none;
    }
    .nav, .header__btn {
        display: none;
    }
    .burger {
        display: flex;
    }
    .mobile-nav {
        display: flex;
    }
    .services__grid {
        grid-template-columns: 1fr;
    }
    .prices__grid {
        grid-template-columns: 1fr;
    }
    .blog__grid {
        grid-template-columns: 1fr;
    }
    .booking__form-row {
        grid-template-columns: 1fr;
    }
    .footer__top {
        grid-template-columns: 1fr;
    }
    .hero__stats {
        gap: 30px;
    }
    .hero__stat-number {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .hero__content {
        padding: 100px 10px 60px;
    }
    .hero__buttons .btn {
        width: 100%;
    }
}
