/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Nunito', sans-serif;
  background: #f8fafc;
  color: #1e293b;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

/* Настройки контейнера слайда */
.hero-carousel-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    height: 100%; 
    background-color: #f7f7f7; /* Мягкий фон для пустых полей по бокам, если пропорции экрана и фото не совпадут */
}

/* Настройки самой картинки — поместить полностью */
.hero-carousel-slide img {
    width: 100%;
    height: 100%;
    max-height: 550px; /* Максимальная высота слайдера на компьютере */
    object-fit: contain !important; /* Картинка гарантированно помещается целиком, без обрезки */
}

/* Корректировка высоты под мобильные телефоны */
@media (max-width: 768px) {
    .hero-carousel-slide img {
        max-height: 350px; /* Высота слайдера на мобильном, чтобы он не занимал весь экран */
    }
}


/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
  font-family: 'Nunito', sans-serif;
}

.btn-primary {
  background: linear-gradient(135deg, #6ec6b6, #4db8a5);
  color: #fff;
  box-shadow: 0 8px 24px rgba(78, 184, 165, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(78, 184, 165, 0.5);
  background: linear-gradient(135deg, #5db8a8, #3da896);
}

.btn-outline {
  background: transparent;
  color: #4db8a5;
  border: 2px solid #4db8a5;
}

.btn-outline:hover {
  background: #4db8a5;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(78, 184, 165, 0.25);
}

.btn-small {
  padding: 8px 20px;
  font-size: 14px;
}

.btn-large {
  padding: 16px 40px;
  font-size: 18px;
}

/* ===== HEADER ===== */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 12px 0;
    border-bottom: 1px solid rgba(78, 184, 165, 0.1);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0 16px;
    max-width: 1200px;
    margin: 0 auto;
}

/* ===== ЛОГОТИП ===== */
.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    flex-shrink: 0;
}

.logo-icon {
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #6ec6b6, #4db8a5);
    width: 38px;
    height: 38px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(78, 184, 165, 0.3);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.logo:hover .logo-icon {
    transform: rotate(-8deg) scale(1.05);
}

.logo-text {
    background: linear-gradient(135deg, #0f172a, #4db8a5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 20px;
    white-space: nowrap;
}

/* ===== НАВИГАЦИЯ ===== */
.nav-menu {
    display: flex;
    align-items: center;
}

.nav-menu ul {
    display: flex;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-menu ul li a {
    font-weight: 600;
    font-size: 14px;
    color: #334155;
    transition: color 0.3s ease;
    position: relative;
    white-space: nowrap;
    padding: 4px 0;
}

.nav-menu ul li a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #4db8a5;
    transition: width 0.3s ease;
}

.nav-menu ul li a:hover {
    color: #4db8a5;
}

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

/* ===== HEADER ACTIONS ===== */
.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.lang-switch {
    display: flex;
    gap: 3px;
    background: #f1f5f9;
    border-radius: 50px;
    padding: 3px;
    flex-shrink: 0;
}

.lang-btn {
    background: transparent;
    border: none;
    padding: 5px 12px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 12px;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Nunito', sans-serif;
    flex-shrink: 0;
}

.lang-btn.active {
    background: #4db8a5;
    color: #fff;
    box-shadow: 0 4px 12px rgba(78, 184, 165, 0.3);
}

.lang-btn:hover:not(.active) {
    background: #e2e8f0;
}

.btn-small {
    padding: 8px 18px;
    font-size: 13px;
    flex-shrink: 0;
    white-space: nowrap;
}

/* ===== BURGER MENU ===== */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    flex-shrink: 0;
}

.burger span {
    width: 26px;
    height: 3px;
    background: #1e293b;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.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);
}

/* ===== RESPONSIVE HEADER ===== */

/* Планшеты и маленькие ноутбуки */
@media (max-width: 1024px) {
    .nav-menu ul {
        gap: 16px;
    }
    
    .nav-menu ul li a {
        font-size: 13px;
    }
    
    .logo {
        font-size: 18px;
    }
    
    .logo-icon {
        width: 34px;
        height: 34px;
        font-size: 24px;
    }
    
    .logo-text {
        font-size: 18px;
    }
}

/* Мобильные устройства (включая iPhone 12 Pro) */
@media (max-width: 820px) {
    header {
        padding: 10px 0;
    }
    
    .header-container {
        padding: 0 12px;
        gap: 8px;
    }
    
    .logo {
        font-size: 16px;
        gap: 6px;
    }
    
    .logo-icon {
        width: 32px;
        height: 32px;
        font-size: 20px;
        border-radius: 10px;
    }
    
    .logo-text {
        font-size: 16px;
    }
    
    .burger {
        display: flex;
        margin-left: 4px;
    }
    
    .burger span {
        width: 24px;
        height: 2.5px;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        padding: 80px 24px 40px;
        box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-top: 1px solid rgba(78, 184, 165, 0.1);
        overflow-y: auto;
        z-index: 999;
        display: flex;
        align-items: flex-start;
        justify-content: center;
    }
    
    .nav-menu.open {
        transform: translateX(0);
    }
    
    .nav-menu ul {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        width: 100%;
        max-width: 400px;
    }
    
    .nav-menu ul li {
        width: 100%;
        text-align: center;
    }
    
    .nav-menu ul li a {
        font-size: 20px;
        padding: 12px 0;
        display: block;
        width: 100%;
        font-weight: 700;
    }
    
    .nav-menu ul li a::after {
        display: none;
    }
    
    .nav-menu ul li a:hover {
        background: rgba(78, 184, 165, 0.08);
        border-radius: 12px;
    }
    
    .header-actions .btn-small {
        padding: 6px 14px;
        font-size: 12px;
    }
    
    .lang-btn {
        padding: 4px 10px;
        font-size: 11px;
    }
}

/* iPhone 12 Pro и подобные */
@media (max-width: 430px) {
    header {
        padding: 8px 0;
    }
    
    .header-container {
        padding: 0 10px;
        gap: 6px;
    }
    
    .logo {
        font-size: 14px;
        gap: 5px;
    }
    
    .logo-icon {
        width: 28px;
        height: 28px;
        font-size: 18px;
        border-radius: 8px;
    }
    
    .logo-text {
        font-size: 14px;
    }
    
    .header-actions {
        gap: 6px;
    }
    
    .header-actions .btn-small {
        padding: 5px 12px;
        font-size: 11px;
        border-radius: 50px;
    }
    
    .lang-switch {
        gap: 2px;
        padding: 2px;
    }
    
    .lang-btn {
        padding: 3px 8px;
        font-size: 10px;
        border-radius: 50px;
    }
    
    .burger span {
        width: 22px;
        height: 2px;
    }
    
    .burger {
        gap: 4px;
        padding: 2px;
    }
    
    .nav-menu {
        padding: 70px 16px 30px;
    }
    
    .nav-menu ul {
        gap: 14px;
    }
    
    .nav-menu ul li a {
        font-size: 18px;
        padding: 10px 0;
    }
}

/* Очень маленькие телефоны */
@media (max-width: 380px) {
    .logo-icon {
        width: 24px;
        height: 24px;
        font-size: 16px;
        border-radius: 6px;
    }
    
    .logo-text {
        font-size: 12px;
    }
    
    .header-actions .btn-small {
        padding: 4px 10px;
        font-size: 10px;
    }
    
    .lang-btn {
        padding: 2px 6px;
        font-size: 9px;
    }
    
    .burger span {
        width: 20px;
        height: 2px;
    }
}

/* ===== БЛОКИРОВКА СКРОЛЛА ПРИ ОТКРЫТОМ МЕНЮ ===== */
body.menu-open {
    overflow: hidden;
}

/* ===== HERO ===== */
.hero {
    padding: 40px 0 60px;
    background: linear-gradient(135deg, #f0f9f6 0%, #ffffff 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

/* Левая часть - текст */
.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(78, 184, 165, 0.12);
    padding: 6px 16px 6px 12px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
    color: #4db8a5;
    margin-bottom: 16px;
    width: fit-content;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4db8a5;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-content h1 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    color: #0f172a;
    margin-bottom: 16px;
}

.hero-content h1 br {
    display: block;
}

.hero-sub {
    font-size: 17px;
    color: #475569;
    margin-bottom: 28px;
    max-width: 480px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(78, 184, 165, 0.15);
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 26px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
}

.stat-label {
    font-size: 13px;
    color: #94a3b8;
    font-weight: 600;
}

/* Правая часть - карусель */
.hero-carousel-wrapper {
    flex: 1;
    width: 100%;
}

.hero-carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.10);
    background: #f1f5f9;
    aspect-ratio: 4/3;
    width: 100%;
}

.hero-carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    height: 100%;
}

.hero-carousel-slide {
    min-width: 100%;
    flex-shrink: 0;
    position: relative;
    height: 100%;
}

.hero-carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-slide-caption {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(8px);
    padding: 8px 20px;
    border-radius: 50px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

/* Hero карусель кнопки */
.hero-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #1e293b;
}

.hero-carousel-btn:hover {
    background: #ffffff;
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.hero-carousel-btn-prev {
    left: 12px;
}

.hero-carousel-btn-next {
    right: 12px;
}

/* Hero карусель точки */
.hero-carousel-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.hero-carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.hero-carousel-dot.active {
    background: #ffffff;
    width: 24px;
    border-radius: 10px;
}

.hero-carousel-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* ===== RESPONSIVE HERO ===== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-content {
        text-align: center;
        align-items: center;
    }

    .hero-badge {
        margin: 0 auto 16px;
    }

    .hero-sub {
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-carousel-wrapper {
        max-width: 100%;
    }

    .hero-carousel-container {
        aspect-ratio: 16/9;
        max-height: 420px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 30px 0 40px;
        min-height: auto;
    }

    .hero-content h1 {
        font-size: 30px;
    }

    .hero-content h1 br {
        display: block;
    }

    .hero-sub {
        font-size: 15px;
    }

    .hero-carousel-container {
        aspect-ratio: 4/3;
        max-height: 300px;
    }

    .hero-carousel-btn {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }

    .hero-carousel-btn-prev {
        left: 8px;
    }

    .hero-carousel-btn-next {
        right: 8px;
    }

    .hero-slide-caption {
        font-size: 12px;
        padding: 6px 14px;
        bottom: 12px;
    }

    .hero-stats {
        gap: 24px;
        flex-wrap: wrap;
    }

    .stat-number {
        font-size: 20px;
    }

    .stat-label {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 24px;
    }

    .hero-sub {
        font-size: 14px;
    }

    .hero-carousel-container {
        aspect-ratio: 1/1;
        max-height: 250px;
    }

    .hero-carousel-btn {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .hero-slide-caption {
        font-size: 10px;
        padding: 4px 12px;
        bottom: 8px;
    }

    .hero-carousel-dots {
        bottom: 10px;
        gap: 6px;
    }

    .hero-carousel-dot {
        width: 6px;
        height: 6px;
    }

    .hero-carousel-dot.active {
        width: 18px;
    }

    .hero-stats {
        gap: 16px;
    }

    .stat-number {
        font-size: 18px;
    }

    .stat-label {
        font-size: 11px;
    }

    .hero-buttons .btn {
        padding: 10px 20px;
        font-size: 14px;
        width: 100%;
        text-align: center;
    }

    .hero-buttons {
        width: 100%;
    }
}

/* ===== SECTION TITLES ===== */
.section-title {
  font-size: 36px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 48px;
  color: #0f172a;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #6ec6b6, #f09b8c);
  margin: 12px auto 0;
  border-radius: 10px;
}

/* ===== FEATURES ===== */
.features {
  padding: 80px 0;
  background: #ffffff;
}

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

.feature-card {
  background: #f8fafc;
  padding: 32px 24px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(78, 184, 165, 0.08);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06);
  border-color: rgba(78, 184, 165, 0.2);
}

.feature-icon {
  font-size: 40px;
  color: #4db8a5;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #0f172a;
}

.feature-card p {
  color: #64748b;
  font-size: 15px;
}

/* ===== MEDIA ===== */
.media {
  padding: 80px 0;
  background: #f8fafc;
}

.media-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

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

.photo-item {
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  aspect-ratio: 4/3;
}

.photo-item:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.photo-item:hover img {
  transform: scale(1.05);
}

/* ===== CAROUSEL ===== */
.carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.06);
    background: #ffffff;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.carousel-slide {
    min-width: 100%;
    flex-shrink: 0;
    position: relative;
}

.carousel-slide .video-wrapper,
.carousel-slide .slide-image {
    width: 100%;
    height: 500px;
    background: #f1f5f9;
}

.carousel-slide .video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.carousel-slide .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.carousel-slide .slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 40px 40px;
    background: linear-gradient(transparent, rgba(15, 23, 42, 0.8));
    color: #ffffff;
}

.slide-caption h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 6px;
}

.slide-caption p {
    font-size: 16px;
    opacity: 0.9;
    margin: 0;
}

/* Кнопки навигации */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #1e293b;
}

.carousel-btn:hover {
    background: #ffffff;
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.carousel-btn-prev {
    left: 20px;
}

.carousel-btn-next {
    right: 20px;
}

/* Индикаторы (точки) */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 20px 0;
    background: #ffffff;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: #e2e8f0;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-dot.active {
    background: #4db8a5;
    width: 30px;
    border-radius: 10px;
}

.carousel-dot:hover {
    background: #94a3b8;
}

.carousel-dot.active:hover {
    background: #4db8a5;
}

/* ===== MEDIA CAROUSELS ===== */
.carousel-section {
    margin-bottom: 48px;
}

.carousel-section:last-child {
    margin-bottom: 0;
}

.carousel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding: 0 8px;
}

.carousel-header h3 {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 10px;
}

.carousel-header h3 i {
    color: #4db8a5;
}

.carousel-counter {
    font-size: 14px;
    font-weight: 600;
    color: #94a3b8;
    background: #f1f5f9;
    padding: 4px 14px;
    border-radius: 50px;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    background: #ffffff;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.carousel-slide {
    min-width: 100%;
    flex-shrink: 0;
    position: relative;
}

.carousel-slide .video-wrapper,
.carousel-slide .slide-image {
    width: 100%;
    height: 450px;
    background: #f1f5f9;
}

.carousel-slide .video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.carousel-slide .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.carousel-slide .slide-image {
    cursor: pointer;
}

.carousel-slide .slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 40px 40px;
    background: linear-gradient(transparent, rgba(15, 23, 42, 0.8));
    color: #ffffff;
    pointer-events: none;
}

.slide-caption h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 4px;
}

.slide-caption p {
    font-size: 15px;
    opacity: 0.9;
    margin: 0;
}

/* Кнопки навигации */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #1e293b;
}

.carousel-btn:hover {
    background: #ffffff;
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.carousel-btn-prev {
    left: 16px;
}

.carousel-btn-next {
    right: 16px;
}

/* Индикаторы */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 16px 0 20px;
    background: #ffffff;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: #e2e8f0;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-dot.active {
    background: #4db8a5;
    width: 30px;
    border-radius: 10px;
}

.carousel-dot:hover {
    background: #94a3b8;
}

.carousel-dot.active:hover {
    background: #4db8a5;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .carousel-slide .video-wrapper,
    .carousel-slide .slide-image {
        height: 380px;
    }
}

@media (max-width: 768px) {
    .carousel-slide .video-wrapper,
    .carousel-slide .slide-image {
        height: 280px;
    }

    .carousel-header h3 {
        font-size: 18px;
    }

    .slide-caption {
        padding: 20px 24px 28px;
    }

    .slide-caption h3 {
        font-size: 20px;
    }

    .slide-caption p {
        font-size: 13px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .carousel-btn-prev {
        left: 10px;
    }

    .carousel-btn-next {
        right: 10px;
    }

    .carousel-dots {
        padding: 12px 0 16px;
        gap: 8px;
    }

    .carousel-dot {
        width: 8px;
        height: 8px;
    }

    .carousel-dot.active {
        width: 24px;
    }
}

@media (max-width: 480px) {
    .carousel-slide .video-wrapper,
    .carousel-slide .slide-image {
        height: 200px;
    }

    .carousel-section {
        margin-bottom: 32px;
    }

    .carousel-header h3 {
        font-size: 16px;
    }

    .carousel-header h3 i {
        font-size: 14px;
    }

    .carousel-counter {
        font-size: 12px;
        padding: 2px 12px;
    }

    .slide-caption {
        padding: 14px 16px 20px;
    }

    .slide-caption h3 {
        font-size: 16px;
        margin-bottom: 2px;
    }

    .slide-caption p {
        font-size: 12px;
    }

    .carousel-btn {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }

    .carousel-btn-prev {
        left: 6px;
    }

    .carousel-btn-next {
        right: 6px;
    }

    .carousel-dots {
        padding: 10px 0 14px;
        gap: 6px;
    }

    .carousel-dot {
        width: 6px;
        height: 6px;
    }

    .carousel-dot.active {
        width: 20px;
    }
}

/* ===== GROUPS ===== */
.groups {
  padding: 80px 0;
  background: #ffffff;
}

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

.group-card {
  background: #f8fafc;
  padding: 36px 28px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(78, 184, 165, 0.06);
}

.group-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06);
}

.group-age {
  display: inline-block;
  background: linear-gradient(135deg, #6ec6b6, #4db8a5);
  color: #fff;
  padding: 6px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 16px;
}

.group-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #0f172a;
}

.group-card p {
  color: #64748b;
}

/* ===== PRICE CALCULATOR ===== */
.price {
  padding: 80px 0;
  background: #f8fafc;
}

.calc-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background: #ffffff;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.04);
}

.calc-options {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 28px;
}

.calc-group label {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
  color: #0f172a;
}

.calc-group select {
  width: 100%;
  padding: 12px 16px;
  border-radius: 12px;
  border: 2px solid #e2e8f0;
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  background: #f8fafc;
  transition: border-color 0.3s ease;
}

.calc-group select:focus {
  outline: none;
  border-color: #4db8a5;
}

.calc-group.checkboxes {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.calc-group.checkboxes label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  background: #f1f5f9;
  padding: 8px 16px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.calc-group.checkboxes label:hover {
  background: #e2e8f0;
}

.calc-group.checkboxes input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #4db8a5;
}

.calc-result {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 2px solid #f1f5f9;
  font-size: 22px;
  font-weight: 700;
}

.calc-price {
  color: #f09b8c;
  font-size: 32px;
}

/* ===== BOOKING ===== */
.booking {
  padding: 80px 0;
  background: #ffffff;
}

#bookingForm {
  max-width: 700px;
  margin: 0 auto;
  background: #f8fafc;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.04);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 700;
  margin-bottom: 6px;
  color: #0f172a;
  font-size: 14px;
}

.form-group input,
.form-group textarea {
  padding: 12px 16px;
  border-radius: 12px;
  border: 2px solid #e2e8f0;
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  transition: border-color 0.3s ease;
  background: #ffffff;
}

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

.form-group textarea {
  resize: vertical;
}

#bookingForm .btn {
  width: 100%;
  margin-top: 8px;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 80px 0;
  background: #f8fafc;
}

.testimonial-form {
  max-width: 700px;
  margin: 0 auto 48px;
  background: #ffffff;
  padding: 32px;
  border-radius: 24px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.04);
}

.emoji-panel {
  display: flex;
  gap: 8px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.emoji-btn {
  font-size: 28px;
  cursor: pointer;
  transition: transform 0.2s ease;
  padding: 4px 8px;
  border-radius: 8px;
  background: #f1f5f9;
  line-height: 1;
}

.emoji-btn:hover {
  transform: scale(1.2);
  background: #e2e8f0;
}

#testimonialPhoto {
  display: none;
}

.testimonial-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-item {
  background: #ffffff;
  padding: 24px 28px;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all 0.3s ease;
}

.testimonial-item:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6ec6b6, #4db8a5);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  font-weight: 700;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-body {
  flex: 1;
}

.testimonial-name {
  font-weight: 700;
  font-size: 16px;
  color: #0f172a;
}

.testimonial-text {
  color: #475569;
  margin: 4px 0 8px;
}

.testimonial-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}

.like-btn {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  transition: transform 0.2s ease;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Nunito', sans-serif;
}

.like-btn:hover {
  transform: scale(1.15);
}

.like-btn.liked {
  color: #f09b8c;
}

.like-count {
  font-size: 15px;
  font-weight: 600;
  color: #64748b;
}

/* ===== FOOTER ===== */
footer {
  background: #0f172a;
  color: #e2e8f0;
  padding: 48px 0 32px;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}

.footer-col .logo {
  color: #fff;
  margin-bottom: 8px;
}

.footer-col p {
  color: #94a3b8;
  font-size: 14px;
}

.footer-col h4 {
  color: #fff;
  margin-bottom: 12px;
  font-size: 18px;
}

.footer-col i {
  color: #4db8a5;
  width: 20px;
  margin-right: 8px;
}

.footer-col:last-child {
  text-align: right;
}

/* ===== LIGHTBOX ===== */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  padding: 40px;
  animation: fadeIn 0.3s ease;
}

.lightbox.open {
  display: flex;
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 48px;
  color: #fff;
  cursor: pointer;
  transition: transform 0.3s ease;
  line-height: 1;
}

.lightbox-close:hover {
  transform: rotate(90deg);
}

.lightbox-img {
  max-width: 90%;
  max-height: 85vh;
  border-radius: 16px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
  object-fit: contain;
}
/* ===== LIGHTBOX ===== */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 99999;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.lightbox.open {
    display: flex !important;
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
    z-index: 100000;
    background: rgba(0,0,0,0.5);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    touch-action: none;
    cursor: zoom-out;
}

/* ===== ЛАЙТБОКС ===== */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 999999;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.lightbox.open {
    display: flex !important;
}

.lightbox-close {
    position: fixed;
    top: 15px;
    right: 20px;
    font-size: 36px;
    color: #ffffff;
    cursor: pointer;
    z-index: 9999999;
    background: rgba(0, 0, 0, 0.6);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Arial, sans-serif;
    border: 1px solid rgba(255,255,255,0.2);
    user-select: none;
}

.lightbox-close:hover {
    background: rgba(255, 0, 0, 0.3);
}

.lightbox-img {
    max-width: 98%;
    max-height: 88vh;
    object-fit: contain;
    border-radius: 8px;
    touch-action: none;
    cursor: zoom-out;
    user-select: none;
    -webkit-user-select: none;
}

/* Телефон */
@media (max-width: 768px) {
    .lightbox {
        padding: 6px;
        background: rgba(0, 0, 0, 0.98);
    }
    
    .lightbox-close {
        top: 12px;
        right: 12px;
        width: 44px;
        height: 44px;
        font-size: 30px;
    }
    
    .lightbox-img {
        max-height: 82vh;
        max-width: 100%;
    }
}

/* ===== ЛАЙТБОКС ===== */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 999999;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.lightbox.open {
    display: flex !important;
}

.lightbox-close {
    position: fixed;
    top: 20px;
    right: 25px;
    font-size: 40px;
    color: white;
    cursor: pointer;
    z-index: 9999999;
    background: rgba(255,255,255,0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.2);
    font-family: Arial, sans-serif;
    transition: background 0.3s;
}

.lightbox-close:hover {
    background: rgba(255,0,0,0.4);
}

.lightbox-prev,
.lightbox-next {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    font-size: 50px;
    color: white;
    cursor: pointer;
    z-index: 9999999;
    background: rgba(255,255,255,0.1);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.2);
    font-family: Arial, sans-serif;
    transition: background 0.3s;
    user-select: none;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255,255,255,0.3);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-img {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    touch-action: none;
    user-select: none;
}

.lightbox-counter {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.8);
    font-size: 16px;
    font-weight: 600;
    background: rgba(0,0,0,0.5);
    padding: 8px 20px;
    border-radius: 30px;
    z-index: 9999999;
    font-family: 'Nunito', sans-serif;
}

/* Телефон */
@media (max-width: 768px) {
    .lightbox {
        padding: 5px;
    }
    
    .lightbox-close {
        top: 15px;
        right: 15px;
        width: 44px;
        height: 44px;
        font-size: 30px;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 44px;
        height: 44px;
        font-size: 30px;
    }
    
    .lightbox-prev {
        left: 8px;
    }
    
    .lightbox-next {
        right: 8px;
    }
    
    .lightbox-img {
        max-width: 100%;
        max-height: 80vh;
    }
    
    .lightbox-counter {
        bottom: 20px;
        font-size: 14px;
        padding: 6px 16px;
    }
}
/* ===== ЛАЙТБОКС ===== */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 999999;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.lightbox.open {
    display: flex !important;
}

.lightbox-close {
    position: fixed;
    top: 15px;
    right: 15px;
    font-size: 35px;
    color: white;
    cursor: pointer;
    z-index: 9999999;
    background: rgba(255,255,255,0.1);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.2);
    font-family: Arial, sans-serif;
}

.lightbox-prev,
.lightbox-next {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    color: white;
    cursor: pointer;
    z-index: 9999999;
    background: rgba(255,255,255,0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.2);
    font-family: Arial, sans-serif;
    user-select: none;
}

.lightbox-prev {
    left: 15px;
}

.lightbox-next {
    right: 15px;
}

.lightbox-img {
    max-width: 95%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    touch-action: none;
    user-select: none;
}

.lightbox-counter {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.8);
    font-size: 16px;
    font-weight: 600;
    background: rgba(0,0,0,0.5);
    padding: 8px 20px;
    border-radius: 30px;
    z-index: 9999999;
    font-family: 'Nunito', sans-serif;
}

/* Телефон */
@media (max-width: 768px) {
    .lightbox {
        padding: 5px;
    }
    
    .lightbox-close {
        top: 12px;
        right: 12px;
        width: 40px;
        height: 40px;
        font-size: 28px;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 28px;
    }
    
    .lightbox-prev {
        left: 8px;
    }
    
    .lightbox-next {
        right: 8px;
    }
    
    .lightbox-img {
        max-width: 100%;
        max-height: 80vh;
    }
    
    .lightbox-counter {
        bottom: 20px;
        font-size: 14px;
        padding: 6px 16px;
    }
}




/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-content h1 {
    font-size: 38px;
  }

  .hero-image img {
    height: 300px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .media-grid {
    grid-template-columns: 1fr;
  }

  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .groups-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .burger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 74px;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    padding: 24px 0;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
    transform: translateY(-120%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 1px solid rgba(78, 184, 165, 0.1);
  }

  .nav-menu.open {
    transform: translateY(0);
  }

  .nav-menu ul {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .nav-menu ul li a {
    font-size: 18px;
  }

  .hero-content h1 {
    font-size: 30px;
  }

  .hero-content h1 br {
    display: block;
  }

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

  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .section-title {
    font-size: 28px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .groups-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .calc-wrapper {
    padding: 24px;
  }

  .calc-result {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .testimonial-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .testimonial-actions {
    justify-content: center;
  }

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-col:last-child {
    text-align: center;
  }

  .lightbox-img {
    max-width: 100%;
    max-height: 70vh;
  }

  .lightbox-close {
    top: 20px;
    right: 20px;
    font-size: 36px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 24px;
  }

  .hero-image img {
    height: 200px;
  }

  .btn {
    padding: 10px 20px;
    font-size: 14px;
  }

  .btn-large {
    padding: 14px 28px;
    font-size: 16px;
  }

  .feature-card {
    padding: 24px 16px;
  }

  .photo-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .calc-group.checkboxes label {
    font-size: 13px;
    padding: 6px 12px;
  }

  .testimonial-form {
    padding: 20px;
  }
}

/* ===== ЛОГОТИП ===== */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 26px;
    font-weight: 800;
    color: #0f172a;
}

.logo-icon {
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #6ec6b6, #4db8a5);
    width: 44px;
    height: 44px;
    border-radius: 14px;
    box-shadow: 0 4px 12px rgba(78, 184, 165, 0.3);
    transition: transform 0.3s ease;
}

.logo:hover .logo-icon {
    transform: rotate(-8deg) scale(1.05);
}

.logo-text {
    background: linear-gradient(135deg, #0f172a, #4db8a5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== LIGHTBOX С КАПШЕЙ ===== */
.lightbox-caption {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    background: rgba(0, 0, 0, 0.6);
    padding: 12px 24px;
    border-radius: 50px;
    backdrop-filter: blur(8px);
    text-align: center;
    max-width: 80%;
}

/* ===== ФУТЕР СОЦСЕТИ ===== */
.footer-col a:hover {
    color: #4db8a5 !important;
    transform: translateY(-2px);
}

.footer-col a {
    display: inline-block;
    transition: all 0.3s ease;
}
/* ===== FORM ERRORS ===== */
.field-error {
    color: #f09b8c;
    font-size: 13px;
    font-weight: 600;
    margin-top: 4px;
    display: block;
    min-height: 20px;
}

.form-group input.error,
.form-group textarea.error {
    border-color: #f09b8c !important;
    background: #fff5f3 !important;
}

.form-message {
    margin-top: 16px;
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 600;
    display: none;
}

.form-message.success {
    display: block;
    background: #e6f7f3;
    color: #4db8a5;
    border: 1px solid #b8e6dc;
}

.form-message.error {
    display: block;
    background: #fef2f0;
    color: #f09b8c;
    border: 1px solid #fcd4cd;
}

.form-message.show {
    display: block;
}

/* ===== PHONE INPUT STYLING ===== */
#phone {
    font-family: 'Nunito', sans-serif;
    letter-spacing: 0.5px;
}

#phone::placeholder {
    letter-spacing: 0;
}