/* Font Faces */
@font-face {
    font-family: 'Unbounded';
    font-weight: 200;
    font-style: normal;
    font-display: swap;
    src: url('../font/Unbounded-ExtraLight.woff2') format('woff2'),
         url('../font/Unbounded-ExtraLight.woff') format('woff'),
         url('../font/Unbounded-ExtraLight.ttf') format('truetype');
}

@font-face {
    font-family: 'Unbounded';
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    src: url('../font/Unbounded-Regular.woff2') format('woff2'),
         url('../font/Unbounded-Regular.woff') format('woff'),
         url('../font/Unbounded-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Unbounded';
    font-weight: 700;
    font-style: normal;
    font-display: swap;
    src: url('../font/Unbounded-Bold.woff2') format('woff2'),
         url('../font/Unbounded-Bold.woff') format('woff'),
         url('../font/Unbounded-Bold.ttf') format('truetype');
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Unbounded', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 200;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Progress Bar */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(67, 28, 114, 0.2);
    z-index: 100000;
}

.progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #431c72 0%, #6b3fa8 100%);
    transition: width 0.1s ease;
    box-shadow: 0 0 10px rgba(67, 28, 114, 0.5);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(67, 28, 114, 0.1);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #431c72 0%, #6b3fa8 100%);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #6b3fa8 0%, #431c72 100%);
}

/* Floating Buttons */
.floating-buttons-left {
    position: fixed;
    left: 20px;
    bottom: 100px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.floating-buttons-left.visible {
    opacity: 1;
    visibility: visible;
}

.floating-buttons-right {
    position: fixed;
    right: 20px;
    bottom: 100px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 10001;
}

.floating-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.4);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.floating-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    animation: buttonShine 3s ease-in-out infinite;
}

@keyframes buttonShine {
    0%, 100% {
        left: -100%;
    }
    50%, 100% {
        left: 100%;
    }
}

.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(67, 28, 114, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.floating-btn:hover::before {
    animation: buttonShine 0.8s ease-in-out;
}

.floating-btn svg {
    width: 24px;
    height: 24px;
    position: relative;
    z-index: 1;
}

.back-arrow {
    width: 24px;
    height: 24px;
}

.back-arrow path {
    stroke: #431c72;
    stroke-width: 1.2;
    fill: none;
    stroke-linejoin: round;
    stroke-linecap: round;
}

.call-btn {
    text-decoration: none;
    animation: callPulse 2s ease-in-out infinite;
}

@keyframes callPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.call-btn:hover .btn-icon-shake {
    animation: iconShake 0.5s ease-in-out;
}

.btn-icon-shake path {
    fill: #431c72;
}

.floating-social-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.floating-btn:hover .floating-social-icon {
    transform: scale(1.1);
}

.back-to-top:hover svg {
    animation: bounceUp 0.5s ease-in-out;
}

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


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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.4);
    z-index: 10000;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: headerShine 5s ease-in-out infinite;
    pointer-events: none;
}

@keyframes headerShine {
    0%, 100% {
        left: -100%;
    }
    50%, 100% {
        left: 100%;
    }
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 700;
    font-size: 24px;
    color: #2c3e50;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav {
    display: flex;
    gap: 25px;
}

.nav a {
    text-decoration: none;
    color: #555;
    font-weight: 400;
    font-size: 13px;
    transition: all 0.3s ease;
}

.nav a:hover,
.nav a.active {
    color: #431c72;
}

/* Breadcrumbs */
.breadcrumbs {
    padding: 120px 0 20px;
    background: linear-gradient(135deg, #431c72 0%, #6b3fa8 100%);
    position: sticky;
    top: 0;
    z-index: 9999;
}

.breadcrumbs-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumbs-item {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    font-weight: 400;
}

.breadcrumbs-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumbs-item a:hover {
    color: #fff;
}

.breadcrumbs-item:last-child {
    color: #fff;
    font-weight: 500;
}

.breadcrumbs-separator {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
}

@media (max-width: 768px) {
    .breadcrumbs {
        display: block;
        padding: 100px 0 15px;
        position: sticky;
        top: 0;
        z-index: 9999;
    }

    .breadcrumbs-item {
        font-size: 12px;
    }

    body.menu-open .breadcrumbs {
        display: none;
    }
}

.nav a:hover {
    transform: translateX(-5px);
}

/* Главная link - always black, only hover movement */
.nav a[href="index.html"] {
    color: #000;
}

.nav a[href="index.html"]:hover {
    color: #431c72;
}

.nav a[href="index.html"].active {
    color: #000;
}

/* Navigation Dropdown */
.nav-dropdown {
    position: relative;
    display: inline-block;
    z-index: 10001;
}

.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.dropdown-arrow {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    min-width: 220px;
    padding: 12px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    border: 1px solid rgba(67, 28, 114, 0.15);
    box-shadow: 0 8px 32px rgba(67, 28, 114, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.6);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 10002;
    overflow: visible;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(10px) scale(1);
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: #431c72;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.dropdown-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 0;
    background: linear-gradient(180deg, #431c72, #6b3fa8);
    transition: height 0.3s ease;
}

.dropdown-menu a:hover {
    background: rgba(67, 28, 114, 0.08);
    transform: translateX(5px);
    color: #431c72;
}

.dropdown-menu a:hover::before {
    height: 100%;
}

.dropdown-menu a:active {
    transform: translateX(5px) scale(0.98);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.btn-primary {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.5);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background: #fff;
    color: #333;
}

.btn-purple {
    display: none;
    padding: 10px 20px;
    background: linear-gradient(135deg, #6b3fa8 0%, #431c72 100%);
    color: #fff;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    font-size: 13px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(67, 28, 114, 0.4);
    margin-top: 10px;
}

.btn-purple:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(67, 28, 114, 0.6);
    background: linear-gradient(135deg, #8b5fb8 0%, #5a2a8a 100%);
}

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

.btn-outline:hover {
    background: #2c3e50;
    color: #fff;
}

/* Header Address */
.header-address {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 400;
    color: #000;
}

.address-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

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

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

.hero-bg-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.hero-bg-slide.active {
    opacity: 1;
}

.hero-bg-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
}

/* Hero Content Wrapper */
.hero-content-wrapper {
    position: relative;
    max-width: 650px;
}

/* Glass Panel */
.hero-glass-panel {
    position: relative;
    max-width: 650px;
    padding: 50px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    animation: slideIn 1s ease-out forwards;
    opacity: 0;
    transform: translateX(-100px);
}

/* Installment Badge - Desktop */
.installment-badge {
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: radial-gradient(ellipse at 30% 20%,
        rgba(90, 30, 160, 0.75) 0%,
        rgba(65, 15, 130, 0.65) 30%,
        rgba(45, 8, 100, 0.7) 60%,
        rgba(30, 2, 75, 0.85) 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1.5px solid rgba(130, 80, 220, 0.5);
    box-shadow:
        0 8px 32px rgba(50, 10, 130, 0.4),
        inset 0 2px 12px rgba(160, 120, 255, 0.3),
        inset 0 -4px 12px rgba(30, 5, 70, 0.35),
        0 0 60px rgba(70, 15, 150, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 5;
    animation: badgePulse 3s ease-in-out infinite, badgeSlideIn 0.8s ease-out 0.5s both, badgeBreathe 4s ease-in-out infinite;
    overflow: hidden;
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-title {
    font-weight: 700;
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: #fff;
    opacity: 0;
    animation: fadeIn 0.5s ease-out 0.5s forwards;
}

.hero-subtitle {
    font-weight: 400;
    font-size: 24px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.95);
    opacity: 0;
    animation: fadeIn 0.5s ease-out 0.7s forwards;
}

.hero-description {
    font-weight: 200;
    font-size: 16px;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.9);
    opacity: 0;
    animation: fadeIn 0.5s ease-out 0.9s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.hero-glass-panel .btn-glass {
    opacity: 0;
    animation: fadeIn 0.5s ease-out 1.1s forwards;
}

/* Glass Button */
.btn-glass {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-decoration: none;
    color: #fff;
    font-weight: 400;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-glass::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    animation: shineContinuous 3s linear infinite;
}

@keyframes shineContinuous {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 12px 48px rgba(67, 28, 114, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transform: scale(1.05);
}

.btn-glass:hover .btn-icon {
    animation: iconShake 0.5s ease-in-out;
}

@keyframes iconShake {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-15deg);
    }
    75% {
        transform: rotate(15deg);
    }
}

.btn-glass:active {
    transform: scale(1.02);
}

.btn-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

/* Typing Effect */
.typing-text {
    color: #431c72;
    font-weight: 700;
    display: inline-block;
    min-width: 80px;
}

.typing-cursor {
    color: #fff;
    animation: blink 0.7s infinite;
    display: inline-block;
    vertical-align: top;
    margin-left: 1px;
}

@keyframes blink {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: 0; }
}

/* Section Title */
.section-title {
    text-align: center;
    font-weight: 700;
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 50px;
}

/* Installment Badge - Red Liquid Glass Circle */
.installment-badge {
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: radial-gradient(ellipse at 30% 20%,
        rgba(90, 30, 160, 0.75) 0%,
        rgba(65, 15, 130, 0.65) 30%,
        rgba(45, 8, 100, 0.7) 60%,
        rgba(30, 2, 75, 0.85) 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1.5px solid rgba(130, 80, 220, 0.5);
    box-shadow:
        0 8px 32px rgba(50, 10, 130, 0.4),
        inset 0 2px 12px rgba(160, 120, 255, 0.3),
        inset 0 -4px 12px rgba(30, 5, 70, 0.35),
        0 0 60px rgba(70, 15, 150, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 5;
    animation: badgePulse 3s ease-in-out infinite, badgeSlideIn 0.8s ease-out 0.5s both, badgeBreathe 4s ease-in-out infinite;
    overflow: hidden;
}

.installment-badge::before {
    content: '';
    position: absolute;
    top: 8%;
    left: 18%;
    width: 45%;
    height: 25%;
    background: radial-gradient(ellipse, rgba(255, 255, 255, 0.5) 0%, transparent 70%);
    border-radius: 50%;
    transform: rotate(-20deg);
    pointer-events: none;
}

.installment-badge::after {
    content: '';
    position: absolute;
    bottom: 12%;
    right: 15%;
    width: 30%;
    height: 18%;
    background: radial-gradient(ellipse, rgba(180, 160, 255, 0.25) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.installment-badge-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 12px;
}

.installment-badge-title {
    font-weight: 700;
    font-size: 11px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
    line-height: 1.2;
}

.installment-badge-sub {
    font-weight: 400;
    font-size: 9px;
    color: rgba(255, 255, 255, 0.92);
    letter-spacing: 0.5px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
    line-height: 1.2;
}

.installment-badge-bank {
    font-weight: 700;
    font-size: 10px;
    color: #fff;
    letter-spacing: 0.8px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
    margin-top: 2px;
}

@keyframes badgePulse {
    0%, 100% {
        box-shadow:
            0 8px 32px rgba(50, 10, 130, 0.4),
            inset 0 2px 12px rgba(160, 120, 255, 0.3),
            inset 0 -4px 12px rgba(30, 5, 70, 0.35),
            0 0 60px rgba(70, 15, 150, 0.2);
    }
    50% {
        box-shadow:
            0 8px 40px rgba(50, 10, 130, 0.5),
            inset 0 2px 16px rgba(160, 120, 255, 0.4),
            inset 0 -4px 16px rgba(30, 5, 70, 0.4),
            0 0 80px rgba(70, 15, 150, 0.35);
    }
}

@keyframes badgeSlideIn {
    from {
        opacity: 0;
        transform: scale(0.5) translate(20px, 20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translate(0, 0);
    }
}

@keyframes badgeBreathe {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.18);
    }
}

@keyframes badgeBreatheMobile {
    0%, 100% {
        transform: translateX(-50%) scale(1);
    }
    50% {
        transform: translateX(-50%) scale(1.18);
    }
}

/* Brands Carousel Section */
.brands-carousel {
    padding: 40px 0;
    background: #f8f9fa;
    overflow: hidden;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.brands-track {
    overflow: hidden;
    position: relative;
}

.brands-wrapper {
    display: flex;
    gap: 0;
    animation: scrollBrands 20s linear infinite;
    width: max-content;
}

.brands-wrapper:hover {
    animation-play-state: paused;
}

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

.brand-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 400px;
    height: 80px;
    opacity: 0.3;
    transition: opacity 0.3s ease;
    cursor: default;
    pointer-events: none;
}

.brand-item img {
    max-width: 200px;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
}

.brand-placeholder {
    font-size: 24px;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
    text-transform: uppercase;
    white-space: nowrap;
}

.brand-item:hover {
    opacity: 0.7;
}

/* Business Furniture Section */
.business-furniture {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-top: 1px solid rgba(67, 28, 114, 0.1);
    border-bottom: 1px solid rgba(67, 28, 114, 0.1);
}

.business-furniture-title {
    font-size: 36px;
    font-weight: 700;
    color: #431c72;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 60px;
    max-width: 100%;
}

.business-furniture-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.business-furniture-left {
    display: flex;
    align-items: center;
}

.business-furniture-right {
    display: flex;
    align-items: center;
}

.business-furniture-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.business-furniture-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
}

.business-carousel {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(67, 28, 114, 0.2);
}

.business-carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.business-carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    pointer-events: none;
}

.business-carousel-slide.active {
    opacity: 1;
}

.business-carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    user-select: none;
}

.business-furniture-advantages {
    background: #fff;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(67, 28, 114, 0.1);
    margin-bottom: 40px;
}

.business-furniture-advantages-title {
    font-size: 28px;
    font-weight: 700;
    color: #431c72;
    text-align: center;
    margin-bottom: 40px;
}

.business-furniture-cta {
    text-align: center;
    margin-bottom: 40px;
}

.business-furniture-cta-text {
    font-size: 18px;
    color: #666;
    margin-bottom: 20px;
}

.business-furniture-advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.business-advantage-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border-radius: 16px;
    border: 1px solid rgba(67, 28, 114, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.business-advantage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(67, 28, 114, 0.15);
}

.business-advantage-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #431c72 0%, #6b3fa8 100%);
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(67, 28, 114, 0.3);
}

.business-advantage-icon svg {
    width: 32px;
    height: 32px;
    filter: brightness(0) invert(1);
}

.business-advantage-icon-img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.business-advantage-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.business-advantage-text strong {
    font-size: 20px;
    font-weight: 700;
    color: #431c72;
}

.business-advantage-text span {
    font-size: 15px;
    color: #666;
    line-height: 1.5;
}

.business-furniture-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #431c72 0%, #6b3fa8 100%);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(67, 28, 114, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.business-furniture-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shineContinuous 3s linear infinite;
}

.business-furniture-btn svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.business-furniture-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(67, 28, 114, 0.4);
    background: linear-gradient(135deg, #6b3fa8 0%, #431c72 100%);
}

@media (max-width: 768px) {
    .business-furniture {
        padding: 50px 0;
    }

    .business-furniture-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .business-furniture-split {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 40px;
    }

    .business-furniture-text p {
        font-size: 16px;
    }

    .business-carousel {
        height: 300px;
    }

    .business-furniture-advantages {
        padding: 30px 20px;
    }

    .business-furniture-advantages-title {
        font-size: 22px;
        margin-bottom: 30px;
    }

    .business-furniture-advantages-grid {
        grid-template-columns: 1fr;
    }

    .business-advantage-item {
        padding: 20px;
    }

    .business-advantage-icon {
        width: 50px;
        height: 50px;
    }

    .business-advantage-icon svg {
        width: 26px;
        height: 26px;
    }

    .business-advantage-icon-img {
        width: 26px;
        height: 26px;
    }

    .business-advantage-text strong {
        font-size: 18px;
    }

    .business-advantage-text span {
        font-size: 14px;
    }

    .business-furniture-cta-text {
        font-size: 16px;
    }

    .business-furniture-btn {
        padding: 12px 24px;
        font-size: 15px;
    }

    .business-furniture-btn svg {
        width: 20px;
        height: 20px;
    }
}

/* Catalog Page Styles */
.catalog-title-section {
    padding: 120px 0 60px;
    background: #431c72;
    text-align: center;
    position: relative;
    z-index: 10;
    margin-bottom: -20px;
}

.catalog-title-section::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-top: 50px solid #431c72;
    z-index: 11;
    animation: arrowFloat 2s ease-in-out infinite;
}

@keyframes arrowFloat {
    0%, 100% {
        bottom: -20px;
    }
    50% {
        bottom: -25px;
    }
}


.catalog-main-title {
    font-weight: 700;
    font-size: 36px;
    color: #fff;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Catalog Category Sections */
.catalog-category-section {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    scroll-margin-top: 100px;
    position: relative;
}

.catalog-category-section:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 4px;
    background: linear-gradient(90deg, transparent, #431c72, transparent);
    border-radius: 2px;
    opacity: 0.3;
}

.catalog-category-section:nth-child(even) {
    background: linear-gradient(135deg, #e9ecef 0%, #f8f9fa 100%);
}

.category-title {
    font-weight: 700;
    font-size: 36px;
    color: #6b3fa8;
    margin-bottom: 15px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #431c72, transparent);
    border-radius: 2px;
}

.category-description {
    font-weight: 200;
    font-size: 16px;
    color: #666;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

/* About Page Styles */
.about-page-hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background-image: url('../img/about.jpg');
    background-size: cover;
    background-position: center;
}

.about-page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.about-bg-section {
    display: none;
}

.about-glass-container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 900px;
    padding: 140px 20px 80px;
    margin: 0 auto;
}

.about-glass-panel {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.4);
    padding: 60px 50px;
}

.about-title-panel {
    text-align: center;
    margin-bottom: 40px;
}

.about-page-title {
    font-weight: 700;
    font-size: 36px;
    color: #fff;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.about-text {
    font-weight: 400;
    font-size: 16px;
    color: #fff;
    line-height: 1.8;
    text-align: justify;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.about-text:first-letter {
    font-weight: 700;
    font-size: 22px;
    color: #fff;
}

.about-requisites-panel {
    text-align: center;
    padding: 40px 50px;
    margin-top: 30px;
    position: relative;
}

.about-requisites-panel::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    border-radius: 2px;
}

/* About Divider */
.about-divider {
    background: linear-gradient(135deg, #431c72 0%, #6b3fa8 50%, #431c72 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.about-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: dividerShine 3s ease-in-out infinite;
}

@keyframes dividerShine {
    0%, 100% {
        left: -100%;
    }
    50%, 100% {
        left: 100%;
    }
}

.about-divider-line {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #fff, transparent);
    position: relative;
    z-index: 1;
}

.about-requisites-title {
    font-weight: 700;
    font-size: 20px;
    color: #fff;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.about-requisites-text {
    font-weight: 700;
    font-size: 18px;
    color: #fff;
    margin: 15px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* About Features Grid - Desktop */
.about-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 30px;
    position: relative;
    z-index: 10;
}

.about-feature {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    z-index: 10;
}

.about-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.about-feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    padding: 15px;
}

.about-feature-icon svg {
    width: 100%;
    height: 100%;
    stroke: #fff;
}

.about-feature h3 {
    font-weight: 700;
    font-size: 16px;
    color: #fff;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.about-feature p {
    font-weight: 400;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* About Text Block */
.about-text-block {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 35px 30px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 10;
}

.about-text-block h2 {
    font-weight: 700;
    font-size: 22px;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.about-text-block p {
    font-weight: 400;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 15px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.about-divider-section {
    height: 200px;
    background: linear-gradient(135deg, #431c72 0%, #2d1250 100%);
    position: relative;
    overflow: hidden;
}

.about-divider-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 4px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    border-radius: 2px;
}

.about-divider-section::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    animation: dividerShine 8s linear infinite;
}

@keyframes dividerShine {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* About Background Overlay */

/* Responsive */
@media (max-width: 768px) {
    .about-page-hero {
        background-image: url('../img/aboutmob.jpg') !important;
        background-size: cover !important;
        background-position: center !important;
        background-attachment: fixed !important;
        min-height: 100vh;
        padding: 120px 0 40px;
    }

    .about-page-hero::before {
        background: rgba(0, 0, 0, 0.3) !important;
    }

    .about-glass-container {
        padding: 0 15px 20px;
    }

    .about-glass-panel {
        padding: 40px 25px;
    }

    .about-page-title {
        font-size: 28px;
    }

    .about-text {
        font-size: 14px;
        text-align: left;
    }

    .about-content {
        gap: 20px;
    }

    .about-features-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 20px;
    }

    .about-text-block {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-radius: 16px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        padding: 25px 20px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
        position: relative;
        z-index: 10;
    }

    .about-text-block h2 {
        font-weight: 700;
        font-size: 20px;
        color: #fff;
        margin-bottom: 15px;
        text-transform: uppercase;
        letter-spacing: 1px;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }

    .about-text-block p {
        font-weight: 400;
        font-size: 14px;
        color: rgba(255, 255, 255, 0.9);
        line-height: 1.6;
        margin-bottom: 12px;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    }

    .about-requisites-panel {
        padding: 30px 20px;
    }

    .about-requisites-title {
        font-size: 18px;
    }

    .about-requisites-text {
        font-size: 14px;
        color: #fff !important;
        pointer-events: none !important;
        -webkit-touch-callout: none !important;
        -webkit-user-select: none !important;
        user-select: none !important;
        cursor: default !important;
    }

    .about-requisites-text a {
        color: #fff !important;
        text-decoration: none !important;
        pointer-events: none !important;
        cursor: default !important;
    }
}

/* Contact Page Styles */
.contact-page-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 100px 0;
    z-index: 10;
    pointer-events: none;
}

.contact-glass-container {
    position: relative;
    z-index: 11;
    width: 100%;
    max-width: 550px;
    padding: 0 20px;
    margin-left: auto;
    margin-right: 3%;
    pointer-events: auto;
}

.contact-page-panel {
    max-width: 600px;
    padding: 40px 30px;
    background: linear-gradient(135deg, rgb(67, 28, 114) 0%, rgb(45, 18, 80) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.contact-page-title {
    font-weight: 700;
    font-size: 36px;
    color: #fff;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    line-height: 1.2;
}

.contact-info-block {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
}

.contact-info-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.contact-info-text {
    font-weight: 400;
    font-size: 15px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    line-height: 1.4;
}

.contact-info-text:hover {
    opacity: 0.8;
}

.contact-link {
    transition: all 0.3s ease;
}

.contact-link:hover {
    opacity: 0.8;
}

.contact-info-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    margin: 5px 0;
}

.contact-social-links {
    display: flex;
    gap: 15px;
    margin-top: 40px;
    justify-content: center;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(67, 28, 114, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(67, 28, 114, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link svg {
    width: 24px;
    height: 24px;
    fill: #431c72;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(67, 28, 114, 0.2);
    transform: scale(1.1);
    box-shadow: 0 8px 32px rgba(67, 28, 114, 0.2);
}

.social-link:hover svg {
    fill: #431c72;
}

/* Contact panel social links with PNG icons */
.contact-social-links-panel {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.contact-social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(67, 28, 114, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.contact-social-link:hover {
    background: rgba(67, 28, 114, 0.2);
    transform: scale(1.1);
    box-shadow: 0 8px 32px rgba(67, 28, 114, 0.2);
}

.contact-social-icon {
    width: 24px;
    height: 24px;
    transition: all 0.3s ease;
    filter: brightness(0) saturate(1000%) invert(20%) sepia(85%) saturate(1500%) hue-rotate(235deg) brightness(90%) contrast(95%);
}

.contact-social-link:hover .contact-social-icon {
    transform: scale(1.1);
}

/* Back to top button for catalog */
.catalog-back-to-top {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(67, 28, 114, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
}

.catalog-back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.catalog-back-to-top:hover {
    background: rgba(67, 28, 114, 1);
    transform: scale(1.1);
    box-shadow: 0 8px 32px rgba(67, 28, 114, 0.4);
}

.catalog-back-to-top svg {
    width: 24px;
    height: 24px;
    stroke: #fff;
    stroke-width: 2;
    fill: none;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    width: calc(100% - 40px);
    max-width: 800px;
    padding: 25px 35px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(67, 28, 114, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.4);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.cookie-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    animation: cookieShine 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes cookieShine {
    0%, 100% {
        left: -100%;
    }
    50%, 100% {
        left: 100%;
    }
}

.cookie-banner.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    visibility: visible;
}

.cookie-banner-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    text-align: center;
}

.cookie-banner-text {
    font-weight: 400;
    font-size: 14px;
    color: #431c72;
    line-height: 1.6;
}

.cookie-banner-text a {
    color: #431c72;
    text-decoration: underline;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-banner-text a:hover {
    color: #6b3fa8;
    text-decoration: none;
}

.cookie-banner-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.cookie-checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: 400;
    font-size: 13px;
    color: #431c72;
}

.cookie-checkbox {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #431c72;
}

.cookie-accept-btn {
    padding: 12px 30px;
    background: rgba(67, 28, 114, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.cookie-accept-btn:hover {
    background: rgba(67, 28, 114, 1);
    transform: scale(1.05);
    box-shadow: 0 8px 32px rgba(67, 28, 114, 0.3);
}

.cookie-accept-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Footer social links with PNG icons - white */
.footer-social-link-png {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social-icon-png {
    width: 20px;
    height: 20px;
    transition: all 0.3s ease;
}

.footer-social-link-png:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.footer-social-link-png:hover .footer-social-icon-png {
    transform: scale(1.1);
}

.contact-map-section {
    width: 100%;
    height: 100vh;
    min-height: 800px;
    position: relative;
    z-index: 0;
    margin: 0;
    padding: 0;
}

.contact-map {
    width: 100%;
    height: 100%;
    min-height: 800px;
    pointer-events: auto;
    margin: 0;
    padding: 0;
}

.contact-map iframe {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    min-width: 100% !important;
    border: 0;
    filter: grayscale(30%) contrast(1.1) brightness(0.9);
}

/* Fix footer on contact page ONLY */
.contact-page-hero ~ .footer {
    position: relative;
    z-index: 1002;
    pointer-events: auto;
}

/* Contact Section */
.contact {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 80px 0 60px;
    overflow: hidden;
    background: url('../img/fon.png') no-repeat center center/cover;
}

.contact-map {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.contact-map::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    pointer-events: none;
}

.contact-glass-panel {
    position: relative;
    z-index: 10;
    max-width: 450px;
    padding: 40px 35px;
    margin-right: 5%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.5);
    animation: slideRight 1s ease-out forwards;
}

@keyframes slideRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.contact-title {
    font-weight: 700;
    font-size: 36px;
    color: #431c72;
    margin-bottom: 25px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-form-glass {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.glass-input {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    color: #431c72;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.glass-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.4);
    border-color: rgba(255, 255, 255, 0.7);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.glass-input::placeholder {
    color: rgba(67, 28, 114, 0.7);
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 10px 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 12px;
    color: #431c72;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    flex-shrink: 0;
    margin-top: 2px;
}

.glass-checkbox {
    accent-color: #431c72;
}

.glass-link {
    color: #431c72;
    text-decoration: underline;
    font-weight: 600;
}

.glass-link:hover {
    color: #6b3fa8;
}

.contact-btn {
    margin-top: 10px;
    justify-content: center;
}

.contact-form-glass .btn-glass {
    background: #431c72;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-form-glass .btn-glass span {
    color: #fff !important;
}

.contact-form-glass .btn-glass:hover {
    background: #6b3fa8;
}

.catalog-hero {
    display: none;
}

.catalog-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    align-items: stretch;
}

.catalog-item {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 40px rgba(67, 28, 114, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    z-index: 1;
}

.catalog-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(67, 28, 114, 0.25);
    background: rgba(255, 255, 255, 0.95);
}

.catalog-image-wrapper {
    position: relative;
    height: 300px;
    overflow: hidden;
    will-change: transform;
}

.catalog-loading-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    color: #431c72;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.catalog-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
    will-change: transform;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.catalog-item:hover .catalog-image {
    transform: scale(1.05);
}

.catalog-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(67, 28, 114, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.catalog-item:hover .catalog-overlay {
    opacity: 1;
}

.catalog-zoom-btn {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    transform: scale(0.8);
}

.catalog-item:hover .catalog-zoom-btn {
    transform: scale(1);
}

.catalog-zoom-btn:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: scale(1.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.catalog-zoom-btn svg {
    width: 32px;
    height: 32px;
    stroke: #fff;
    transition: stroke 0.3s ease;
}

.catalog-zoom-btn:hover svg {
    stroke: #fff;
}

.catalog-info {
    padding: 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.catalog-info h3 {
    font-weight: 700;
    font-size: 15px;
    color: #431c72;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
    word-wrap: break-word;
}

.catalog-info p {
    font-weight: 200;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.6);
    margin: 0 0 auto 0;
    line-height: 1.5;
    word-wrap: break-word;
}

.catalog-info .price {
    display: block;
    font-weight: 700;
    font-size: 16px;
    color: #431c72;
    padding-top: 12px;
    border-top: 1px solid rgba(67, 28, 114, 0.1);
}

.catalog-info .price::before {
    content: 'от ';
    font-weight: 400;
    font-size: 14px;
    color: rgba(67, 28, 114, 0.7);
}

.catalog-info .price::after {
    content: ' \20BD';
    font-weight: 700;
}

.catalog-more-btn {
    margin-top: 15px;
    padding: 12px 25px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 25px;
    display: inline-block;
    transition: all 0.3s ease;
    align-self: center;
    background: linear-gradient(135deg, #431c72 0%, #6b3fa8 100%);
    color: #fff;
    border: none;
    box-shadow: 0 4px 15px rgba(67, 28, 114, 0.2);
}

.catalog-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(67, 28, 114, 0.3);
    background: linear-gradient(135deg, #6b3fa8 0%, #431c72 100%);
}

/* Catalog Lightbox */
.catalog-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

.catalog-lightbox.active {
    display: flex !important;
}

.catalog-lightbox .catalog-lightbox-image {
    max-width: 90% !important;
    max-height: 80vh !important;
    width: auto !important;
    height: auto !important;
    display: block !important;
}

.catalog-lightbox .catalog-lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    border: none;
    cursor: pointer;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.catalog-lightbox .catalog-lightbox-close svg {
    width: 30px;
    height: 30px;
    stroke: #fff;
}

.catalog-lightbox img {
    max-width: 95%;
    max-height: 95vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: opacity 0.3s ease;
}

/* Catalog Lightbox Loader */
.catalog-lightbox-loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 100001;
}

.catalog-loader-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.2);
    border-top-color: #fff;
    border-radius: 50%;
    animation: catalogLoaderSpin 0.8s linear infinite;
}

@keyframes catalogLoaderSpin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Awesome Features Section */
.awesome-features {
    padding: 100px 0;
    background: #fff;
    position: relative;
}

.awesome-features-header {
    text-align: center;
    margin-bottom: 60px;
}

.connecting-lines-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.connect-line {
    transition: stroke-dashoffset 0.4s ease;
    opacity: 0;
}

.connect-line.active {
    opacity: 1;
}

.awesome-features-title {
    font-weight: 700;
    font-size: 36px;
    color: #431c72;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.awesome-features-description {
    font-weight: 200;
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.awesome-features-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    position: relative;
}

.awesome-features-left,
.awesome-features-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 35px;
    position: relative;
    z-index: 10;
}

.awesome-features-left .awesome-feature-item:hover,
.awesome-features-right .awesome-feature-item:hover {
    transform: translateY(-5px);
}

.awesome-feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    border-radius: 15px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05),
                inset 0 1px 0 rgba(255, 255, 255, 0.4);
    position: relative;
    overflow: hidden;
    height: 180px;
}

.awesome-feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.awesome-feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(67, 28, 114, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.6);
    border-color: rgba(255, 255, 255, 0.5);
}

.awesome-feature-item:hover::before {
    left: 100%;
}

.awesome-features-right .awesome-feature-item:hover {
    transform: translateY(-5px);
}

.awesome-feature-icon-img {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    object-fit: contain;
}

.awesome-feature-text {
    flex: 1;
    min-width: 0;
}

.awesome-feature-text h3 {
    font-weight: 700;
    font-size: 13px;
    color: #431c72;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    line-height: 1.3;
}

.awesome-feature-text p {
    font-weight: 200;
    font-size: 12px;
    color: #555;
    line-height: 1.5;
    margin: 0;
}

.awesome-features-image {
    flex-shrink: 0;
    width: 400px;
    position: relative;
    z-index: 2;
    overflow: hidden;
    border-radius: 20px;
}

.awesome-features-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    opacity: 0;
    transform: scale(0.8) rotate(-5deg);
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.awesome-features.animated .awesome-features-image img {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

.image-shine {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    background: linear-gradient(
        135deg,
        transparent 0%,
        rgba(255, 255, 255, 0.1) 30%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0.1) 70%,
        transparent 100%
    );
    background-size: 200% 200%;
    opacity: 0;
    pointer-events: none;
    animation: shineFlow 3s ease-in-out infinite;
}

.awesome-features.animated .image-shine {
    opacity: 1;
}

@keyframes shineFlow {
    0% {
        background-position: 200% 200%;
    }
    100% {
        background-position: -200% -200%;
    }
}

/* Features Section */
.features {
    padding: 100px 0;
    background: #f8f9fa;
}

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

.feature-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-weight: 700;
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 12px;
}

.feature-card p {
    font-weight: 200;
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)),
                url('../img/fon.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-title {
    font-weight: 700;
    font-size: 36px;
    color: #431c72;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.services-description {
    font-weight: 200;
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    perspective: 1000px;
    border-radius: 20px;
    position: relative;
    cursor: pointer;
}

.service-card-inner {
    position: relative;
    width: 100%;
    height: 380px;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.service-card:hover .service-card-inner {
    transform: rotateY(180deg);
}

.service-card a {
    text-decoration: none;
}

.service-card-front,
.service-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: 20px;
    overflow: hidden;
}

.service-card-front {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.95) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(67, 28, 114, 0.1);
    box-shadow: 0 10px 40px rgba(67, 28, 114, 0.08);
}

.service-card-back {
    background: linear-gradient(135deg, #431c72 0%, #2d1250 100%);
    transform: rotateY(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.service-back-content {
    text-align: center;
    color: #fff;
}

.service-back-content h3 {
    font-weight: 700;
    font-size: 24px;
    color: #fff !important;
    margin-bottom: 15px;
    padding: 0;
}

.service-back-content p {
    font-weight: 200;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9) !important;
    margin-bottom: 25px;
    padding: 0;
}

.service-btn {
    display: inline-block;
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.service-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.service-btn span {
    color: #fff;
    font-weight: 500;
    font-size: 14px;
}

.service-card a {
    text-decoration: none;
}

.service-image-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
    z-index: 1;
}

.service-image {
    height: 100%;
    background-size: cover;
    background-position: center;
}

.service-card h3 {
    padding: 25px 25px 10px;
    font-weight: 700;
    font-size: 18px;
    color: #431c72;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-card p {
    padding: 0 25px 25px;
    font-weight: 200;
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* CTA Section */
.cta {
    position: relative;
    padding: 0;
    overflow: hidden;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.cta-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.cta-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
}

.cta-content {
    width: 100%;
    text-align: center;
}

.cta h2 {
    font-weight: 700;
    font-size: 42px;
    color: #fff;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    white-space: nowrap;
    text-align: center;
}

.cta p {
    font-weight: 200;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 35px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

/* Gallery Section */
.gallery-section {
    padding: 60px 0 80px;
    background: linear-gradient(rgba(245, 247, 250, 0.85), rgba(232, 236, 241, 0.85)),
                url('../img/fon2.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    max-height: 100vh;
    overflow: hidden;
}

.gallery-title {
    text-align: center;
    font-weight: 700;
    font-size: 36px;
    color: #431c72;
    margin-bottom: 50px;
}

.gallery-main {
    max-width: 1200px;
    margin: 0 auto 40px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(67, 28, 114, 0.2);
    position: relative;
    z-index: 1;
}

.gallery-main-image {
    width: 100%;
    height: 600px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    background: #f5f5f5;
}

.gallery-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    image-rendering: -webkit-optimize-contrast;
    transition: opacity 0.3s ease;
}

/* Thumbnails overlay on main image */
.gallery-thumbnails-wrapper {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 10;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.gallery-thumbnails {
    display: flex;
    gap: 10px;
    overflow: hidden;
    width: 400px;
    scroll-behavior: smooth;
}

.gallery-thumb {
    width: 80px;
    height: 50px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.4;
    border: none;
    position: relative;
    transform: scale(0.7);
}

.gallery-thumb::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(67, 28, 114, 0.6) 0%, rgba(67, 28, 114, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.gallery-thumb::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #431c72, transparent);
    transition: width 0.4s ease;
    border-radius: 2px;
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

.gallery-thumb:hover {
    opacity: 0.7;
}

.gallery-thumb:hover img {
    transform: scale(1.1);
}

.gallery-thumb.active {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 6px 25px rgba(67, 28, 114, 0.5);
}

.gallery-thumb.active::before {
    opacity: 0.4;
}

.gallery-thumb.active::after {
    width: 80%;
}

.gallery-thumb.active img {
    transform: scale(1.05);
}

.gallery-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(67, 28, 114, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(67, 28, 114, 0.5);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.gallery-arrow:hover {
    background: rgba(67, 28, 114, 1);
    transform: scale(1.1);
}

.gallery-arrow svg {
    width: 20px;
    height: 20px;
    stroke: #fff;
    transition: stroke 0.3s ease;
}

.gallery-arrow:hover svg {
    stroke: #fff;
}

/* Hide dots since we have thumbnails overlay */
.gallery-dots {
    display: none;
}

/* Lightbox */
.gallery-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.gallery-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.gallery-lightbox img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    width: 100%;
    height: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.5);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.15);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.lightbox-close:active {
    transform: scale(0.95);
    background: rgba(255, 255, 255, 0.5);
}

.lightbox-close svg {
    width: 32px;
    height: 32px;
    stroke: #fff;
    stroke-width: 3;
    transition: stroke 0.3s ease;
}

.lightbox-close:hover svg {
    stroke: #fff;
}

/* Lightbox Navigation Arrows */
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.5);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.lightbox-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.lightbox-nav svg {
    width: 36px;
    height: 36px;
    stroke: #fff;
    stroke-width: 3;
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #431c72 0%, #2d1250 100%);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.faq-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(107, 76, 154, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.faq-title {
    text-align: center;
    font-weight: 700;
    font-size: 36px;
    color: #fff;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.faq-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.3));
    margin: 20px auto 0;
    border-radius: 2px;
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    margin-bottom: 20px;
    overflow: visible;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
}

.faq-number-bg {
    position: absolute;
    top: -30px;
    left: -60px;
    font-weight: 900;
    font-size: 120px;
    color: rgba(255, 255, 255, 0.05);
    z-index: 0;
    pointer-events: none;
    line-height: 1;
    transition: all 0.3s ease;
}

.faq-item.active .faq-number-bg {
    color: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.3);
}

.faq-item.active {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 35px;
    cursor: pointer;
    font-weight: 600;
    font-size: 17px;
    color: #fff;
    transition: all 0.3s ease;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.faq-question:hover {
    color: rgba(255, 255, 255, 0.9);
}

.faq-number {
    font-weight: 900;
    font-size: 24px;
    color: rgba(255, 255, 255, 0.3);
    min-width: 50px;
    transition: all 0.3s ease;
}

.faq-item.active .faq-number {
    color: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

.faq-toggle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    flex-shrink: 0;
    margin-left: auto;
}

.faq-toggle:hover {
    border-color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.plus-icon {
    position: relative;
    width: 24px;
    height: 24px;
}

.plus-icon::before,
.plus-icon::after {
    content: '';
    position: absolute;
    background: #fff;
    transition: all 0.4s ease;
    border-radius: 2px;
}

.plus-icon::before {
    width: 24px;
    height: 3px;
    top: 10.5px;
    left: 0;
}

.plus-icon::after {
    width: 3px;
    height: 24px;
    top: 0;
    left: 10.5px;
}

.faq-item.active .plus-icon::before {
    transform: rotate(180deg);
    opacity: 0;
}

.faq-item.active .plus-icon::after {
    transform: rotate(0deg);
    background: #fff;
}

.faq-item.active .faq-toggle {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: rotate(90deg);
}

.faq-item.active .faq-toggle .plus-icon::before,
.faq-item.active .faq-toggle .plus-icon::after {
    background: #fff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
    padding: 0 35px 30px 105px;
    margin: 0;
    font-weight: 200;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

@media (max-width: 768px) {
    span.typing-text {
        display: inline-block;
    }

    .hero-title .typing-cursor {
        display: inline-block;
        vertical-align: top;
        margin-left: 1px;
    }

    .gallery-main {
        max-width: 100%;
        border-radius: 0;
        overflow: visible;
    }

    .gallery-main-image {
        height: 300px;
        margin: 0;
        border-radius: 0;
    }

    .gallery-thumbnails-wrapper {
        padding: 8px 15px;
        border-radius: 30px;
    }

    .gallery-thumbnails {
        width: 200px;
    }

    .gallery-thumb {
        width: 60px;
        height: 45px;
    }

    .gallery-arrow {
        width: 32px;
        height: 32px;
    }

    /* Gallery Lightbox Mobile */
    .gallery-lightbox {
        background: rgba(0, 0, 0, 0.9);
    }

    .gallery-lightbox img {
        max-width: 95%;
        max-height: 80vh;
        width: auto;
        height: auto;
    }

    .lightbox-close {
        top: 15px;
        right: 15px;
        width: 44px;
        height: 44px;
        background: rgba(255, 255, 255, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.3);
    }

    .lightbox-close svg {
        width: 24px;
        height: 24px;
        stroke: #fff;
    }

    .lightbox-close:active {
        background: rgba(255, 255, 255, 0.3);
        transform: scale(0.95);
    }

    .lightbox-nav {
        width: 50px;
        height: 50px;
    }

    .lightbox-nav svg {
        width: 28px;
        height: 28px;
    }

    /* Catalog mobile */
    .catalog-lightbox {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #000;
        display: none;
        z-index: 99999;
    }

    .catalog-lightbox.active {
        display: -webkit-flex !important;
        display: flex !important;
    }

    .catalog-lightbox .catalog-lightbox-image {
        max-width: 90% !important;
        max-height: 80vh !important;
        width: auto !important;
        height: auto !important;
        display: block !important;
    }

    .catalog-lightbox .catalog-lightbox-close {
        position: absolute;
        top: 15px;
        right: 15px;
        width: 44px;
        height: 44px;
        background: rgba(255,255,255,0.3);
        border-radius: 50%;
        border: none;
        cursor: pointer;
        z-index: 100000;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .catalog-lightbox .catalog-lightbox-close svg {
        width: 24px;
        height: 24px;
        stroke: #fff;
    }

    /* Catalog Lightbox Loader Mobile */
    .catalog-loader-spinner {
        width: 50px;
        height: 50px;
        border-width: 3px;
    }

    /* Services mobile - button below image */
    .service-card-inner {
        transform: none !important;
        height: auto;
    }

    .service-card-front {
        position: relative;
        height: auto;
        padding-bottom: 0;
    }

    .service-card-back {
        display: none;
    }

    .service-card h3 {
        color: #431c72;
        font-size: 18px;
        margin: 15px 0 10px;
    }

    .service-card p {
        color: #666;
        font-size: 13px;
        margin-bottom: 10px;
    }

    .service-btn {
        position: static;
        transform: none;
        background: linear-gradient(135deg, rgb(67, 28, 114) 0%, rgb(45, 18, 80) 100%);
        border: none;
        width: calc(100% + 30px);
        padding: 18px 20px;
        margin: 0 -15px -15px -15px;
        border-radius: 0 0 15px 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        height: 60px;
    }

    .service-btn span {
        color: #fff;
        line-height: 1.2;
        transform: translateY(-4px);
    }
}

/* Swirl Cursor Effect */
.cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background: rgba(67, 28, 114, 0.8);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 99999;
    pointer-events: none;
}

.cursor-swirl {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(67, 28, 114, 0.4) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 99998;
    animation: swirlFade 1s ease-out forwards;
}

@keyframes swirlFade {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.5) rotate(180deg);
    }
}
.footer {
    background: linear-gradient(135deg, #431c72 0%, #2d1250 100%);
    padding: 60px 0 40px;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 1002;
    background-color: #431c72;
}

.footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 1003;
}

.footer-logo {
    margin-bottom: 5px;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-contacts-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    width: 100%;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    white-space: nowrap;
}

.footer-contact-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.footer-contact-divider {
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    margin-top: 10px;
}

.footer-social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.2);
}

.footer-social-link:hover .footer-social-icon {
    transform: scale(1.1);
}

.footer-policy {
    margin-top: 8px;
    text-align: center;
}

.footer-policy-link {
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.footer-policy-link:hover {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: underline;
}

.footer-policy-text {
    color: rgba(255, 255, 255, 0.5);
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin: 1px 0;
    line-height: 1.2;
    text-align: center;
}

.footer-description-top {
    color: rgba(255, 255, 255, 0.7);
    font-size: 11px;
    font-weight: 400;
    margin: 3px 0 2px;
    line-height: 1.3;
    text-align: center;
}

.footer-copyright-line {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin: 2px 0;
    flex-wrap: wrap;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 11px;
    font-weight: 400;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1000;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: rgb(67, 28, 114);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    transition: left 0.3s ease;
    visibility: hidden;
    display: none !important;
}

.mobile-menu-overlay.active {
    left: 0;
    visibility: visible;
    display: block !important;
}

body.menu-open .header {
    display: none;
}

.mobile-menu {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    padding: 60px 30px 30px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-menu-close {
    display: none;
}

.mobile-menu-logo {
    text-align: center;
    margin-bottom: 30px;
    padding-top: 20px;
}

.mobile-menu-logo img {
    width: 120px;
    height: auto;
}

.mobile-menu-nav {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-top: 0;
}

.mobile-menu-nav a {
    color: rgb(67, 28, 114);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    padding: 12px 0;
    border-bottom: 1px solid rgba(67, 28, 114, 0.1);
    transition: all 0.3s ease;
}

.mobile-menu-nav a:hover {
    color: rgb(45, 18, 80);
    padding-left: 10px;
}

/* Mobile Menu Catalog Submenu */
.mobile-menu-catalog {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-menu-catalog-title {
    color: rgb(67, 28, 114) !important;
    font-weight: 600 !important;
    font-size: 18px !important;
    border-bottom: 2px solid rgba(67, 28, 114, 0.2) !important;
}

.mobile-menu-catalog-submenu {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-left: 15px;
}

.mobile-menu-catalog-submenu a {
    color: rgb(67, 28, 114) !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    padding: 8px 0 !important;
    border-bottom: 1px solid rgba(67, 28, 114, 0.05) !important;
}

.mobile-menu-catalog-submenu a:hover {
    color: rgb(45, 18, 80) !important;
    padding-left: 10px !important;
}

.mobile-menu-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    width: 40px;
    height: 40px;
    transition: all 0.3s ease;
}

.mobile-menu-close-btn:hover {
    transform: scale(1.1);
}

.mobile-menu-close-btn svg {
    width: 100%;
    height: 100%;
    stroke: rgb(67, 28, 114);
    stroke-width: 2;
}

.mobile-menu-close-btn span {
    display: none;
}

.mobile-menu-contact {
    text-align: center;
    padding-top: 20px;
    border-top: 2px solid rgba(67, 28, 114, 0.2);
}

.mobile-menu-phone {
    display: block;
    color: rgb(67, 28, 114);
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.mobile-menu-phone:hover {
    color: rgb(45, 18, 80);
}

.mobile-menu-address {
    color: rgb(67, 28, 114);
    font-size: 14px;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 10px;
    }

    .header-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 8px 12px;
    }

    .logo {
        order: 1;
        flex: 0 0 auto;
    }

    .logo img {
        width: 80px;
        height: auto;
    }

    .header-address {
        order: 2;
        font-size: 11px;
        margin-right: 8px;
    }

    .header-address svg {
        width: 14px;
        height: 14px;
    }

    .mobile-menu-btn {
        display: flex;
        order: 3;
        padding: 8px;
    }

    .mobile-menu-btn span {
        width: 22px;
        height: 2px;
    }

    .nav {
        display: none;
    }

    /* Mobile menu optimized to fit all content */
    .mobile-menu-overlay {
        height: 100vh;
        overflow: hidden;
    }

    .mobile-menu {
        padding: 45px 18px 18px;
        gap: 8px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .mobile-menu-logo {
        margin-bottom: 12px;
        padding-top: 8px;
    }

    .mobile-menu-logo img {
        width: 85px;
    }

    .mobile-menu-nav {
        gap: 6px;
        padding-top: 0;
    }

    .mobile-menu-nav a {
        font-size: 15px;
        padding: 7px 0;
        border-bottom: 1px solid rgba(67, 28, 114, 0.08);
    }

    .mobile-menu-catalog {
        gap: 4px;
    }

    .mobile-menu-catalog-title {
        font-size: 15px !important;
        padding: 7px 0 !important;
    }

    .mobile-menu-catalog-submenu {
        gap: 3px;
        padding-left: 10px;
    }

    .mobile-menu-catalog-submenu a {
        font-size: 13px !important;
        padding: 5px 0 !important;
    }

    .mobile-menu-close-btn {
        top: 8px;
        right: 8px;
        width: 34px;
        height: 34px;
        padding: 5px;
    }

    .mobile-menu-contact {
        text-align: center;
        padding-top: 12px;
        margin-top: 8px;
        border-top: 1px solid rgba(67, 28, 114, 0.15);
    }

    .mobile-menu-phone {
        font-size: 16px;
        margin-bottom: 6px;
    }

    .mobile-menu-address {
        font-size: 11px;
        margin: 0;
    }

    .hero-title {
        font-size: 26px;
        white-space: normal;
        word-wrap: break-word;
        display: block;
    }

    .hero-title .typing-text {
        display: inline-block;
    }

    .hero-title .typing-cursor {
        display: inline-block;
        vertical-align: top;
        margin-left: 1px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-description {
        font-size: 12px;
        margin-bottom: 25px;
    }

    .hero-buttons {
        flex-direction: column;
    }

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

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

    /* Brands carousel mobile optimization */
    .brand-item {
        min-width: 200px;
        height: 60px;
    }

    .brand-placeholder {
        font-size: 16px;
        letter-spacing: 1px;
    }

    .awesome-features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .map-section {
        grid-template-columns: 1fr;
    }

    .map-container {
        min-height: 400px;
    }

    .contact-form-section {
        padding: 40px 20px;
    }

    .form-title {
        font-size: 26px;
    }

    .form-subtitle {
        font-size: 14px;
    }

    .contact-cards-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-card {
        padding: 30px 20px;
    }

    .contact-card-icon {
        width: 60px;
        height: 60px;
    }

    .contact-page-hero {
        background: url('../img/fon2.jpeg') no-repeat center center/cover;
    }

    .btn-purple {
        display: inline-block;
        padding: 8px 16px;
        font-size: 12px;
    }

    .catalog-item {
        border-radius: 20px !important;
        overflow: hidden !important;
    }
}

@media (max-width: 768px) {
    .catalog-main-title {
        font-size: 32px;
    }

    .catalog-title-section {
        padding: 80px 0 20px;
    }

    .catalog-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .catalog-item {
        border-radius: 20px !important;
        overflow: hidden !important;
        padding: 0 !important;
        margin: 0 !important;
        box-sizing: border-box;
    }

    .catalog-image-wrapper {
        height: 250px;
        overflow: hidden;
        margin: 0 !important;
        padding: 0 !important;
        box-sizing: border-box;
    }

    .catalog-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        cursor: pointer;
    }

    .catalog-item:hover .catalog-image {
        transform: none;
    }

    /* Скрываем overlay и лупу на мобильных */
    .catalog-overlay {
        display: none !important;
    }

    .awesome-features-wrapper {
        flex-direction: column;
    }

    .awesome-features-image {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
        order: -1;
    }

    .awesome-features-left,
    .awesome-features-right {
        z-index: 10;
    }

    .awesome-feature-item {
        z-index: 10;
    }

    .awesome-feature-item:hover,
    .awesome-features-right .awesome-feature-item:hover {
        transform: translateY(-5px);
    }

    .contact {
        height: auto !important;
        min-height: auto !important;
        position: relative !important;
        flex-direction: column !important;
        padding: 40px 0 !important;
        background: url('../img/fon.png') no-repeat center center/cover !important;
        background-attachment: fixed !important;
    }

    .contact-glass-panel {
        position: relative !important;
        top: 0 !important;
        right: 0 !important;
        transform: none !important;
        max-width: 90% !important;
        margin: 40px auto !important;
        padding: 35px 25px !important;
        background: rgba(255, 255, 255, 0.2) !important;
        backdrop-filter: blur(20px) !important;
        -webkit-backdrop-filter: blur(20px) !important;
    }

    .contact-map {
        position: relative !important;
        height: 50vh !important;
        max-height: 400px !important;
        min-height: auto !important;
        width: 100% !important;
        margin: 20px auto !important;
        overflow: hidden !important;
    }

    .contact-map iframe {
        width: 100% !important;
        height: 100% !important;
        position: relative !important;
        min-height: auto !important;
        object-fit: cover !important;
    }

    .contact-title {
        color: #431c72 !important;
    }

    .contact-form-glass .glass-input {
        color: #431c72;
        background: rgba(255, 255, 255, 0.3);
    }

    .contact-form-glass .glass-input::placeholder {
        color: rgba(67, 28, 114, 0.7);
    }

    .contact-form-glass .glass-checkbox + span,
    .contact-form-glass .glass-link {
        color: #431c72;
    }

    .contact-form-glass .btn-glass {
        background: #431c72;
        color: #fff;
        border: 1px solid rgba(255, 255, 255, 0.3);
    }

    .contact-form-glass .btn-glass span {
        color: #fff !important;
    }

    .contact-form-glass .btn-glass:hover {
        background: #6b3fa8;
    }

    .footer-contacts-line {
        flex-direction: column;
        gap: 10px;
    }

    .footer-contact-divider {
        display: none;
    }

    .footer-logo-img {
        height: 40px;
    }

    .cta h2 {
        font-size: 20px;
        white-space: normal;
        line-height: 1.3;
    }

    .features-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card-front {
        padding: 15px;
    }

    .service-card h3 {
        font-size: 18px;
    }

    .service-card p {
        font-size: 13px;
    }

    .faq-section {
        padding: 40px 0 60px !important;
        margin-top: 0 !important;
    }

    .floating-buttons-left {
        left: 15px;
        bottom: 80px;
    }

    .floating-buttons-right {
        right: 15px;
        bottom: 80px;
    }

    .floating-btn {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 20px;
        white-space: normal;
        word-wrap: break-word;
    }

    .hero-title .typing-text {
        display: inline-block;
    }

    .hero-title .typing-cursor {
        display: inline-block;
        vertical-align: top;
        margin-left: 1px;
    }

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

    .hero-description {
        font-size: 11px;
        margin-bottom: 20px;
    }

    .btn {
        padding: 9px 18px;
        font-size: 12px;
    }

    /* Extra small mobile menu optimization */
    .mobile-menu {
        padding: 40px 15px 15px;
    }

    .mobile-menu-logo img {
        width: 75px;
    }

    .mobile-menu-nav a {
        font-size: 14px;
        padding: 6px 0;
    }

    .mobile-menu-catalog-title {
        font-size: 14px !important;
    }

    .mobile-menu-catalog-submenu a {
        font-size: 12px !important;
        padding: 4px 0 !important;
    }

    .mobile-menu-phone {
        font-size: 15px;
    }

    .mobile-menu-address {
        font-size: 10px;
    }

    .mobile-menu-close-btn {
        width: 32px;
        height: 32px;
        top: 6px;
        right: 6px;
    }

    /* Extra small brands carousel */
    .brand-item {
        min-width: 150px;
        height: 50px;
    }

    .brand-placeholder {
        font-size: 14px;
        letter-spacing: 0.5px;
    }
}

/* Installment Badge Mobile */
@media (max-width: 768px) {
    .hero-content-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .installment-badge {
        position: relative;
        width: 100px;
        height: 100px;
        bottom: auto;
        right: auto;
        left: auto;
        margin-top: 50px;
        z-index: 10;
        animation: badgeBreatheMobile 4s ease-in-out infinite, badgeSlideIn 0.8s ease-out 0.5s both;
    }

    .installment-badge-title {
        font-size: 9px;
    }

    .installment-badge-sub {
        font-size: 7px;
    }

    .installment-badge-bank {
        font-size: 8px;
    }
}

@media (max-width: 480px) {
    .installment-badge {
        width: 85px;
        height: 85px;
        margin-top: 40px;
    }

    .installment-badge-inner {
        padding: 8px;
        gap: 1px;
    }

    .installment-badge-title {
        font-size: 8px;
        letter-spacing: 0.5px;
    }

    .installment-badge-sub {
        font-size: 6px;
    }

    .installment-badge-bank {
        font-size: 7px;
        margin-top: 1px;
    }
}

@keyframes badgeBreatheMobile {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.18);
    }
}

/* Catalog: expandable description */
.catalog-info {
    padding-bottom: 15px;
}

.catalog-info .product-description-wrapper {
    flex-grow: 1;
}

.catalog-info .price {
    margin-top: auto;
}

.product-description-wrapper {
    margin-bottom: 12px;
}

.product-description-text {
    color: #555;
    line-height: 1.5;
    margin: 0 0 10px 0;
    font-size: 14px;
    min-height: 40px;
}

.description-toggle-btn {
    background: #431c72;
    color: #fff;
    border: none;
    padding: 8px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 8px;
}

.description-toggle-btn:hover {
    background: #5a2d8f;
    transform: translateY(-1px);
}

.description-toggle-btn:active {
    transform: translateY(0);
}
