/* ============================================================
   ArendaLodok.pro — Landing Page Styles
   Dark marine theme with glassmorphism, 3D effects
   ============================================================ */

/* === CSS VARIABLES === */
:root {
    --primary: #0ea5e9;
    --primary-dark: #0284c7;
    --primary-light: #38bdf8;
    --accent: #f97316;
    --accent-dark: #ea580c;
    --accent-light: #fb923c;
    --bg-primary: #0c1220;
    --bg-secondary: #111a2e;
    --bg-tertiary: #1a2332;
    --surface: rgba(255, 255, 255, 0.04);
    --surface-hover: rgba(255, 255, 255, 0.08);
    --surface-border: rgba(255, 255, 255, 0.08);
    --text-primary: #e2e8f0;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --success: #22c55e;
    --warning: #eab308;
    --error: #ef4444;
    --gold: #fbbf24;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.4);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.5);
    --shadow-glow: 0 0 30px rgba(14,165,233,0.15);
    --shadow-accent-glow: 0 0 30px rgba(249,115,22,0.2);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --container: 1200px;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
    font-family: var(--font);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
    -webkit-font-smoothing: antialiased;
}
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-light); }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: none; background: none; border: none; font-family: var(--font); color: var(--text-primary); }
input, textarea, select { font-family: var(--font); }

/* === CUSTOM CURSOR === */
.custom-cursor {
    position: fixed;
    top: 0; left: 0;
    width: 32px; height: 64px;
    pointer-events: none;
    z-index: 10050;
    transform: translate(-50%, -20%);
    transition: transform 0.15s ease-out;
    will-change: transform;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4));
}
.custom-cursor.hovering {
    transform: translate(-50%, -10%) scale(0.85) rotate(15deg);
}
.custom-cursor.clicking {
    transform: translate(-50%, 0%) scale(0.7) rotate(25deg);
}
.cursor-ring {
    position: fixed;
    top: 0; left: 0;
    width: 40px; height: 40px;
    border: 2px solid rgba(249,115,22,0.4);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10049;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, border-color 0.3s;
    will-change: transform;
}
.cursor-ring.hovering {
    width: 60px; height: 60px;
    border-color: rgba(249,115,22,0.7);
}

@media (pointer: coarse), (hover: none) {
    .custom-cursor, .cursor-ring { display: none !important; }
    body, button, a { cursor: auto !important; }
}

/* === CONTAINER === */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: var(--transition);
    border: none;
    cursor: none;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}
.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
    opacity: 0;
    transition: var(--transition);
}
.btn:hover::after { opacity: 1; }

.btn--sm { padding: 8px 20px; font-size: 14px; }
.btn--md { padding: 12px 28px; font-size: 15px; }
.btn--lg { padding: 14px 32px; font-size: 16px; }
.btn--full { width: 100%; }

.btn--primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    box-shadow: 0 4px 15px rgba(14,165,233,0.3);
}
.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(14,165,233,0.4);
    color: #fff;
}

.btn--accent {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #fff;
    box-shadow: 0 4px 15px rgba(249,115,22,0.3);
}
.btn--accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249,115,22,0.4);
    color: #fff;
}

.btn--outline {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.2);
    color: var(--text-primary);
}
.btn--outline:hover {
    border-color: var(--primary);
    background: rgba(14,165,233,0.1);
    transform: translateY(-2px);
    color: var(--primary-light);
}

/* === SECTION COMMON === */
.section-header { text-align: center; margin-bottom: 50px; }
.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(14,165,233,0.1);
    border: 1px solid rgba(14,165,233,0.2);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-light);
    margin-bottom: 16px;
}
.section-title {
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 12px;
}
.section-subtitle {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}
.gradient-text {
    background: linear-gradient(135deg, var(--primary-light), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* === HEADER === */
.header {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 12px 0;
    transition: var(--transition);
    background: transparent;
}
.header.scrolled {
    background: rgba(12,18,32,0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--surface-border);
    padding: 8px 0;
}
.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.header__logo {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 4px;
}
.header__logo span { color: var(--primary); }
.header__logo:hover { color: var(--text-primary); }
.header__logo-icon { font-size: 24px; margin-right: 4px; }
.header__nav {
    display: flex;
    gap: 24px;
}
.header__nav-link {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    position: relative;
    padding: 4px 0;
}
.header__nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--primary);
    transition: var(--transition);
}
.header__nav-link:hover { color: var(--text-primary); }
.header__nav-link:hover::after { width: 100%; }
.header__right { display: flex; align-items: center; gap: 16px; }
.header__phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
}
.header__phone:hover { color: var(--primary-light); }
.header__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
    z-index: 1001;
}
.header__burger span {
    display: block;
    width: 24px; height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
    border-radius: 2px;
}
.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); }

/* === HERO === */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0 80px;
    background: radial-gradient(ellipse at 50% 30%, rgba(14,165,233,0.08), transparent 70%),
                radial-gradient(ellipse at 80% 60%, rgba(249,115,22,0.05), transparent 50%),
                var(--bg-primary);
    overflow: hidden;
}
#hero-canvas {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 1;
    opacity: 0.6;
}
.hero__particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}
.hero__inner {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.hero__content { max-width: 600px; }
.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(249,115,22,0.12);
    border: 1px solid rgba(249,115,22,0.3);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--accent-light);
    margin-bottom: 24px;
    animation: pulse-border 2s infinite;
}
.hero__badge-dot {
    width: 8px; height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse-dot 1.5s infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}
@keyframes pulse-border {
    0%, 100% { border-color: rgba(249,115,22,0.3); }
    50% { border-color: rgba(249,115,22,0.6); }
}
.hero__title {
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
}
.hero__subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
}
.hero__actions {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.hero__stats {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}
.hero__stat { text-align: center; }
.hero__stat-value {
    display: inline-block;
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-light);
}
.hero__stat-plus {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    display: inline-block;
    margin-left: 2px;
}
.hero__stat-label {
    display: block;
    margin-top: 4px;
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.hero__visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero__float-card {
    position: absolute;
    padding: 14px 20px;
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-md);
    animation: float 6s ease-in-out infinite;
    white-space: nowrap;
}
.hero__float-card-icon { font-size: 24px; }
.hero__float-card-text {
    font-size: 14px;
    font-weight: 600;
}
.hero__float-card--1 { top: 10%; left: 5%; animation-delay: 0s; }
.hero__float-card--2 { top: 30%; right: 5%; animation-delay: 1.5s; }
.hero__float-card--3 { bottom: 30%; left: 10%; animation-delay: 3s; }
.hero__float-card--4 { bottom: 10%; right: 10%; animation-delay: 4.5s; }

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(1deg); }
    50% { transform: translateY(-20px) rotate(0deg); }
    75% { transform: translateY(-10px) rotate(-1deg); }
}

.hero__wave {
    position: absolute;
    bottom: -1px; left: 0; right: 0;
    z-index: 4;
    line-height: 0;
}
.hero__wave svg {
    width: 100%;
    height: 80px;
}

/* === CATALOG === */
.catalog {
    padding: 80px 0;
    position: relative;
}
.catalog--boats {
    background: var(--bg-secondary);
}
.catalog__filters {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.catalog__filter {
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 50px;
    background: var(--surface);
    border: 1px solid var(--surface-border);
    color: var(--text-secondary);
    transition: var(--transition);
}
.catalog__filter:hover {
    background: var(--surface-hover);
    color: var(--text-primary);
}
.catalog__filter.active {
    background: rgba(14,165,233,0.15);
    border-color: var(--primary);
    color: var(--primary-light);
}

.catalog__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}
.catalog__grid--boats {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

/* === PRODUCT CARD === */
.product-card {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--surface-border);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    transform: translateY(-4px);
    border-color: rgba(14,165,233,0.3);
    box-shadow: var(--shadow-glow);
    background: var(--surface-hover);
}
.product-card[data-book] {
    cursor: none;
}
.product-card[data-hidden="true"] {
    display: none;
}

.product-card__badge {
    position: absolute;
    top: 12px; right: 12px;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 50px;
    z-index: 2;
}
.product-card__badge--electro {
    background: rgba(14,165,233,0.15);
    color: var(--primary-light);
    border: 1px solid rgba(14,165,233,0.3);
}
.product-card__badge--new {
    background: rgba(34,197,94,0.15);
    color: var(--success);
    border: 1px solid rgba(34,197,94,0.3);
}
.product-card__badge--hot {
    background: rgba(249,115,22,0.15);
    color: var(--accent-light);
    border: 1px solid rgba(249,115,22,0.3);
}
.product-card__badge--premium {
    background: rgba(251,191,36,0.15);
    color: var(--gold);
    border: 1px solid rgba(251,191,36,0.3);
}

.product-card__icon {
    width: 80px; height: 80px;
    margin: 0 auto 16px;
}
.product-card__photo {
    width: 100%;
    height: 180px;
    margin: 0 0 18px;
    padding: 10px;
    border-radius: var(--radius-md);
    background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(226,232,240,0.92));
    border: 1px solid rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.product-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 12px 18px rgba(15,23,42,0.24));
    transition: transform 0.45s ease;
}
.product-card:hover .product-card__photo img {
    transform: scale(1.05);
}
.product-card__icon--boat {
    width: 100px; height: 60px;
}
.product-card__icon svg { width: 100%; height: 100%; }

.product-card__title {
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4px;
}
.product-card__brand {
    font-size: 13px;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 12px;
}
.product-card__specs {
    display: flex;
    gap: 6px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 16px;
}
.product-card__spec {
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 500;
    background: rgba(14,165,233,0.08);
    border-radius: 50px;
    color: var(--text-secondary);
}
.product-card__description {
    min-height: 42px;
    margin: -4px 0 12px;
    font-size: 13px;
    line-height: 1.45;
    color: var(--text-secondary);
    text-align: center;
}
.product-card__price {
    font-size: 15px;
    font-weight: 600;
    color: var(--accent-light);
    text-align: center;
    margin-bottom: 16px;
    flex-grow: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
.product-card__btn {
    font-size: 14px;
}

/* === PACKAGES === */
.packages {
    padding: 80px 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(14,165,233,0.05), transparent 60%),
                var(--bg-primary);
}
.packages__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}
.packages-catalog {
    margin-top: 28px;
}
.product-card--package .product-card__badge {
    position: static;
    width: max-content;
    max-width: 100%;
    margin: 0 auto 16px;
}
.product-card--package .product-card__description {
    min-height: 58px;
}
.packages--table .section-header {
    margin-bottom: 34px;
}
.package-table {
    border: 1px solid var(--surface-border);
    border-radius: var(--radius-lg);
    background: var(--surface);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.package-table__scroll {
    overflow-x: auto;
}
.package-table__table {
    width: 100%;
    min-width: 1180px;
    border-collapse: collapse;
    font-size: 13px;
}
.package-table__table th,
.package-table__table td {
    padding: 11px 10px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    border-right: 1px solid rgba(255,255,255,0.06);
    text-align: right;
    white-space: nowrap;
}
.package-table__table th:first-child,
.package-table__table td:first-child {
    position: sticky;
    left: 0;
    z-index: 2;
    width: 320px;
    max-width: 320px;
    text-align: left;
    white-space: normal;
    background: #10192b;
}
.package-table__table thead th {
    position: sticky;
    top: 0;
    z-index: 3;
    color: #06121f;
    background: linear-gradient(135deg, #d7fb5f, #10b981);
    font-weight: 800;
}
.package-table__table thead th:first-child {
    z-index: 4;
    color: var(--text-primary);
    background: #10192b;
}
.package-table__base-row th,
.package-table__base-row td {
    color: var(--text-primary);
    background: rgba(14,165,233,0.09);
    font-weight: 600;
}
.package-table__discount-row th,
.package-table__discount-row td {
    color: #ff6b6b;
    background: rgba(255,255,255,0.035);
    font-weight: 800;
}
.package-table__percent-row th,
.package-table__percent-row td {
    color: var(--accent-light);
    background: rgba(249,115,22,0.06);
    font-weight: 700;
    border-bottom: 2px solid rgba(255,255,255,0.16);
}
.package-table__note {
    padding: 14px 18px 16px;
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.45;
    border-top: 1px solid var(--surface-border);
}
.package-card {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--surface-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}
.package-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.package-card--popular {
    border-color: var(--accent);
    box-shadow: 0 0 30px rgba(249,115,22,0.15);
}
.package-card--popular:hover {
    box-shadow: 0 0 40px rgba(249,115,22,0.25);
}
.package-card__ribbon {
    position: absolute;
    top: 12px; right: 12px;
    padding: 6px 14px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    box-shadow: 0 2px 10px rgba(249,115,22,0.4);
    z-index: 2;
}
.package-card__header {
    padding: 28px 24px 20px;
    text-align: center;
    border-bottom: 1px solid var(--surface-border);
}
.package-card__badge {
    display: inline-block;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 50px;
    background: rgba(14,165,233,0.1);
    color: var(--primary-light);
    margin-bottom: 8px;
}
.package-card__badge--hot {
    background: rgba(249,115,22,0.15);
    color: var(--accent-light);
}
.package-card__badge--premium {
    background: rgba(251,191,36,0.15);
    color: var(--gold);
}
.package-card__title {
    font-size: 24px;
    font-weight: 800;
}
.package-card__body {
    padding: 24px;
    flex-grow: 1;
}
.package-card__list { display: flex; flex-direction: column; gap: 12px; }
.package-card__list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--text-secondary);
}
.package-card__list li::before {
    content: '✓';
    color: var(--success);
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}
.package-card__footer {
    padding: 20px 24px 24px;
    border-top: 1px solid var(--surface-border);
}
.package-card__price {
    font-size: 16px;
    font-weight: 600;
    color: var(--accent-light);
    text-align: center;
    margin-bottom: 12px;
}

.rental-discounts {
    margin-top: 28px;
    padding: 24px;
    border: 1px solid var(--surface-border);
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(14,165,233,0.08), rgba(249,115,22,0.06));
}
.rental-discounts__header {
    display: grid;
    grid-template-columns: minmax(160px, 0.8fr) minmax(260px, 1.4fr) minmax(240px, 1fr);
    gap: 16px;
    align-items: center;
    margin-bottom: 18px;
}
.rental-discounts__badge {
    width: max-content;
    padding: 7px 12px;
    border-radius: 999px;
    color: var(--accent-light);
    background: rgba(249,115,22,0.12);
    border: 1px solid rgba(249,115,22,0.24);
    font-size: 13px;
    font-weight: 700;
}
.rental-discounts__title {
    font-size: 20px;
    line-height: 1.25;
    font-weight: 800;
}
.rental-discounts__text {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.45;
}
.rental-discounts__scale {
    display: grid;
    grid-template-columns: repeat(11, minmax(72px, 1fr));
    gap: 8px;
}
.rental-discounts__item {
    min-height: 74px;
    padding: 10px 8px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--surface-border);
    background: rgba(255,255,255,0.04);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    text-align: center;
}
.rental-discounts__item span {
    color: var(--text-secondary);
    font-size: 12px;
    line-height: 1.2;
}
.rental-discounts__item strong {
    color: var(--primary-light);
    font-size: 20px;
    line-height: 1;
}
.rental-discounts__item--max {
    border-color: rgba(249,115,22,0.38);
    background: rgba(249,115,22,0.13);
}
.rental-discounts__item--max strong {
    color: var(--accent-light);
}

/* === ADVANTAGES === */
.advantages {
    padding: 80px 0;
    background: var(--bg-secondary);
}
.advantages__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.advantage-card {
    padding: 32px 24px;
    background: var(--surface);
    border: 1px solid var(--surface-border);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
}
.advantage-card:hover {
    transform: translateY(-4px);
    border-color: rgba(14,165,233,0.2);
    box-shadow: var(--shadow-glow);
}
.advantage-card__icon {
    font-size: 40px;
    margin-bottom: 16px;
}
.advantage-card__title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}
.advantage-card__text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* === PROCESS === */
.process {
    padding: 80px 0;
}
.process__timeline {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}
.process__timeline::before {
    content: '';
    position: absolute;
    left: 32px;
    top: 56px;
    bottom: 56px;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary), var(--accent));
    opacity: 0.3;
}
.process-step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding: 24px 0;
    position: relative;
}
.process-step__number {
    width: 64px; height: 64px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-light);
    background: rgba(14,165,233,0.1);
    border: 2px solid rgba(14,165,233,0.3);
    border-radius: 50%;
    position: relative;
    z-index: 2;
}
.process-step__title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
}
.process-step__text {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* === FAQ === */
.faq {
    padding: 80px 0;
    background: var(--bg-secondary);
}
.faq__list {
    max-width: 750px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.faq-item {
    background: var(--surface);
    border: 1px solid var(--surface-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}
.faq-item:hover { border-color: rgba(14,165,233,0.2); }
.faq-item__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    gap: 16px;
}
.faq-item__icon {
    flex-shrink: 0;
    transition: var(--transition);
    color: var(--text-muted);
}
.faq-item.active .faq-item__icon { transform: rotate(180deg); color: var(--primary); }
.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item__answer p {
    padding: 0 24px 18px;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}
.faq-item.active .faq-item__answer { max-height: 300px; }

/* === CONTACT === */
.contact {
    padding: 80px 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(14,165,233,0.06), transparent 50%),
                radial-gradient(ellipse at 70% 50%, rgba(249,115,22,0.04), transparent 50%),
                var(--bg-primary);
}
.contact__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.contact__title {
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 800;
    margin-bottom: 12px;
}
.contact__subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}
.contact__details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.contact__detail {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: var(--surface);
    border: 1px solid var(--surface-border);
    border-radius: var(--radius-md);
    transition: var(--transition);
    color: var(--text-primary);
}
.contact__detail:hover {
    border-color: rgba(14,165,233,0.3);
    background: var(--surface-hover);
    color: var(--text-primary);
}
.contact__detail-icon {
    width: 44px; height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(14,165,233,0.1);
    border-radius: var(--radius-sm);
    color: var(--primary);
    flex-shrink: 0;
}
.contact__detail-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.contact__detail-value {
    font-size: 15px;
    font-weight: 600;
}

/* === FORMS === */
.contact__form-wrapper {
    background: var(--surface);
    border: 1px solid var(--surface-border);
    border-radius: var(--radius-xl);
    padding: 32px;
    backdrop-filter: blur(20px);
}
.contact__form-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
}
.form-group { margin-bottom: 16px; }
.form-label {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 6px;
    font-weight: 500;
}
.form-input {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--surface-border);
    border-radius: var(--radius-md);
    font-size: 15px;
    color: var(--text-primary);
    transition: var(--transition);
    outline: none;
}
.form-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(14,165,233,0.15);
}
.form-input::placeholder { color: var(--text-muted); }
.form-textarea { resize: vertical; min-height: 80px; }
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.form-checkbox { margin-bottom: 20px; }
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: none;
    font-size: 13px;
    color: var(--text-secondary);
}
.checkbox-label input { 
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}
.checkbox-custom {
    width: 18px; height: 18px;
    flex-shrink: 0;
    border: 2px solid var(--surface-border);
    border-radius: 4px;
    transition: var(--transition);
    position: relative;
    margin-top: 2px;
}
.checkbox-label input:focus + .checkbox-custom {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(14,165,233,0.15);
}
.checkbox-label input:checked + .checkbox-custom {
    background: var(--primary);
    border-color: var(--primary);
}
.checkbox-label input:checked + .checkbox-custom::after {
    content: '\2713';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-size: 13px;
    color: #fff;
    font-weight: 700;
}
.checkbox-text { line-height: 1.4; }
.checkbox-text a { color: var(--primary); }

/* === FOOTER === */
.footer {
    padding: 32px 0;
    border-top: 1px solid var(--surface-border);
    background: var(--bg-secondary);
}
.footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.footer__logo {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-primary);
}
.footer__logo span { color: var(--primary); }
.footer__logo:hover { color: var(--text-primary); }
.footer__copy {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px;
}
.footer__center {
    display: flex;
    gap: 20px;
}
.footer__legal {
    font-size: 13px;
    color: var(--text-muted);
}
.footer__legal:hover { color: var(--primary); }
.footer__right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}
.footer__contact {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}
.footer__contact:hover { color: var(--primary-light); }

/* === STICKY CTA (mobile) === */
.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 900;
    padding: 12px 16px;
    background: rgba(12,18,32,0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--surface-border);
    gap: 10px;
}
.sticky-cta__phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    background: var(--surface);
    border: 1px solid var(--surface-border);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 600;
    flex: 1;
}
.sticky-cta__book { flex: 1; }

/* === MODAL === */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}
.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}
.modal {
    background: var(--bg-tertiary);
    border: 1px solid var(--surface-border);
    border-radius: var(--radius-xl);
    padding: 32px;
    max-width: 480px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(20px) scale(0.95);
    transition: var(--transition);
}
.modal-overlay.active .modal {
    transform: translateY(0) scale(1);
}
.modal__close {
    position: absolute;
    top: 16px; right: 16px;
    width: 36px; height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--surface);
    color: var(--text-muted);
    transition: var(--transition);
}
.modal__close:hover {
    background: var(--surface-hover);
    color: var(--text-primary);
}
.modal__header { margin-bottom: 24px; }
.modal__title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}
.modal__equipment {
    font-size: 15px;
    color: var(--accent-light);
    font-weight: 600;
    padding: 8px 14px;
    background: rgba(249,115,22,0.1);
    border-radius: var(--radius-sm);
    display: inline-block;
}
.modal--success {
    text-align: center;
    max-width: 400px;
}
.modal__success-icon {
    font-size: 56px;
    margin-bottom: 16px;
}
.modal__text {
    color: var(--text-secondary);
    font-size: 15px;
    margin-bottom: 24px;
}

/* === LEGAL POPUPS === */
.legal-popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 3000;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}
.legal-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}
.legal-popup {
    background: var(--bg-tertiary);
    border: 1px solid var(--surface-border);
    border-radius: var(--radius-xl);
    max-width: 640px;
    width: 100%;
    max-height: 80vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.legal-popup__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid var(--surface-border);
}
.legal-popup__header h3 {
    font-size: 18px;
    font-weight: 700;
}
.legal-popup__close {
    width: 36px; height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--surface);
    color: var(--text-muted);
    transition: var(--transition);
}
.legal-popup__close:hover {
    color: var(--text-primary);
    background: var(--surface-hover);
}
.legal-popup__body {
    padding: 24px;
    overflow-y: auto;
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-secondary);
}
.legal-popup__body h4 {
    color: var(--text-primary);
    margin: 16px 0 8px;
    font-size: 15px;
}
.legal-popup__body p { margin-bottom: 12px; }

/* === COOKIE BANNER === */
.cookie-banner {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 1500;
    padding: 16px 20px;
    background: rgba(26,35,50,0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--surface-border);
    transform: translateY(100%);
    transition: var(--transition-slow);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner__inner {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.cookie-banner__text {
    font-size: 13px;
    color: var(--text-secondary);
    flex: 1;
}

/* === REVEAL ANIMATIONS === */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === LOADING ANIMATION === */
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* === WATER PARTICLES === */
.water-particle {
    position: absolute;
    width: 4px; height: 4px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    animation: rise 4s ease-in infinite;
}
@keyframes rise {
    0% { opacity: 0; transform: translateY(0) scale(0); }
    10% { opacity: 0.6; transform: translateY(-10px) scale(1); }
    90% { opacity: 0.2; transform: translateY(-200px) scale(0.5); }
    100% { opacity: 0; transform: translateY(-250px) scale(0); }
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .header__nav { display: none; }
    .header__burger { display: flex; }
    .header__nav.active {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(12,18,32,0.98);
        backdrop-filter: blur(20px);
        align-items: center;
        justify-content: center;
        gap: 24px;
        z-index: 1000;
    }
    .header__nav.active .header__nav-link {
        font-size: 22px;
        font-weight: 600;
        color: var(--text-primary);
    }
    .header__phone span { display: none; }
    .hero__inner { grid-template-columns: 1fr; text-align: center; }
    .hero__content { max-width: 100%; }
    .hero__actions { justify-content: center; }
    .hero__stats { justify-content: center; }
    .hero__visual { display: none; }
    .packages__grid { grid-template-columns: 1fr 1fr; }
    .advantages__grid { grid-template-columns: 1fr 1fr; }
    .contact__inner { grid-template-columns: 1fr; }
    .rental-discounts__header { grid-template-columns: 1fr; }
    .rental-discounts__scale { grid-template-columns: repeat(6, 1fr); }
}

@media (max-width: 768px) {
    .packages__grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .advantages__grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .catalog__grid { grid-template-columns: 1fr 1fr; }
    .catalog__grid--boats { grid-template-columns: 1fr 1fr; }
    .hero__title { font-size: clamp(30px, 8vw, 44px); }
    .hero__actions { flex-direction: column; align-items: center; }
    .hero__stats { gap: 24px; }
    .hero__stat-value { font-size: 26px; }
    .rental-discounts { padding: 18px; }
    .rental-discounts__scale { grid-template-columns: repeat(3, 1fr); }
    .rental-discounts__title { font-size: 18px; }
    .process-step__number { width: 50px; height: 50px; font-size: 16px; }
    .process__timeline::before { left: 24px; }
    .footer__inner {
        flex-direction: column;
        text-align: center;
    }
    .footer__right { align-items: center; }
    .footer__center { flex-direction: column; gap: 8px; }
    .sticky-cta { display: flex; }
    .form-row { grid-template-columns: 1fr; }
    .contact__form-wrapper { padding: 24px 20px; }
    .cookie-banner__inner { flex-direction: column; text-align: center; }
    .package-table {
        margin: 0 -20px;
        border-left: 0;
        border-right: 0;
        border-radius: 0;
    }
    .package-table__table {
        min-width: 1040px;
        font-size: 12px;
    }
    .package-table__table th:first-child,
    .package-table__table td:first-child {
        width: 230px;
        max-width: 230px;
    }
}

@media (max-width: 480px) {
    .catalog__grid { grid-template-columns: 1fr; }
    .catalog__grid--boats { grid-template-columns: 1fr; }
    .header__cta { display: none; }
    .hero { padding: 100px 0 60px; }
    .catalog, .advantages, .process, .faq, .packages, .contact { padding: 60px 0; }
    .section-header { margin-bottom: 32px; }
    .product-card__description { min-height: auto; }
    .rental-discounts__scale { grid-template-columns: repeat(2, 1fr); }
    body { padding-bottom: 70px; }
}

/* === SCROLLBAR === */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb {
    background: var(--bg-tertiary);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: var(--text-muted); }

/* === SELECTION === */
::selection {
    background: rgba(14,165,233,0.3);
    color: var(--text-primary);
}

/* === DELIVERY BANNER === */
.delivery-banner {
    padding: 0;
    margin: 0;
}
.delivery-banner__inner {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 28px 32px;
    background: linear-gradient(135deg, rgba(14,165,233,0.1), rgba(249,115,22,0.08));
    border: 1px solid rgba(14,165,233,0.2);
    border-radius: var(--radius-xl);
    margin: 40px auto;
    max-width: var(--container);
}
.delivery-banner__icon {
    font-size: 48px;
    flex-shrink: 0;
}
.delivery-banner__title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}
.delivery-banner__text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}
.delivery-banner__text a {
    color: var(--accent-light);
    font-weight: 600;
}
.delivery-banner__btn {
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .delivery-banner__inner {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
        margin: 20px 16px;
    }
    .delivery-banner__btn { width: 100%; }
}

/* === MOTIVATION CARDS === */
.contact__motivation {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}
.motivation-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 18px;
    background: rgba(249,115,22,0.06);
    border: 1px solid rgba(249,115,22,0.15);
    border-radius: var(--radius-md);
    transition: var(--transition);
}
.motivation-card:hover {
    border-color: rgba(249,115,22,0.3);
    background: rgba(249,115,22,0.1);
}
.motivation-card__icon {
    font-size: 28px;
    flex-shrink: 0;
    margin-top: 2px;
}
.motivation-card__title {
    font-size: 15px;
    font-weight: 700;
    color: var(--accent-light);
    margin-bottom: 2px;
}
.motivation-card__text {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* === TOAST NOTIFICATIONS === */
.toast-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10001;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    background: rgba(239, 68, 68, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(239, 68, 68, 0.5);
    border-radius: var(--radius-md);
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    color: #fff;
    font-family: var(--font);
    font-size: 14px;
    font-weight: 500;
    transform: translateX(120%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    max-width: 400px;
}
.toast-notification.visible {
    transform: translateX(0);
    opacity: 1;
}
.toast--success {
    background: rgba(34, 197, 94, 0.95);
    border-color: rgba(34, 197, 94, 0.5);
}
.toast__icon {
    font-size: 20px;
    flex-shrink: 0;
}
.toast__text {
    line-height: 1.4;
}

@media (max-width: 480px) {
    .toast-notification {
        right: 10px;
        left: 10px;
        max-width: none;
    }
}

/* === FLOATING ACTION BUTTON === */
.fab-wrapper {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.fab-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.fab-wrapper.active .fab-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.fab-menu__item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: all 0.2s ease;
}
.fab-menu__item:hover { transform: scale(1.1); color: #fff; }
.fab-menu__item--max { background: linear-gradient(135deg, #5b6cff 0%, #6a5cff 30%, #8b4cff 55%, #b34cff 75%, #2dd4ff 100%); }
.fab-menu__item--tg { background: #0088cc; }
.fab-menu__item--wa { background: #25D366; }

.fab-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    border: none;
    box-shadow: 0 4px 16px rgba(14, 165, 233, 0.4);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}
.fab-button:hover {
    transform: scale(1.05);
    background: var(--primary-light);
}
.fab-icon-close {
    position: absolute;
    opacity: 0;
    transform: rotate(-90deg) scale(0.5);
    transition: all 0.3s ease;
}
.fab-icon-open {
    position: absolute;
    opacity: 1;
    transform: rotate(0) scale(1);
    transition: all 0.3s ease;
}
.fab-wrapper.active .fab-icon-open {
    opacity: 0;
    transform: rotate(90deg) scale(0.5);
}
.fab-wrapper.active .fab-icon-close {
    opacity: 1;
    transform: rotate(0) scale(1);
}

@media (max-width: 768px) {
    .fab-wrapper { bottom: 85px; right: 16px; }
}

/* ============================================================
   PHOTO GALLERY SECTIONS
   ============================================================ */

/* === 1. PHOTO MARQUEE STRIP (after Hero) === */
.photo-marquee {
    padding: 0 0 60px;
    overflow: hidden;
    position: relative;
    background: var(--bg-primary);
}
.photo-marquee::before,
.photo-marquee::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 120px;
    z-index: 5;
    pointer-events: none;
}
.photo-marquee::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-primary), transparent);
}
.photo-marquee::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-primary), transparent);
}
.photo-marquee__track {
    display: flex;
    gap: 16px;
    animation: marquee-scroll 45s linear infinite;
    width: max-content;
}
.photo-marquee__track:hover {
    animation-play-state: paused;
}
.photo-marquee__item {
    flex-shrink: 0;
    width: 320px;
    height: 220px;
    padding: 0;
    background: transparent;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    border: 1px solid var(--surface-border);
    transition: var(--transition);
    cursor: pointer;
}
.photo-marquee__item:hover {
    transform: scale(1.03);
    border-color: rgba(14,165,233,0.4);
    box-shadow: var(--shadow-glow);
}
.photo-marquee__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.photo-marquee__item:hover img {
    transform: scale(1.08);
}
.photo-marquee__item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(12,18,32,0.4), transparent 50%);
    pointer-events: none;
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
    .photo-marquee__item {
        width: 240px;
        height: 170px;
    }
}

/* === 2. MAIN PHOTO GALLERY (masonry with filters) === */
.photo-gallery {
    padding: 80px 0;
    background: var(--bg-secondary);
    position: relative;
}
.photo-gallery__filters {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.photo-gallery__filter {
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 50px;
    background: var(--surface);
    border: 1px solid var(--surface-border);
    color: var(--text-secondary);
    transition: var(--transition);
}
.photo-gallery__filter:hover {
    background: var(--surface-hover);
    color: var(--text-primary);
}
.photo-gallery__filter.active {
    background: rgba(14,165,233,0.15);
    border-color: var(--primary);
    color: var(--primary-light);
}
.photo-gallery__grid {
    columns: 4 240px;
    column-gap: 12px;
    max-width: 1200px;
    margin: 0 auto;
}
.photo-gallery__item {
    display: inline-block;
    width: 100%;
    margin: 0 0 12px;
    padding: 0;
    background: transparent;
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
    border: 1px solid var(--surface-border);
    transition: var(--transition);
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
}
.photo-gallery__item--wide {
    aspect-ratio: 5/3;
}
.photo-gallery__item--tall {
    aspect-ratio: 3/4.6;
}
.photo-gallery__item:hover {
    transform: translateY(-4px);
    border-color: rgba(14,165,233,0.4);
    box-shadow: var(--shadow-glow);
    z-index: 2;
}
.photo-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.photo-gallery__item:hover img {
    transform: scale(1.08);
}
.photo-gallery__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(12,18,32,0.7) 0%, transparent 50%);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 16px;
    pointer-events: none;
}
.photo-gallery__item:hover .photo-gallery__overlay {
    opacity: 1;
}
.photo-gallery__caption {
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}
.photo-gallery__zoom {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.5);
    width: 48px;
    height: 48px;
    background: rgba(14,165,233,0.8);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}
.photo-gallery__item:hover .photo-gallery__zoom {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}
.photo-gallery__item[data-hidden="true"] {
    display: none;
}
.photo-gallery__show-more {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

@media (max-width: 1024px) {
    .photo-gallery__grid {
        columns: 3 220px;
    }
}
@media (max-width: 768px) {
    .photo-gallery__grid {
        columns: 2 160px;
        column-gap: 8px;
    }
    .photo-gallery__item { margin-bottom: 8px; }
    .photo-gallery__item--wide {
        aspect-ratio: 4/3;
    }
    .photo-gallery__item--tall {
        aspect-ratio: 3/4;
    }
}

/* === 3. PHOTO BANNER (full-width cinematic strip) === */
.photo-banner {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    background: var(--bg-primary);
}
.photo-banner__inner {
    display: grid;
    grid-template-columns: 1fr 1.8fr 1fr;
    gap: 12px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    align-items: center;
}
.photo-banner__side {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.photo-banner__img {
    display: block;
    width: 100%;
    padding: 0;
    background: transparent;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    border: 1px solid var(--surface-border);
    transition: var(--transition);
}
.photo-banner__img:hover {
    border-color: rgba(249,115,22,0.3);
    box-shadow: var(--shadow-accent-glow);
}
.photo-banner__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}
.photo-banner__img:hover img {
    transform: scale(1.05);
}
.photo-banner__center {
    display: block;
    width: 100%;
    padding: 0;
    background: transparent;
    text-align: left;
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 2px solid rgba(14,165,233,0.2);
    box-shadow: var(--shadow-glow);
    aspect-ratio: 16/10;
}
.photo-banner__center img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.photo-banner__center-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(12,18,32,0.6), transparent 40%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
}
.photo-banner__center-text {
    color: #fff;
}
.photo-banner__center-text h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
}
.photo-banner__center-text p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}
.photo-banner__side .photo-banner__img {
    height: calc(50% - 6px);
}
.photo-banner__side .photo-banner__img img {
    height: 200px;
}

@media (max-width: 768px) {
    .photo-banner__inner {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .photo-banner__side {
        flex-direction: row;
    }
    .photo-banner__side .photo-banner__img {
        flex: 1;
        height: auto;
    }
    .photo-banner__side .photo-banner__img img {
        height: 150px;
    }
}

@media (max-width: 480px) {
    .photo-gallery {
        padding: 56px 0;
    }
    .photo-gallery__filters {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 4px;
    }
    .photo-gallery__filter {
        flex: 0 0 auto;
    }
    .lightbox__nav {
        width: 44px;
        height: 44px;
    }
    .lightbox__nav--prev { left: 10px; }
    .lightbox__nav--next { right: 10px; }
    .lightbox__close {
        top: 12px;
        right: 12px;
    }
}

/* === 4. LIGHTBOX === */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    backdrop-filter: blur(20px);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    padding: 20px;
}
.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}
.lightbox-overlay.active .lightbox__img {
    transform: scale(1);
}
.lightbox__img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    object-fit: contain;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.lightbox__close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: var(--transition);
    cursor: pointer;
    z-index: 10;
}
.lightbox__close:hover {
    background: rgba(255,255,255,0.2);
    transform: rotate(90deg);
}
.lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: var(--transition);
    cursor: pointer;
}
.lightbox__nav:hover {
    background: rgba(14,165,233,0.3);
    border-color: var(--primary);
}
.lightbox__nav--prev { left: 20px; }
.lightbox__nav--next { right: 20px; }
.lightbox__counter {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    font-weight: 500;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
}

@media (max-width: 480px) {
    .lightbox__nav {
        width: 44px;
        height: 44px;
    }
    .lightbox__nav--prev { left: 10px; }
    .lightbox__nav--next { right: 10px; }
    .lightbox__close {
        top: 12px;
        right: 12px;
    }
}
