/* ============================================
   Ari TUN Travel — Стили сайта
   Дизайн по аналогии с BlueBrick
   ============================================ */

/* === ПЕРЕМЕННЫЕ === */
:root {
    /* Палитра, гармоничная с логотипом (синий, оранж, терракота) */
    --clr-primary: #1e3a5f;
    --clr-primary-light: #2b5ea7;
    --clr-accent: #F47B4A;
    --clr-accent-dark: #d9653a;
    --clr-accent-light: #f9a87e;
    --clr-blue: #2B5EA7;
    --clr-blue-light: #4a8fd4;
    --clr-white: #ffffff;
    --clr-gray-50: #f9fafb;
    --clr-gray-100: #f3f4f6;
    --clr-gray-200: #e5e7eb;
    --clr-gray-300: #d1d5db;
    --clr-gray-500: #6b7280;
    --clr-gray-700: #374151;
    --clr-gray-900: #111827;
    --clr-dark-bg: #1e293b;
    --clr-dark-card: #1e3a5f;
    --clr-success: #10b981;
    --gradient-hero: linear-gradient(135deg, rgba(30,58,95,0.75), rgba(43,94,167,0.55));
    --gradient-accent: linear-gradient(135deg, #F47B4A, #f9a87e);
    --gradient-dark: linear-gradient(180deg, #1e293b, #1e3a5f);

    --ff: 'Outfit', sans-serif;
    --fs-xs: 0.75rem;
    --fs-sm: 0.875rem;
    --fs-base: 1rem;
    --fs-md: 1.125rem;
    --fs-lg: 1.25rem;
    --fs-xl: 1.5rem;
    --fs-2xl: 2rem;
    --fs-3xl: 2.5rem;
    --fs-4xl: 3.5rem;
    --fs-hero: clamp(2.5rem, 5vw + 1rem, 4.5rem);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.1);
    --shadow-xl: 0 16px 64px rgba(0,0,0,0.14);
    --shadow-glow: 0 0 30px rgba(244,123,74,0.25);

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s 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(--ff);
    font-size: var(--fs-base);
    color: var(--clr-gray-900);
    line-height: 1.6;
    background: var(--clr-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; }

/* === CONTAINER === */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.section--dark {
    background: var(--gradient-dark);
}

.section--accent {
    background: var(--clr-gray-50);
}

.section__label {
    font-size: var(--fs-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--clr-accent);
    margin-bottom: 8px;
}

.section__label--light {
    color: var(--clr-accent-light);
}

.section__title {
    font-size: var(--fs-3xl);
    font-weight: 700;
    color: var(--clr-primary);
    margin-bottom: 16px;
    line-height: 1.2;
}

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

.section__subtitle {
    font-size: var(--fs-md);
    color: var(--clr-gray-500);
    max-width: 640px;
    margin-bottom: 48px;
}

/* === BUTTONS === */
.btn {
    display: inline-flex!important;
    align-items: center!important;
    justify-content: center!important;
    gap: 8px!important;
    padding: 14px 32px!important;
    font-family: var(--ff)!important;
    font-size: var(--fs-base)!important;
    font-weight: 600!important;
    border: 2px solid transparent!important;
   
    cursor: pointer!important;
    transition: var(--transition)!important;
    white-space: nowrap!important;
}

.btn--primary {
    background: var(--gradient-accent)!important;
    color: var(--clr-primary)!important;
    border-color: var(--clr-accent)!important;
}

.btn--primary:hover {
    transform: translateY(-2px)!important;
    box-shadow: var(--shadow-glow)!important;
}

.btn--outline {
    background: transparent!important;
    color: var(--clr-white)!important;
    border-color: rgba(255,255,255,0.4)!important;
}

.btn--outline:hover {
    background: rgba(255,255,255,0.1)!important;
    border-color: var(--clr-white)!important;
}

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

/* === HEADER === */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}

.header--scrolled {
    background: rgba(30,41,59,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.header__logo-img {
    height: 48px;
    width: auto;
}

.header--scrolled .header__logo-img {
    height: 40px;
}

.header__nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.header__link {
    color: rgba(255,255,255,0.85);
    font-size: var(--fs-sm);
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
}

.header__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--clr-accent);
    transition: var(--transition);
}

.header__link:hover::after,
.header__link.active::after {
    width: 100%;
}

.header__link:hover {
    color: var(--clr-white);
}

.header__cta {
    padding: 10px 24px;
    background: var(--gradient-accent);
    color: var(--clr-primary);
    font-weight: 600;
    font-size: var(--fs-sm);
   
}

.header__cta:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-glow);
}

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

.header__burger span {
    width: 24px;
    height: 2px;
    background: var(--clr-white);
   
    transition: var(--transition);
}

/* === HERO === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero__slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease;
}

.hero__slide--active {
    opacity: 1;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    padding: 120px 0 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}

.hero__text {
    flex: 1;
    min-width: 0;
}

/* === HERO CARD (Floating tour card) === */
.hero-card {
    width: 380px;
    flex-shrink: 0;
    background: var(--clr-white);
    
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero-card__img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.hero-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-card__messengers {
    position: absolute;
    bottom: 14px;
    right: 14px;
    display: flex;
    gap: 8px;
}

.hero-card__msg {
    width: 44px;
    height: 44px;
    
    background: var(--clr-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--fs-lg);
    color: var(--clr-gray-700);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.hero-card__msg:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--clr-accent);
}

.hero-card__body {
    padding: 24px 28px 28px;
}

.hero-card__title {
    font-size: var(--fs-xl);
    font-weight: 700;
    color: var(--clr-gray-900);
    margin-bottom: 12px;
}

.hero-card__route {
    font-size: var(--fs-base);
    color: var(--clr-gray-500);
    line-height: 1.6;
    margin-bottom: 18px;
    display: flex;
    gap: 8px;
}

.hero-card__route i {
    color: var(--clr-blue);
    margin-top: 4px;
    flex-shrink: 0;
}

.hero-card__meta {
    display: flex;
    gap: 20px;
    margin-bottom: 22px;
}

.hero-card__meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: var(--fs-sm);
    color: var(--clr-gray-500);
    font-weight: 500;
}

.hero-card__meta-item i {
    color: var(--clr-gray-500);
    font-size: 14px;
}

.hero-card__cta {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px 24px;
    background: var(--clr-blue);
    color: var(--clr-white);
    font-family: var(--ff);
    font-size: var(--fs-base);
    font-weight: 700;
    border: none;
    
    cursor: pointer;
    transition: var(--transition);
}

.hero-card__cta:hover {
    background: var(--clr-primary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(43,94,167,0.35);
}

.hero__subtitle {
    font-size: var(--fs-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--clr-accent);
    margin-bottom: 16px;
}

.hero__title {
    font-size: var(--fs-hero);
    font-weight: 800;
    color: var(--clr-white);
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero__title span {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__desc {
    font-size: var(--fs-lg);
    color: rgba(255,255,255,0.75);
    max-width: 560px;
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero__scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.5);
    font-size: var(--fs-xs);
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* === ABOUT === */
.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about__images {
    position: relative;
}

.about__img-main {
    
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about__img-main img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.about__img-accent {
    position: absolute;
    bottom: -32px;
    right: -32px;
    width: 200px;
    height: 200px;
    
    overflow: hidden;
    border: 6px solid var(--clr-white);
    box-shadow: var(--shadow-lg);
}

.about__img-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about__badge {
    position: absolute;
    top: -20px;
    right: 40px;
    background: var(--gradient-accent);
    color: var(--clr-primary);
    padding: 20px;
    
    text-align: center;
    box-shadow: var(--shadow-md);
}

.about__badge-num {
    display: block;
    font-size: var(--fs-2xl);
    font-weight: 800;
}

.about__badge-text {
    font-size: var(--fs-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about__desc {
    font-size: var(--fs-md);
    color: var(--clr-gray-700);
    margin-bottom: 40px;
    line-height: 1.8;
}

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

.about__stat {
    padding: 20px;
    background: var(--clr-gray-50);
    
    text-align: center;
    transition: var(--transition);
}

.about__stat:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.about__stat-num {
    font-size: var(--fs-2xl);
    font-weight: 800;
    color: var(--clr-accent);
}

.about__stat-plus {
    font-size: var(--fs-xl);
    font-weight: 700;
    color: var(--clr-accent);
}

.about__stat-label {
    display: block;
    font-size: var(--fs-sm);
    color: var(--clr-gray-500);
    margin-top: 4px;
}

/* === SERVICES === */
.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.service-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    
    padding: 40px 32px;
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.service-card:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-6px);
    border-color: rgba(244,123,74,0.3);
    box-shadow: var(--shadow-glow);
}

.service-card__icon {
    width: 64px;
    height: 64px;
    
    background: var(--gradient-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: var(--fs-xl);
    color: var(--clr-primary);
}

.service-card__title {
    font-size: var(--fs-lg);
    font-weight: 600;
    color: var(--clr-white);
    margin-bottom: 8px;
}

.service-card__desc {
    font-size: var(--fs-sm);
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
}

.services__note {
    margin-top: 32px;
    text-align: center;
    font-size: var(--fs-sm);
    color: rgba(255,255,255,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.services__note i {
    color: var(--clr-accent-light);
}

/* === TOURS === */
.tours__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 32px;
}

a.tour-card {
    display: block;
    text-decoration: none;
    color: inherit;
}

.tour-card {
    background: var(--clr-white);
    
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--clr-gray-200);
}

.tour-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--clr-accent);
}

.tour-card__images {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.tour-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.tour-card:hover .tour-card__img {
    transform: scale(1.06);
}

.tour-card__badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--gradient-accent);
    color: var(--clr-primary);
    font-size: var(--fs-sm);
    font-weight: 700;
    padding: 6px 16px;
    
}

.tour-card__body {
    padding: 24px;
}

.tour-card__title {
    font-size: var(--fs-xl);
    font-weight: 700;
    color: var(--clr-primary);
    margin-bottom: 8px;
}

.tour-card__location {
    font-size: var(--fs-sm);
    color: var(--clr-gray-500);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.tour-card__location i {
    color: var(--clr-accent);
}

.tour-card__desc {
    font-size: var(--fs-sm);
    color: var(--clr-gray-700);
    line-height: 1.7;
    margin-bottom: 16px;
}

.tour-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tour-card__tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--clr-gray-50);
    
    font-size: var(--fs-xs);
    font-weight: 500;
    color: var(--clr-gray-700);
}

.tour-card__tag i {
    color: var(--clr-accent);
    font-size: 10px;
}

.tour-card__more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--clr-accent);
    transition: var(--transition);
}

.tour-card:hover .tour-card__more {
    gap: 10px;
}

/* === WHY US === */
.why__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.why-card {
    text-align: center;
    padding: 40px 24px;
    
    background: var(--clr-white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--clr-gray-100);
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--clr-accent);
}

.why-card__icon {
    width: 72px;
    height: 72px;
    
    background: linear-gradient(135deg, rgba(244,123,74,0.12), rgba(244,123,74,0.04));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: var(--fs-xl);
    color: var(--clr-accent);
    transition: var(--transition);
}

.why-card:hover .why-card__icon {
    background: var(--gradient-accent);
    color: var(--clr-primary);
}

.why-card__title {
    font-size: var(--fs-lg);
    font-weight: 600;
    color: var(--clr-primary);
    margin-bottom: 8px;
}

.why-card__desc {
    font-size: var(--fs-sm);
    color: var(--clr-gray-500);
    line-height: 1.6;
}

/* === INDIVIDUAL TOURS === */
.individual__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.ind-card {
    background: var(--clr-white);
    
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--clr-gray-200);
    transition: var(--transition);
}

.ind-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--clr-accent);
}

.ind-card__img-wrap {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.ind-card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.ind-card:hover .ind-card__img-wrap img {
    transform: scale(1.06);
}

.ind-card__price {
   
    background: var(--gradient-accent);
    color: var(--clr-primary);
    font-size: var(--fs-sm);
    font-weight: 700;
    padding: 6px 14px;
    box-shadow: var(--shadow-md);
}

.ind-card__body {
    padding: 20px;
}

.ind-card__title {
    font-size: var(--fs-lg);
    font-weight: 700;
    color: var(--clr-primary);
    margin-bottom: 6px;
}

.ind-card__route {
    font-size: var(--fs-xs);
    color: var(--clr-gray-500);
    line-height: 1.5;
}

/* === GALLERY === */
.gallery__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 240px;
    grid-auto-flow: dense;
    gap: 12px;
    margin-top: 48px;
}

.gallery__item {
  
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.gallery__item--tall {
    grid-row: span 2;
}

.gallery__item--wide {
    grid-column: span 2;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery__item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 50%);
    z-index: 1;
    transition: var(--transition);
}

.gallery__item:hover::before {
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 60%);
}

.gallery__item::after {
    content: '\f00e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    z-index: 2;
    width: 48px;
    height: 48px;
    
    background: var(--clr-accent);
    color: var(--clr-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--fs-md);
    opacity: 0;
    transition: var(--transition);
}

.gallery__item:hover::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.gallery__item:hover img {
    transform: scale(1.1);
}

/* Подписи к фото */
.gallery__caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 16px 20px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 8px;
    transform: translateY(4px);
    opacity: 0.85;
    transition: var(--transition);
}

.gallery__item:hover .gallery__caption {
    transform: translateY(0);
    opacity: 1;
}

.gallery__caption-place {
    font-size: var(--fs-base);
    font-weight: 600;
    color: var(--clr-white);
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

.gallery__caption-day {
    font-size: var(--fs-xs);
    font-weight: 600;
    color: var(--clr-accent-light);
    background: rgba(0,0,0,0.3);
    padding: 3px 10px;
    
    backdrop-filter: blur(8px);
    white-space: nowrap;
}

/* === CTA === */
.cta {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.cta__bg {
    position: absolute;
    inset: 0;
}

.cta__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta__overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
}

.cta__content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.cta__desc {
    font-size: var(--fs-md);
    color: rgba(255,255,255,0.75);
    margin-bottom: 40px;
    line-height: 1.7;
}

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

.cta__input {
    width: 100%;
    padding: 16px 24px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    
    color: var(--clr-white);
    font-family: var(--ff);
    font-size: var(--fs-base);
    outline: none;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.cta__input::placeholder {
    color: rgba(255,255,255,0.5);
}

.cta__input:focus {
    border-color: var(--clr-accent);
    background: rgba(255,255,255,0.15);
}

/* === FOOTER === */
.footer {
    background: var(--clr-dark-bg);
    padding-top: 80px;
}

.footer__inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__logo {
    height: 56px;
    width: auto;
    margin-bottom: 16px;
}

.footer__brand-desc {
    font-size: var(--fs-sm);
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.footer__social-link {
    width: 40px;
    height: 40px;
    
    background: rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: var(--fs-md);
    transition: var(--transition);
}

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

.footer__heading {
    font-size: var(--fs-lg);
    font-weight: 600;
    color: var(--clr-white);
    margin-bottom: 20px;
}

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

.footer__links a {
    color: rgba(255,255,255,0.5);
    font-size: var(--fs-sm);
    transition: var(--transition);
}

.footer__links a:hover {
    color: var(--clr-accent);
    padding-left: 4px;
}

.footer__contacts li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.5);
    font-size: var(--fs-sm);
    margin-bottom: 14px;
}

.footer__contacts i {
    color: var(--clr-accent);
    width: 16px;
    text-align: center;
}

.footer__bottom {
    padding: 20px 0;
    text-align: center;
}

.footer__bottom p {
    font-size: var(--fs-xs);
    color: rgba(255,255,255,0.3);
}

/* === LIGHTBOX === */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0,0,0,0.95);
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition);
}

.lightbox--active {
    display: flex;
    opacity: 1;
}

.lightbox__img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    
}

.lightbox__close,
.lightbox__prev,
.lightbox__next {
    position: absolute;
    background: rgba(255,255,255,0.1);
    border: none;
    color: var(--clr-white);
    cursor: pointer;
    
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--fs-xl);
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover {
    background: var(--clr-accent);
    color: var(--clr-primary);
}

.lightbox__close { top: 24px; right: 24px; }
.lightbox__prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 24px; top: 50%; transform: translateY(-50%); }

/* === TOP BUTTON === */
.top-btn {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 900;
    width: 48px;
    height: 48px;
    
    background: var(--gradient-accent);
    color: var(--clr-primary);
    border: none;
    cursor: pointer;
    font-size: var(--fs-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
}

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

.top-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

/* === ANIMATIONS === */
.animate-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .about__grid { grid-template-columns: 1fr; gap: 40px; }
    .about__img-accent { right: 0; }
    .services__grid { grid-template-columns: repeat(2, 1fr); }
    .why__grid { grid-template-columns: repeat(2, 1fr); }
    .gallery__grid { grid-template-columns: repeat(3, 1fr); }
    .footer__inner { grid-template-columns: 1fr 1fr; }
    .hero-card { width: 320px; }
    .hero-card__img { height: 180px; }
}

@media (max-width: 768px) {
    .section { padding: 64px 0; }
    .section__title { font-size: var(--fs-2xl); }

    /* Hero */
    .hero__content { flex-direction: column; gap: 32px; padding: 100px 0 80px; }
    .hero__text { text-align: center; }
    .hero__desc { margin-left: auto; margin-right: auto; }
    .hero__actions { justify-content: center; }
    .hero__scroll { display: none; }
    .hero-card { width: 100%; max-width: 380px; align-self: center; }
    .hero-card__img { height: 200px; }

    /* Header mobile */
    .header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--clr-dark-bg);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 32px 32px;
        gap: 24px;
        transition: var(--transition);
        box-shadow: -4px 0 20px rgba(0,0,0,0.5);
    }

    .header__nav--open {
        right: 0;
    }

    .header__cta { display: none; }
    .header__burger { display: flex; }

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

    /* Tours */
    .tours__grid { grid-template-columns: 1fr; }

    /* Gallery */
    .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
    }
    .gallery__item--tall { grid-row: span 1; }
    .gallery__item--wide { grid-column: span 1; }
    .gallery__item::after { width: 36px; height: 36px; font-size: var(--fs-sm); }
    .gallery__caption { padding: 10px 14px; }
    .gallery__caption-place { font-size: var(--fs-sm); }

    /* Individual */
    .individual__grid { grid-template-columns: repeat(2, 1fr); }

    /* Footer */
    .footer__inner { grid-template-columns: 1fr; gap: 32px; }

    /* Services */
    .services__grid { grid-template-columns: 1fr; }

    /* Why */
    .why__grid { grid-template-columns: 1fr; }

    /* CTA */
    .cta__content { padding: 0 8px; }
    .cta__form { max-width: 100%; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero__title { font-size: clamp(2rem, 8vw, 2.5rem); }
    .hero__content { padding: 90px 0 60px; }
    .hero__actions { flex-direction: column; }
    .hero__actions .btn { width: 100%; }
    .hero-card { max-width: 100%; }
    .hero-card__body { padding: 18px 20px 22px; }
    .hero-card__meta { gap: 12px; flex-wrap: wrap; }
    .about__stats { grid-template-columns: 1fr; }
    .about__img-main img { height: 300px; }
    .individual__grid { grid-template-columns: 1fr; }
    .gallery__grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }
    .tour-card__images { height: 200px; }
    .lightbox__prev { left: 12px; }
    .lightbox__next { right: 12px; }
    .lightbox__close { top: 12px; right: 12px; }
    .top-btn { bottom: 20px; right: 20px; width: 42px; height: 42px; }
}
