/* =====================================================
   SHARK DETAILING вЂ” Premium Website Styles
   ===================================================== */

/* CSS Variables / Design Tokens */
:root {
    /* Colors - Custom Ocean Theme */
    --bg-primary: #0a1821;
    --bg-secondary: #0f2230;
    --bg-card: #123c53;
    --bg-card-hover: #1a4a65;

    /* Accent colors - Custom palette */
    --accent-gold: #5488a4;
    --accent-gold-light: #8cb5cb;
    --accent-gold-dark: #2d627f;
    --accent-gradient: linear-gradient(135deg, var(--accent-gold-dark), var(--accent-gold), var(--accent-gold-light));

    /* Secondary colors */
    --ocean-deep: #123c53;
    --ocean-surface: #8cb5cb;
    --ocean-foam: #cfe1ea;

    --text-primary: #f5f5f5;
    --text-secondary: #cfe1ea;
    --text-muted: #8cb5cb;

    --border-color: rgba(84, 136, 164, 0.2);
    --border-color-hover: rgba(140, 181, 203, 0.35);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 40px rgba(84, 136, 164, 0.25);

    /* Spacing */
    --section-padding: 100px;
    --container-max: 1200px;
    --container-padding: 24px;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
}

/* Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul,
ol {
    list-style: none;
}

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Typography */
.accent {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* =====================================================
   NAVIGATION
   ===================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 16px 0;
    transition: all var(--transition-base);
}

.navbar.scrolled {
    background: rgba(10, 10, 15, 0.95);
    padding: 12px 0;
}

.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    color: var(--accent-gold);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 18px;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: width var(--transition-base);
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 10px 16px;
    font-size: 14px;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    margin-right: -10px;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all var(--transition-base);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.btn-primary {
    background: var(--accent-gradient);
    color: #111;
    box-shadow: var(--shadow-sm), var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md), 0 0 60px rgba(84, 136, 164, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    border-color: var(--accent-gold);
    background: rgba(84, 136, 164, 0.1);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #4ade80, #22c55e, #16a34a);
    color: white;
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md), 0 0 40px rgba(74, 222, 128, 0.4);
}

.btn-telegram {
    background: linear-gradient(135deg, #60a5fa, #3b82f6, #2563eb);
    color: white;
}

.btn-telegram:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md), 0 0 40px rgba(59, 130, 246, 0.4);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 16px;
}

/* =====================================================
   HERO SECTION
   ===================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(84, 136, 164, 0.1), transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(2, 62, 138, 0.15), transparent 60%),
        linear-gradient(180deg,
            rgba(4, 10, 16, 0.4) 0%,
            rgba(4, 10, 16, 0.6) 50%,
            rgba(4, 10, 16, 0.95) 100%);
}

.hero-content {
    position: relative;
    text-align: center;
    padding: 120px 0 100px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 100px;
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(40px, 8vw, 80px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.title-line {
    display: block;
}

.title-line.accent {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-secondary);
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-color);
}

.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
    animation: bounce 2s infinite;
}

.scroll-indicator svg {
    width: 20px;
    height: 20px;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(8px);
    }
}

/* =====================================================
   SECTIONS COMMON
   ===================================================== */
.section {
    padding: var(--section-padding) 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(84, 136, 164, 0.1);
    border: 1px solid rgba(84, 136, 164, 0.25);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* =====================================================
   SERVICES SECTION
   ===================================================== */
.services {
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.service-card {
    position: relative;
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4ade80, #22c55e, #60a5fa, #3b82f6, #8cb5cb);
    background-size: 200% 100%;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transition: left 0.6s ease;
}

.service-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(74, 222, 128, 0.4);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg), 0 0 40px rgba(74, 222, 128, 0.15);
}

.service-card:hover::before {
    transform: scaleX(1);
    animation: gradient-flow 1.5s ease infinite;
}

.service-card:hover::after {
    left: 100%;
}

@keyframes gradient-flow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.service-card.featured {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(84, 136, 164, 0.08), rgba(2, 62, 138, 0.05));
    border-color: rgba(84, 136, 164, 0.2);
}

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(84, 136, 164, 0.1);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
}

.service-icon svg {
    width: 28px;
    height: 28px;
    color: var(--accent-gold);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}

.service-features {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    font-size: 14px;
    color: var(--text-secondary);
}

.service-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent-gold);
    border-radius: 50%;
}

.services-cta {
    text-align: center;
    margin-top: 48px;
}

/* =====================================================
   GALLERY SECTION
   ===================================================== */
.gallery {
    background: var(--bg-secondary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.gallery-grid.three-columns {
    grid-template-columns: repeat(3, 1fr);
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}

.gallery-item.ba-item {
    aspect-ratio: auto;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.ba-caption {
    text-align: center;
    padding: 16px;
    background: var(--bg-card);
    font-weight: 600;
    font-size: 15px;
    color: var(--text-primary);
    border-top: 1px solid var(--border-color);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    font-size: 14px;
    font-weight: 600;
    color: white;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

/* Before/After Slider */
.before-after-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--bg-card);
}

.ba-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.ba-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.ba-after {
    z-index: 1;
}

.ba-before {
    z-index: 2;
    clip-path: inset(0 50% 0 0);
}

.ba-label {
    position: absolute;
    bottom: 16px;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: white;
    z-index: 5;
}

.ba-before .ba-label {
    left: 16px;
}

.ba-after .ba-label {
    right: 16px;
}

.ba-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: ew-resize;
    z-index: 10;
    touch-action: none;
}

.ba-handle-line {
    flex: 1;
    width: 3px;
    background: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.ba-handle-circle {
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    flex-shrink: 0;
}

.ba-handle-circle svg {
    width: 24px;
    height: 24px;
    color: var(--bg-primary);
}

.gallery-cta {
    text-align: center;
    margin-top: 48px;
}

/* Fullscreen Before/After Modal */
.ba-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.ba-modal.active {
    opacity: 1;
    visibility: visible;
}

.ba-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10001;
}

.ba-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.ba-modal-close svg {
    width: 24px;
    height: 24px;
    color: white;
}

.ba-modal-content {
    width: 100%;
    max-width: 90vw;
    max-height: 75vh;
}

.ba-modal-content .before-after-slider {
    width: 100%;
    height: 75vh;
    max-height: 75vh;
    aspect-ratio: auto;
    border-radius: var(--radius-xl);
}

.ba-modal-content .ba-handle-circle {
    width: 64px;
    height: 64px;
}

.ba-modal-content .ba-handle-circle svg {
    width: 32px;
    height: 32px;
}

.ba-modal-content .ba-label {
    font-size: 16px;
    padding: 12px 24px;
}

.ba-modal-caption {
    margin-top: 24px;
    font-size: 20px;
    font-weight: 600;
    color: white;
    text-align: center;
}

@media (max-width: 768px) {
    .ba-modal-content .before-after-slider {
        height: 60vh;
        max-height: 60vh;
    }

    .ba-modal-close {
        top: 10px;
        right: 10px;
    }
}

/* =====================================================
   ABOUT SECTION
   ===================================================== */
.about {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
align-items:end;
}

.about-content .section-tag,
.about-content .section-title {
    text-align: left;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
}

.value-card {
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.value-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-color-hover);
    transform: translateX(8px);
}

.value-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.value-card h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.value-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}

.about-brands {
    padding: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
}

.brands-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
}

.brands-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.brand-tag {
    padding: 10px 20px;
    background: rgba(84, 136, 164, 0.1);
    border: 1px solid rgba(84, 136, 164, 0.2);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    color: var(--accent-gold-light);
    transition: all var(--transition-base);
}

.brand-tag:hover {
    background: rgba(84, 136, 164, 0.2);
    transform: translateY(-2px);
}

/* About Logo Showcase */
.about-logo-showcase {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    margin-top: 32px;
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.03) 0%, transparent 50%, rgba(74, 222, 128, 0.03) 100%);
    border-top: 1px solid var(--border-color);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    position: relative;
}

.about-logo-showcase::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(74, 222, 128, 0.08), transparent 70%);
    pointer-events: none;
}

.showcase-logo {
    max-width: 320px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 40px rgba(74, 222, 128, 0.3));
    animation: logo-float 4s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

@keyframes logo-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@media (max-width: 768px) {
    .showcase-logo {
        max-width: 200px;
    }

    .about-logo-showcase {
        padding: 40px;
    }
}

/* VIDEO SECTION */
.video-section {
    background: var(--bg-primary);
}

.video-section .container {
    max-width: 1600px;
}

.video-slider-wrap {
    position: relative;
    width: 100%;
}

.video-grid {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding: 0 56px 12px;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.video-grid::-webkit-scrollbar {
    display: none;
}

.video-card {
    flex: 0 0 260px;
    min-width: 260px;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    scroll-snap-align: start;
    transition: transform var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base), filter var(--transition-base);
}

.video-card video {
    width: 100%;
    aspect-ratio: 9 / 16;
    object-fit: cover;
    display: block;
}

.video-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-color-hover);
    box-shadow: var(--shadow-md);
}

.video-card.active {
    border-color: var(--accent-gold);
    box-shadow: 0 0 30px rgba(84, 136, 164, 0.45);
    transform: translateY(-6px) scale(1.03);
}

.video-card.active video {
    filter: brightness(1.08);
}

.video-card.active:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 0 30px rgba(84, 136, 164, 0.45);
    transform: translateY(-6px) scale(1.03);
}

.video-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(10, 24, 33, 0.88);
    color: #fff;
    font-size: 30px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: transform var(--transition-base), background var(--transition-base), border-color var(--transition-base);
}

.video-nav:hover {
    transform: translateY(-50%) scale(1.06);
    background: rgba(18, 60, 83, 0.95);
    border-color: rgba(255, 255, 255, 0.24);
}

.video-nav-left {
    left: 8px;
}

.video-nav-right {
    right: 8px;
}

@media (max-width: 1200px) {
    .video-card {
        flex: 0 0 230px;
        min-width: 230px;
    }
}

@media (max-width: 768px) {
    .video-grid {
        gap: 16px;
        padding: 0 44px 10px;
    }

    .video-card {
        flex: 0 0 210px;
        min-width: 210px;
    }

    .video-nav {
        width: 40px;
        height: 40px;
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .video-grid {
        gap: 14px;
        padding: 0 40px 10px;
    }

    .video-card {
        flex: 0 0 190px;
        min-width: 190px;
    }

    .video-nav {
        width: 36px;
        height: 36px;
        font-size: 24px;
    }
}
/* =====================================================
   CONTACTS SECTION
   ===================================================== */
.contacts {
    background: var(--bg-secondary);
}

.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    min-height: 500px;
}

.contacts-info .section-tag,
.contacts-info .section-title {
    text-align: left;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.contact-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-color-hover);
    transform: translateX(4px);
}

.contact-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 165, 92, 0.1);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: var(--accent-gold);
}

.contact-details {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.contact-value {
    font-size: 16px;
    font-weight: 600;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.social-link {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.social-link svg {
    width: 22px;
    height: 22px;
    transition: color var(--transition-base);
}

.social-link.whatsapp:hover {
    background: #25D366;
    border-color: #25D366;
}

.social-link.telegram:hover {
    background: #0088cc;
    border-color: #0088cc;
}

.social-link.telegram-channel:hover {
    background: #0088cc;
    border-color: #0088cc;
}

.social-link:hover svg {
    color: white;
}

.contact-cta {
    margin-top: 24px;
    width: 100%;
}

.contacts-map {
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.contacts-map iframe {
    display: block;
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
    background: var(--bg-primary);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 40px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 32px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.footer-tagline {
    font-size: 14px;
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.footer-links a {
    font-size: 15px;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
    width: 100%;
}

.footer-bottom p {
    font-size: 14px;
    color: var(--text-muted);
}

/* =====================================================
   ANIMATIONS
   ===================================================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =====================================================
   RESPONSIVE DESIGN
   ===================================================== */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }

    .service-card.featured {
        grid-column: span 1;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contacts-grid {
        grid-template-columns: 1fr;
    }

    .contacts-map {
        height: 400px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
        --container-padding: 20px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--bg-secondary);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 24px;
        transition: right var(--transition-base);
        border-left: 1px solid var(--border-color);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-link {
        font-size: 20px;
    }

    .nav-cta {
        margin-left: 0;
        margin-top: 16px;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }

    .stat-divider {
        display: none;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .btn-lg {
        padding: 16px 28px;
        font-size: 15px;
    }

    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }

    .section-title {
        font-size: 28px;
    }

    .gallery-grid,
    .gallery-grid.three-columns {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .before-after-slider {
        aspect-ratio: 1/1;
    }

    .ba-caption {
        font-size: 16px;
        padding: 20px;
    }

    .ba-label {
        font-size: 14px;
        padding: 10px 18px;
    }

    .ba-handle-circle {
        width: 56px;
        height: 56px;
    }

    .ba-handle-circle svg {
        width: 28px;
        height: 28px;
    }

    .brands-list {
        gap: 8px;
    }

    .brand-tag {
        padding: 8px 14px;
        font-size: 13px;
    }
}

/* =====================================================
   UTILITY CLASSES
   ===================================================== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* =====================================================
   COOKIE CONSENT BANNER
   ===================================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 16px 24px;
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cookie-content p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

.cookie-link {
    color: var(--accent-gold);
    text-decoration: underline;
}

.cookie-link:hover {
    color: var(--accent-gold-light);
}

.cookie-accept {
    flex-shrink: 0;
    padding: 12px 24px;
    background: var(--accent-gradient);
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--bg-primary);
    cursor: pointer;
    transition: all var(--transition-base);
}

.cookie-accept:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(84, 136, 164, 0.3);
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-accept {
        width: 100%;
    }
}

/* =====================================================
   FLOATING PHONE BUTTON
   ===================================================== */
.floating-phone {
    position: fixed;
    bottom: 100px;
    right: 24px;
    z-index: 9998;
    width: 60px;
    height: 60px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md), 0 0 20px rgba(84, 136, 164, 0.4);
    transition: all var(--transition-base);
    animation: phone-pulse 2s infinite;
}

.floating-phone:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg), 0 0 30px rgba(84, 136, 164, 0.6);
}

.floating-phone svg {
    width: 28px;
    height: 28px;
    color: white;
}

.phone-tooltip {
    position: absolute;
    right: 70px;
    background: var(--bg-card);
    padding: 10px 16px;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
}

.floating-phone:hover .phone-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

@keyframes phone-pulse {

    0%,
    100% {
        box-shadow: var(--shadow-md), 0 0 20px rgba(84, 136, 164, 0.4);
    }

    50% {
        box-shadow: var(--shadow-md), 0 0 35px rgba(84, 136, 164, 0.6);
    }
}

@media (max-width: 768px) {
    .floating-phone {
        bottom: 90px;
        right: 16px;
        width: 56px;
        height: 56px;
    }

    .phone-tooltip {
        display: none;
    }
}
.gallery-cta{
    display:flex;
    justify-content:center;
}

.gallery-cta .btn{
    max-width:100%;
    text-align:center;
}
/* POLICY PAGE FIX */
.policy-page .policy-main {
    padding-top: 140px;
}

.policy-page .policy-card {
    margin-top: 0;
}
.policy-page .policy-main {
    padding-top: 160px;
}
.policy-back {
    margin-top: 40px;
    display: inline-block;
}
/* POLICY PAGE IMPROVEMENTS */

.policy-content {
    max-width: 720px;
    margin: 0 auto;
}

.policy-content p {
    line-height: 1.75;
}

.policy-content h2 {
    margin-top: 40px;
    margin-bottom: 16px;
}

.policy-sublist li {
    margin-bottom: 8px;
}

.policy-back {
    margin-top: 40px;
    display: inline-block;
}