/*
Theme Name: ProfiWash
Theme URI: http://profiwash.contenthub.fun
Author: ProfiWash Team
Author URI: http://profiwash.contenthub.fun
Description: Кастомна тема для ProfiWash - автомийки самообслуговування
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: profiwash
Tags: business, car-wash, custom-theme
*/

/* ==========================================================================
   CSS Variables - Aqualine-inspired color scheme
   ========================================================================== */
:root {
    /* Primary Colors */
    --primary: #E81C2E;
    --primary-dark: #CA0010;
    --primary-light: rgba(232, 28, 46, 0.5);

    /* Secondary Colors */
    --secondary: #CCB686;
    --accent-green: #39B972;

    /* Neutral Colors */
    --black: #19191B;
    --dark-gray: #333333;
    --gray: #666666;
    --light-gray: #F8F9FA;
    --white: #FFFFFF;

    /* Typography */
    --font-primary: 'Ubuntu', sans-serif;
    --font-heading: 'Ubuntu', sans-serif;

    /* Spacing */
    --section-padding: 80px 0;
    --container-width: 1200px;

    /* Transitions */
    --transition: all 0.3s ease;
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */
.text-primary {
    color: var(--primary) !important;
}

.text-white {
    color: var(--white) !important;
}

.text-center {
    text-align: center !important;
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
    overflow-x: hidden;
}

/* ==========================================================================
   Preloader
   ========================================================================== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    text-align: center;
}

.preloader-logo {
    margin-bottom: 30px;
    animation: pulse 1.5s ease-in-out infinite;
}

.preloader-logo-image {
    max-width: 250px;
    height: auto;
}

.preloader-logo .logo-profi {
    color: var(--white);
}

.preloader-logo .logo-wash {
    color: var(--primary);
}

.preloader-spinner {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.spinner-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 3px solid transparent;
}

.spinner-ring:nth-child(1) {
    width: 80px;
    height: 80px;
    margin: -40px 0 0 -40px;
    border-top-color: var(--primary);
    animation: spin 1.2s linear infinite;
}

.spinner-ring:nth-child(2) {
    width: 60px;
    height: 60px;
    margin: -30px 0 0 -30px;
    border-right-color: var(--white);
    animation: spin 1.5s linear infinite reverse;
}

.spinner-ring:nth-child(3) {
    width: 40px;
    height: 40px;
    margin: -20px 0 0 -20px;
    border-bottom-color: var(--primary);
    animation: spin 1s linear infinite;
}

.preloader-text {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 3px;
}

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

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

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

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

ul, ol {
    list-style: none;
}

/* ==========================================================================
   Typography
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--black);
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
}

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

.section {
    padding: var(--section-padding);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary);
}

.section-subtitle {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-block;
    padding: 15px 35px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(232, 28, 46, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--black);
}

/* ==========================================================================
   Top Bar
   ========================================================================== */
.top-bar {
    background: var(--black);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    transition: var(--transition);
}

.top-bar.hidden {
    transform: translateY(-100%);
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar-phones {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.85rem;
}

.top-bar-phones .top-bar-label {
    color: var(--gray);
    font-size: 0.8rem;
}

.top-bar-phones a {
    color: var(--white);
    font-weight: 500;
    transition: var(--transition);
}

.top-bar-phones a:hover {
    color: var(--primary);
}

.top-bar-social {
    display: flex;
    align-items: center;
    gap: 12px;
}

.top-bar-social a {
    color: var(--gray);
    font-size: 0.9rem;
    transition: var(--transition);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.top-bar-social a:hover {
    color: var(--white);
    background: var(--primary);
}

.top-bar-lang {
    display: flex;
    align-items: center;
    gap: 5px;
    padding-left: 15px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

/* Language dropdown select */
.lang-select {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 500;
    padding: 4px 8px;
    border-radius: 4px;
    cursor: pointer;
    outline: none;
    transition: var(--transition);
}

.lang-select:hover,
.lang-select:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.1);
}

.lang-select option {
    background: var(--black);
    color: var(--white);
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
    position: fixed;
    top: 40px; /* Account for top-bar height */
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
    background: rgba(25, 25, 27, 0.85);
}

.site-header.scrolled {
    top: 0;
    background: rgba(25, 25, 27, 0.98);
    padding: 12px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 15px;
}

.site-logo {
    flex-shrink: 0;
}

.site-logo img,
.site-logo-image {
    max-height: 21px;
    width: auto;
}

.site-header.scrolled .site-logo img,
.site-header.scrolled .site-logo-image {
    max-height: 21px;
}

.logo-image-link {
    display: flex;
    align-items: center;
}

.site-logo .logo-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
}

.site-logo .logo-text span {
    color: var(--primary);
}

/* Navigation */
.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

/* Hide mobile menu footer on desktop */
.mobile-menu-footer {
    display: none;
}

.main-nav > ul {
    display: flex;
    gap: 12px;
    flex-wrap: nowrap;
    white-space: nowrap;
    margin: 0;
    padding: 0;
    list-style: none;
}

.main-nav li {
    flex-shrink: 0;
    position: relative;
}

.main-nav > ul > li > a {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    position: relative;
    white-space: nowrap;
    display: block;
    padding: 10px 2px;
}

.main-nav > ul > li.menu-item-has-children > a {
    padding-right: 18px;
}

.main-nav > ul > li > a::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.main-nav > ul > li:hover > a::after,
.main-nav > ul > li > a.active::after {
    width: 100%;
}

.main-nav > ul > li:hover > a {
    color: var(--primary);
}

/* Dropdown Submenu */
.main-nav .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: rgba(25, 25, 27, 0.98);
    padding: 15px 0;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    display: block;
    flex-direction: column;
    gap: 0;
}

.main-nav li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-nav .sub-menu li {
    display: block;
    width: 100%;
}

.main-nav .sub-menu a {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    text-transform: none;
    padding: 10px 20px;
    display: block;
    transition: var(--transition);
    white-space: nowrap;
}

.main-nav .sub-menu a:hover {
    color: var(--white);
    background: var(--primary);
}

.main-nav .sub-menu a::after {
    display: none;
}

/* Arrow indicator for items with submenu */
.main-nav > ul > li.menu-item-has-children > a::before {
    content: '';
    position: absolute;
    right: 2px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid currentColor;
    transition: var(--transition);
}

.main-nav > ul > li.menu-item-has-children:hover > a::before {
    border-top-color: var(--primary);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    background: transparent;
    border: none;
    outline: none;
}

/* Mobile Menu Close Button - hidden on desktop */
.menu-close {
    display: none;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

/* Language Switcher */
.language-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.language-switcher ul {
    display: flex;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.language-switcher li {
    display: flex;
    align-items: center;
}

.language-switcher a {
    display: flex;
    align-items: center;
    padding: 4px 8px;
    border-radius: 4px;
    transition: var(--transition);
    opacity: 0.6;
}

.language-switcher a:hover,
.language-switcher .current-lang a {
    opacity: 1;
    background: rgba(255, 255, 255, 0.1);
}

.language-switcher img {
    width: 24px;
    height: 18px;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Header Contact */
.header-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    white-space: nowrap;
}

.header-contact .btn-sm {
    padding: 8px 12px;
    font-size: 0.7rem;
    white-space: nowrap;
}

.header-phone {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--white);
    display: none;
    white-space: nowrap;
}

@media (min-width: 1300px) {
    .header-phone {
        display: flex;
        align-items: center;
    }
}

.header-phone i {
    color: var(--primary);
    margin-right: 8px;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 140px; /* Account for top-bar + header */
    padding-bottom: 120px; /* Space for curved bottom */
    background: linear-gradient(rgba(25, 25, 27, 0.7), rgba(25, 25, 27, 0.7)),
                url('assets/images/hero-bg.jpg') center/cover no-repeat;
    /* Parallax effect */
    background-attachment: fixed;
    /* Curved bottom - convex down (bulging down in center) */
    border-radius: 0 0 50% 50% / 0 0 80px 80px;
    overflow: hidden;
}

/* Hero with Slider - override background */
.hero.hero-slider {
    background: none;
}

/* Hero Slider Container */
.hero-slider-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    transform: scale(1);
}

.hero-slide.active {
    opacity: 1;
    animation: heroSlideZoom 8s ease-out forwards;
}

@keyframes heroSlideZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.08);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(25, 25, 27, 0.25) 0%,
        rgba(25, 25, 27, 0.05) 50%,
        rgba(25, 25, 27, 0.15) 100%
    );
    z-index: 1;
}

/* Ensure content is above slider */
.hero.hero-slider .container {
    position: relative;
    z-index: 2;
}

.hero.hero-slider .hero-scroll {
    z-index: 2;
}

/* Slider Navigation Dots */
.hero-slider-dots {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.6);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.slider-dot:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.3);
}

.slider-dot.active {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.2);
}

.hero-content {
    max-width: 700px;
    color: var(--white);
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 25px;
    line-height: 1.1;
}

.hero-title span {
    color: var(--primary);
}

.hero-title .hero-logo {
    display: block;
    max-width: 350px;
    width: 100%;
    height: auto;
    margin-top: 15px;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

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

/* ==========================================================================
   Experience Section - 15+ років
   ========================================================================== */
.experience-section {
    background: var(--white);
    padding: 80px 0;
}

.experience-main-title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 40px;
    line-height: 1.3;
}

.experience-header {
    text-align: center;
    margin-bottom: 50px;
}

.experience-subtitle {
    font-size: 1.3rem;
    color: var(--gray);
    margin: 0;
}

/* Animated number badge */
.experience-number-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, #ff4757 100%);
    border-radius: 20px;
    padding: 30px 50px;
    margin-bottom: 30px;
    box-shadow: 0 15px 50px rgba(232, 28, 46, 0.35);
    position: relative;
    overflow: hidden;
    animation: pulse-glow 3s ease-in-out infinite;
}

.experience-number-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shine 4s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 15px 50px rgba(232, 28, 46, 0.35);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 20px 60px rgba(232, 28, 46, 0.5);
        transform: scale(1.02);
    }
}

@keyframes shine {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }
    50%, 100% {
        transform: translateX(100%) rotate(45deg);
    }
}

.experience-number {
    font-size: 5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    position: relative;
    z-index: 1;
}

.experience-plus {
    font-size: 4rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    position: relative;
    z-index: 1;
    margin-left: 5px;
}

.experience-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--dark-gray);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.4;
}

/* Single column layout */
.experience-content-single {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.experience-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    max-width: 700px;
    margin: 0 auto;
}

.experience-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Tech Room Slider */
.tech-room-slider {
    max-width: 900px;
    margin: 40px auto 0;
}

.tech-room-slider-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    background: var(--light-gray);
}

.tech-room-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.tech-room-slide.active {
    opacity: 1;
    z-index: 1;
}

.tech-room-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.tech-room-slider-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    padding: 10px 0;
}

.tech-room-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.tech-room-dot:hover {
    background: rgba(232, 28, 46, 0.3);
    transform: scale(1.1);
}

.tech-room-dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

/* Mobile slider adjustments */
@media (max-width: 768px) {
    .tech-room-slider {
        margin: 30px -15px 0;
        max-width: none;
    }

    .tech-room-slider-container {
        border-radius: 0;
        aspect-ratio: 4 / 3;
    }

    .tech-room-slider-dots {
        gap: 10px;
        margin-top: 15px;
    }

    .tech-room-dot {
        width: 10px;
        height: 10px;
    }
}

.experience-text {
    padding: 20px 0;
    text-align: left;
}

.experience-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 20px;
}

.experience-text p:first-child {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--dark-gray);
}

.experience-cta-block {
    margin: 40px 0;
}

.experience-cta {
    padding: 25px 35px;
    background: linear-gradient(135deg, var(--primary) 0%, #ff4757 100%);
    border-radius: 12px;
    color: var(--white) !important;
    font-size: 1.15rem !important;
    display: inline-block;
    box-shadow: 0 10px 30px rgba(232, 28, 46, 0.3);
    margin: 0;
}

.experience-cta strong {
    color: var(--white);
}

@media (max-width: 992px) {
    .experience-number-badge {
        padding: 25px 40px;
    }

    .experience-number {
        font-size: 4rem;
    }

    .experience-plus {
        font-size: 3rem;
    }

    .experience-subtitle {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .experience-section {
        padding: 60px 0;
    }

    .experience-main-title {
        font-size: 1.5rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    .experience-number-badge {
        padding: 20px 30px;
        border-radius: 15px;
    }

    .experience-number {
        font-size: 3rem;
    }

    .experience-plus {
        font-size: 2.5rem;
    }

    .experience-subtitle {
        font-size: 1.1rem;
    }

    .experience-text p {
        font-size: 1rem;
    }

    .experience-cta {
        padding: 20px 25px;
        font-size: 1rem !important;
    }
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

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

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-gray);
    border-radius: 50%;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--primary);
}

.service-icon img,
.service-icon i {
    font-size: 2.5rem;
    color: var(--primary);
    transition: var(--transition);
}

.service-card:hover .service-icon i {
    color: var(--white);
}

.service-card h4 {
    margin-bottom: 15px;
}

.service-card h4 .service-subtitle {
    display: block;
    font-size: 0.85em;
    font-weight: 400;
    color: var(--gray);
    margin-top: 5px;
    text-align: center;
}

.service-card p {
    color: var(--gray);
    margin-bottom: 0;
}

/* ==========================================================================
   Products/Projects Section (Каркаси)
   ========================================================================== */
.products-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

.tab-btn {
    padding: 12px 30px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    background: var(--light-gray);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn:hover,
.tab-btn.active {
    background: var(--primary);
    color: var(--white);
}

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

.product-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 8px 15px;
    background: var(--primary);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 3px;
}

.product-content {
    padding: 25px;
}

.product-content h4 {
    margin-bottom: 10px;
}

.product-price {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.product-price span {
    font-size: 1rem;
    color: var(--gray);
    font-weight: 400;
}

.product-features {
    margin-bottom: 20px;
}

.product-features li {
    padding: 5px 0;
    padding-left: 25px;
    position: relative;
    color: var(--gray);
}

.product-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: 700;
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.about-experience {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--primary);
    color: var(--white);
    padding: 25px 35px;
    border-radius: 10px;
    text-align: center;
}

.about-experience .number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.about-experience .text {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content h2 {
    margin-bottom: 20px;
}

.about-text {
    margin-bottom: 30px;
    color: var(--gray);
}

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

.about-feature {
    display: flex;
    align-items: center;
    gap: 15px;
}

.about-feature i {
    font-size: 1.5rem;
    color: var(--primary);
}

/* ==========================================================================
   Gallery Section
   ========================================================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(232, 28, 46, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

.gallery-overlay i {
    font-size: 2rem;
    color: var(--white);
}

/* ==========================================================================
   Stats Section - Card Style
   ========================================================================== */
.stats-section {
    background: var(--light-gray);
    padding: 0 0 80px 0;
}

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

.stat-card {
    background: var(--primary);
    border-radius: 15px;
    padding: 40px 25px;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(232, 28, 46, 0.3);
    transition: var(--transition);
    overflow: hidden;
    min-width: 0;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(232, 28, 46, 0.4);
}

.stat-card .number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    display: block;
    margin-bottom: 15px;
}

.stat-card .label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.4;
}

@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .stat-card .number {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .stats-section {
        padding: 0 0 60px 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .stat-card {
        padding: 25px 15px;
    }

    .stat-card .number {
        font-size: 1.8rem;
    }

    .stat-card .label {
        font-size: 0.75rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-item {
    text-align: center;
    padding: 40px;
}

.testimonial-text {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--dark-gray);
    margin-bottom: 30px;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 5rem;
    font-family: Georgia, serif;
    color: var(--primary);
    opacity: 0.2;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.testimonial-author img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author-info h5 {
    margin-bottom: 5px;
}

.testimonial-author-info span {
    color: var(--gray);
    font-size: 0.9rem;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h3 {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-item h5 {
    margin-bottom: 5px;
}

.contact-item p {
    color: var(--gray);
    margin-bottom: 0;
}

.contact-form h3 {
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    font-family: var(--font-primary);
    font-size: 1rem;
    border: 1px solid var(--light-gray);
    border-radius: 5px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    background: var(--black);
    color: var(--white);
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-logo img,
.footer-logo .site-logo-image {
    max-height: 45px;
    width: auto;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    flex-direction: row;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
}

.footer-widget h4 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
    color: var(--primary);
    margin-top: 3px;
}

.footer-contact .contact-phones {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.footer-contact .contact-phones span:first-child {
    color: var(--white);
    font-weight: 500;
    margin-bottom: 2px;
}

.footer-contact .contact-phones a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-contact .contact-phones a:hover {
    color: var(--primary);
}

.footer-bottom {
    padding: 25px 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* ==========================================================================
   Responsive Styles
   ========================================================================== */
@media (max-width: 1024px) {
    h1, .hero-title { font-size: 3rem; }
    h2 { font-size: 2rem; }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

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

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

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .header-phone {
        display: none;
    }
}

@media (max-width: 768px) {
    /* Hide top-bar on mobile */
    .top-bar {
        display: none;
    }

    .site-header {
        top: 0;
        background: rgba(25, 25, 27, 0.9);
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
        padding: 10px 0;
    }

    /* Mobile header layout */
    .header-inner {
        gap: 10px;
    }

    /* Smaller logo on mobile - same size always, no change on scroll */
    .site-logo img,
    .site-logo-image,
    .site-header.scrolled .site-logo img,
    .site-header.scrolled .site-logo-image {
        max-height: 16px;
    }

    .menu-toggle {
        display: flex;
        flex-shrink: 0;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: rgba(25, 25, 27, 0.85);
        -webkit-backdrop-filter: blur(20px);
        backdrop-filter: blur(20px);
        padding: 30px 20px 40px 20px;
        transition: right 0.3s ease;
        z-index: 1001;
        display: block;
        overflow-y: auto;
        overflow-x: hidden;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE/Edge */
    }

    .main-nav::-webkit-scrollbar {
        display: none; /* Chrome/Safari */
    }

    .main-nav.active {
        right: 0;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 20px;
        padding-left: 0;
        margin-left: 0;
    }

    .main-nav li {
        padding-left: 0;
        margin-left: 0;
    }

    .main-nav a {
        font-size: 1.2rem;
        padding-left: 0;
    }

    /* Prevent scroll anchor adjustments */
    .main-nav > ul {
        overflow-anchor: none;
    }

    .main-nav > ul > li {
        overflow-anchor: none;
    }

    /* Mobile submenu styles */
    .main-nav .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        box-shadow: none;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        overflow-anchor: none;
    }

    .main-nav .menu-item-has-children.submenu-open > .sub-menu {
        max-height: 500px;
        padding: 10px 0 0 20px;
    }

    .main-nav .sub-menu a {
        padding: 8px 0;
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.7);
    }

    .main-nav .sub-menu a:hover {
        background: transparent;
        color: var(--primary);
    }

    /* Arrow rotation for open submenu */
    .main-nav > ul > li.menu-item-has-children > a::before {
        right: 0;
        left: auto;
        transition: transform 0.3s ease;
    }

    .main-nav > ul > li.menu-item-has-children > a {
        padding-right: 20px;
    }

    .main-nav > ul > li.menu-item-has-children.submenu-open > a::before {
        transform: translateY(-50%) rotate(180deg);
    }

    .header-contact .btn {
        display: none;
    }

    .header-contact {
        gap: 10px;
    }

    /* Mobile Menu Footer */
    .mobile-menu-footer {
        display: block;
        margin-top: auto;
        padding-top: 30px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mobile-lang-switcher {
        margin-bottom: 20px;
    }

    .mobile-lang-switcher .lang-select {
        background: transparent;
        border: 1px solid rgba(255, 255, 255, 0.3);
        color: var(--white);
        font-size: 1rem;
        padding: 8px 15px;
        border-radius: 5px;
        width: 100%;
        max-width: 150px;
    }

    .mobile-phones {
        margin-bottom: 20px;
    }

    .mobile-phone-item {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .mobile-phone-item .phone-label {
        font-size: 0.8rem;
        color: var(--gray);
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .mobile-phone-item a {
        color: var(--white);
        font-size: 1.1rem;
        font-weight: 500;
        transition: var(--transition);
    }

    .mobile-phone-item a:hover {
        color: var(--primary);
    }

    .mobile-social {
        display: flex;
        gap: 12px;
    }

    .mobile-social a {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 50%;
        color: var(--gray);
        font-size: 1rem;
        transition: var(--transition);
    }

    .mobile-social a:hover {
        background: var(--primary);
        color: var(--white);
    }

    .hero {
        min-height: 100vh;
        padding: 100px 0 100px;
    }

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

    .hero-subtitle {
        font-size: 1rem;
        letter-spacing: 2px;
    }

    .hero-title {
        font-size: 1.6rem;
        line-height: 1.2;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    .hero-title .hero-logo {
        max-width: 100%;
        width: 280px;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    .service-icon {
        width: 60px;
        height: 60px;
    }

    .service-icon i {
        font-size: 1.8rem;
    }

    /* Products */
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .product-card {
        max-width: 100%;
    }

    .product-image {
        height: 200px;
    }

    .product-content {
        padding: 20px;
    }

    .product-price {
        font-size: 1.3rem;
    }

    /* About */
    .about-grid {
        gap: 30px;
    }

    .about-image {
        text-align: center;
    }

    .about-experience {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 20px;
        display: inline-block;
    }

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

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

    .about-content .btn {
        margin: 0 auto;
    }

    /* Stats */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-item .number {
        font-size: 2.5rem;
    }

    .stat-item .label {
        font-size: 0.9rem;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .gallery-item {
        aspect-ratio: 1;
    }

    /* Contact */
    .contact-grid {
        gap: 40px;
    }

    .contact-info,
    .contact-form {
        text-align: left;
    }

    .contact-item {
        flex-direction: row;
        text-align: left;
    }

    .contact-item i {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-contact li {
        justify-content: center;
    }

    .site-footer {
        padding-top: 50px;
    }

    /* Section titles */
    .section-title {
        margin-bottom: 30px;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 0.85rem;
    }

    .section {
        padding: 50px 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .stat-item .number {
        font-size: 2rem;
    }

    .stat-item .label {
        font-size: 0.8rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    .service-card h4 {
        font-size: 1.1rem;
    }

    .product-content h4 {
        font-size: 1.2rem;
    }

    .footer-widget h4 {
        font-size: 1.1rem;
    }

    /* Contact form */
    .form-group input,
    .form-group textarea {
        padding: 12px 15px;
        font-size: 0.95rem;
    }

    .contact-item {
        gap: 15px;
        margin-bottom: 20px;
    }

    .contact-item i {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }

    .contact-item h5 {
        font-size: 1rem;
    }

    .contact-item p {
        font-size: 0.9rem;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.6rem;
    }

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

    .stat-item .number {
        font-size: 1.8rem;
    }
}

/* ==========================================================================
   Page Hero (Internal Pages)
   ========================================================================== */
.page-hero {
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 0 60px;
    /* Parallax effect */
    background-attachment: fixed;
    /* Curved bottom - convex down (bulging down in center) */
    border-radius: 0 0 50% 50% / 0 0 60px 60px;
    position: relative;
}

/* Light dark overlay on page-hero (20% opacity) */
.page-hero::after,
.page-hero.kenburns-enabled::after {
    background: rgba(25, 25, 27, 0.2) !important;
}

.page-hero-small {
    min-height: 300px;
}

.page-hero-content {
    padding: 30px 50px;
    display: inline-block;
}

.page-hero-content h1 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 15px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 0, 0, 0.5), 0 0 60px rgba(0, 0, 0, 0.3);
}

.page-hero-content p {
    color: var(--white);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .page-hero-content {
        padding: 20px 25px;
        margin: 0 15px;
    }

    .page-hero-content h1 {
        font-size: 2rem;
    }
}

/* ==========================================================================
   About Page Styles
   ========================================================================== */
.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-label {
    display: inline-block;
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.about-intro-content h2 {
    margin-bottom: 25px;
}

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

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-feature-item i {
    color: var(--primary);
    font-size: 1.2rem;
}

.about-intro-image {
    position: relative;
}

.about-intro-image img {
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--primary);
    color: var(--white);
    padding: 25px 35px;
    border-radius: 10px;
    text-align: center;
}

.experience-badge .number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Why Us Section */
.bg-light {
    background: var(--light-gray);
}

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

.why-us-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.why-us-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.why-us-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-us-icon i {
    font-size: 1.8rem;
    color: var(--primary);
}

.why-us-card:hover .why-us-icon {
    background: var(--primary);
}

.why-us-card:hover .why-us-icon i {
    color: var(--white);
}

/* Services Detailed */
.services-detailed-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-detailed-card {
    display: flex;
    gap: 25px;
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.service-detailed-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-detailed-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.service-detailed-content h4 {
    margin-bottom: 10px;
}

.service-detailed-content p {
    color: var(--gray);
    margin-bottom: 0;
}

/* ==========================================================================
   Investors Page Styles
   ========================================================================== */
.business-intro {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
    font-size: 1.1rem;
    color: var(--gray);
}

.params-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.param-card {
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.param-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.param-card h4 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.param-card p {
    color: var(--gray);
    margin-bottom: 0;
}

/* Investment Table */
.investment-table-wrapper {
    overflow-x: auto;
}

.investment-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.investment-table th,
.investment-table td {
    padding: 20px 30px;
    text-align: left;
    border-bottom: 1px solid var(--light-gray);
}

.investment-table th {
    background: var(--black);
    color: var(--white);
    font-family: var(--font-heading);
}

.investment-table tr.total {
    background: var(--light-gray);
}

.investment-table tr.total td {
    border-bottom: none;
}

/* Profitability */
.profitability-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.profitability-content h2 {
    margin-bottom: 15px;
}

.scenario {
    color: var(--gray);
    margin-bottom: 30px;
}

.profit-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.profit-item {
    background: var(--light-gray);
    padding: 25px;
    border-radius: 10px;
}

.profit-item.highlight {
    background: var(--primary);
    color: var(--white);
}

.profit-label {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.profit-value {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
}

.profit-item.highlight .profit-value {
    color: var(--white);
}

.profitability-image img {
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.profitability-chart {
    background: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    min-height: 400px;
    position: relative;
}

.profitability-chart canvas {
    width: 100% !important;
    height: 100% !important;
    min-height: 350px;
}

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

.advantage-card {
    background: var(--white);
    padding: 35px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.advantage-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: rgba(232, 28, 46, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.advantage-icon i {
    font-size: 1.8rem;
    color: var(--primary);
}

/* Risks */
.risks-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.risk-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.risk-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.risk-header i {
    color: #f0ad4e;
    font-size: 1.5rem;
}

.risk-header h4 {
    margin-bottom: 0;
}

.risk-solution {
    color: var(--gray);
    margin-bottom: 0;
}

.risk-solution i {
    color: var(--accent-green);
    margin-right: 8px;
}

/* Conclusion Section */
.conclusion-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.conclusion-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--dark-gray);
}

/* CTA Section */
.cta-section {
    background: var(--primary);
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 15px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.cta-content .btn-primary {
    background: var(--white);
    color: var(--primary);
}

.cta-content .btn-primary:hover {
    background: var(--black);
    color: var(--white);
}

/* ==========================================================================
   Karkasy Page Styles
   ========================================================================== */
.karkasy-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.karkas-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.karkas-detail-grid.reverse .karkas-detail-image {
    order: 2;
}

.karkas-detail-grid.reverse .karkas-detail-content {
    order: 1;
}

.karkas-detail-image {
    position: relative;
}

.karkas-detail-image img {
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    width: 100%;
}

.karkas-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 5px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
}

.karkas-badge.classic-plus {
    background: #f0ad4e;
}

.karkas-badge.premium {
    background: #5bc0de;
}

.karkas-subtitle {
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.karkas-price {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 25px;
}

.karkas-price span {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.karkas-description h4 {
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.karkas-description p,
.karkas-description ul {
    color: var(--gray);
}

.karkas-description ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.karkas-description ul li {
    margin-bottom: 5px;
}

.karkas-features {
    margin: 25px 0;
}

.karkas-features li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.karkas-features i {
    color: var(--accent-green);
}

/* Comparison Table */
.table-responsive {
    overflow-x: auto;
}

.comparison {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.comparison th,
.comparison td {
    padding: 15px 20px;
    text-align: center;
    border-bottom: 1px solid var(--light-gray);
}

.comparison th {
    background: var(--black);
    color: var(--white);
    font-family: var(--font-heading);
}

.comparison td:first-child {
    text-align: left;
    font-weight: 500;
}

/* ==========================================================================
   Equipment Page Styles
   ========================================================================== */
.equipment-intro.section {
    padding-bottom: 20px;
}

.category-title {
    font-size: 1.8rem;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.category-title i {
    color: var(--primary);
}

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

.equipment-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    align-items: stretch;
}

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

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

.equipment-grid-6 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    align-items: stretch;
}

.cyberwash-card .equipment-image {
    height: 220px;
}

.cyberwash-card .equipment-image img {
    transition: transform 0.3s ease;
}

.cyberwash-card:hover .equipment-image img {
    transform: scale(1.05);
}

/* CyberWash Bestseller */
.cyberwash-bestseller {
    position: relative;
    border: 3px solid #E81C2E !important;
    box-shadow: 0 8px 25px rgba(232, 28, 46, 0.25) !important;
}

.bestseller-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #E81C2E !important;
    color: #fff !important;
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 5px;
    z-index: 100;
    letter-spacing: 1px;
    box-shadow: 0 3px 10px rgba(232, 28, 46, 0.4);
}

.cyberwash-price {
    color: var(--primary) !important;
    font-weight: 700;
    font-size: 1.1rem;
    margin-top: 12px !important;
}

.equipment-grid-6 .cyberwash-card .equipment-image {
    height: 160px;
}

.equipment-grid-6 .cyberwash-card .equipment-content {
    padding: 12px;
}

.equipment-grid-6 .cyberwash-card .equipment-content h4 {
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.equipment-grid-6 .cyberwash-card .equipment-content p {
    font-size: 0.75rem;
    line-height: 1.4;
}

/* CyberWash Top Models Layout */
.cyberwash-top-models {
    margin-bottom: 40px;
}

/* CyberWash Comparison Table */
.cyberwash-comparison-wrapper {
    margin: 40px 0 50px;
    padding: 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.cyberwash-compare-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 25px;
}

.cyberwash-compare-table {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.cyberwash-compare-table th.cyberwash-col-sg {
    background: linear-gradient(135deg, #2C3E50 0%, #1a252f 100%);
    color: #fff;
}

.cyberwash-compare-table th.cyberwash-col-extra {
    background: linear-gradient(135deg, #E81C2E 0%, #b8162a 100%);
    color: #fff;
}

.cyberwash-compare-table td:nth-child(2) {
    background: linear-gradient(180deg, #f8f9fa 0%, #ecf0f1 100%);
}

.cyberwash-compare-table td:nth-child(3) {
    background: linear-gradient(180deg, #fef5f6 0%, #fce8ea 100%);
}

.cyberwash-compare-table tbody tr:hover td:nth-child(2) {
    background: linear-gradient(180deg, #ecf0f1 0%, #dfe4e6 100%);
}

.cyberwash-compare-table tbody tr:hover td:nth-child(3) {
    background: linear-gradient(180deg, #fce8ea 0%, #f9d5d9 100%);
}

.cyberwash-compare-table tbody tr.highlight-row td:nth-child(2) {
    background: #2C3E50;
    color: #fff;
    font-weight: 600;
}

.cyberwash-compare-table tbody tr.highlight-row td:nth-child(3) {
    background: #E81C2E;
    color: #fff;
    font-weight: 600;
}

.cyberwash-compare-table tbody tr.price-row td {
    background: linear-gradient(180deg, #f0fff0 0%, #e8f5e8 100%);
    font-size: 1.1rem;
}

.cyberwash-compare-table tbody tr.price-row td:nth-child(2),
.cyberwash-compare-table tbody tr.price-row td:nth-child(3) {
    color: var(--accent-green);
    font-weight: 700;
}

.cyberwash-top-models .cyberwash-card .equipment-image {
    height: 320px;
}

.cyberwash-top-models .cyberwash-card .equipment-content h4 {
    font-size: 1.3rem;
}

.cyberwash-other-models .cyberwash-card .equipment-image {
    height: 180px;
}

.cyberwash-other-models .cyberwash-card .equipment-content h4 {
    font-size: 1rem;
}

.cyberwash-other-models .cyberwash-card .equipment-content p {
    font-size: 0.85rem;
}

/* CyberWash Advantages */
.cyberwash-advantages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.cyberwash-advantage-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 25px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.cyberwash-advantage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.advantage-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.advantage-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.advantage-content h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--black);
}

.advantage-content p {
    font-size: 0.95rem;
    color: var(--gray);
    margin: 0;
    line-height: 1.6;
}

.cyberwash-models-title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.5rem;
    color: var(--black);
}

/* Vacuum Section */
.vacuum-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.vacuum-gallery-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    cursor: pointer;
}

.vacuum-gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.gallery-zoom-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(232, 28, 46, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-zoom-icon i {
    color: #fff;
    font-size: 1.2rem;
}

.vacuum-gallery-item:hover .gallery-zoom-icon {
    opacity: 1;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

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

.lightbox-close:hover {
    color: var(--primary);
}

.vacuum-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.vacuum-features h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--black);
}

.vacuum-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vacuum-features-list li {
    padding: 8px 0;
    font-size: 0.95rem;
    color: var(--gray);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.vacuum-features-list li i {
    color: var(--accent-green);
    margin-top: 4px;
    flex-shrink: 0;
}

.vacuum-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.vacuum-table thead {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
}

.vacuum-table th {
    padding: 15px;
    text-align: center;
    font-weight: 600;
}

.vacuum-table th:first-child {
    text-align: left;
    width: 50%;
}

.vacuum-table th:not(:first-child) {
    min-width: 120px;
    white-space: nowrap;
}

.vacuum-table th small {
    font-weight: 400;
    opacity: 0.9;
}

.vacuum-table td {
    padding: 12px 15px;
    border-bottom: 1px solid var(--light-gray);
    text-align: center;
}

.vacuum-table td:first-child {
    text-align: left;
}

.vacuum-table td:not(:first-child) {
    white-space: nowrap;
    min-width: 120px;
}

.vacuum-table .price-row {
    background: #f8f9fa;
}

.vacuum-table .price-cell {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    white-space: nowrap !important;
}

.vacuum-table .options-header {
    background: var(--light-gray);
}

.vacuum-table .options-header td {
    padding: 10px 15px;
    font-size: 0.9rem;
}

.vacuum-table tbody tr:hover {
    background: #f8f9fa;
}

.vacuum-warranty {
    margin-top: 20px;
    padding: 15px 20px;
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    border-radius: 8px;
    color: #2e7d32;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.vacuum-warranty i {
    font-size: 1.2rem;
}

@media (max-width: 992px) {
    .vacuum-gallery {
        grid-template-columns: 1fr;
    }

    .vacuum-gallery-item img {
        height: 200px;
    }

    .vacuum-content {
        grid-template-columns: 1fr;
    }
}

/* Stationary Equipment Section */
.stationary-content {
    max-width: 1000px;
    margin: 0 auto;
}

.stationary-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.stationary-gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.stationary-gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.stationary-gallery-item .gallery-zoom-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(232, 28, 46, 0.9);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stationary-gallery-item:hover .gallery-zoom-icon {
    opacity: 1;
}

.stationary-description-block {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.7;
    padding: 20px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.stationary-models,
.stationary-options {
    margin-bottom: 30px;
}

.stationary-models h4,
.stationary-options h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--black);
}

.stationary-table-wrapper {
    overflow-x: auto;
}

.stationary-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.stationary-table thead {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
}

.stationary-table th {
    padding: 15px 12px;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
}

.stationary-table th:first-child {
    text-align: left;
}

.stationary-table th small {
    font-weight: 400;
    opacity: 0.9;
    display: block;
    font-size: 0.75rem;
}

.stationary-table td {
    padding: 12px;
    border-bottom: 1px solid var(--light-gray);
    text-align: center;
    font-size: 0.95rem;
}

.stationary-table td:first-child {
    text-align: left;
}

.stationary-table tbody tr:hover {
    background: #f8f9fa;
}

.stationary-table .price-cell {
    font-weight: 700;
    color: var(--primary);
    white-space: nowrap;
}

.stationary-options-table td:first-child {
    min-width: 300px;
}

.stationary-footer {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.stationary-warranty {
    padding: 15px 20px;
    background: linear-gradient(135deg, #fce4e6, #f8c8cc);
    border-radius: 8px;
    color: #b71c1c;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.stationary-warranty i {
    font-size: 1.2rem;
    color: var(--primary);
}

.stationary-note {
    padding: 15px 20px;
    background: linear-gradient(135deg, #fce4e6, #f8c8cc);
    border-radius: 8px;
    color: #b71c1c;
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.stationary-note i {
    font-size: 1.2rem;
    margin-top: 2px;
    color: var(--primary);
}

@media (max-width: 768px) {
    .stationary-table th,
    .stationary-table td {
        padding: 10px 8px;
        font-size: 0.85rem;
    }

    .stationary-options-table td:first-child {
        min-width: 200px;
    }

    .stationary-gallery {
        grid-template-columns: 1fr;
    }

    .stationary-gallery-item img {
        height: 220px;
    }
}

.equipment-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.equipment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.equipment-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.equipment-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #7F8C8D; /* Default grey for START */
    color: var(--white);
    padding: 5px 15px;
    border-radius: 3px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* START - grey */
.equipment-badge.start,
.equipment-badge:not(.classic):not(.premium):not(.vip) {
    background: #7F8C8D;
    color: var(--white);
}

/* CLASSIC - blue */
.equipment-badge.classic {
    background: #3498DB;
    color: var(--white);
}

/* PREMIUM - corporate red */
.equipment-badge.premium {
    background: var(--primary);
    color: var(--white);
}

/* VIP - gold */
.equipment-badge.vip {
    background: #D4AF37;
    color: var(--black);
}

/* Equipment card without image */
.equipment-badge-only {
    position: relative;
    padding: 15px;
    min-height: 50px;
}

.equipment-badge-only .equipment-badge {
    position: relative;
    top: auto;
    left: auto;
    display: inline-block;
}

/* VIP Placeholder Card */
.equipment-card-placeholder {
    background: linear-gradient(135deg, #f5f5f5, #e8e8e8);
    border: 2px dashed #ccc;
}

.equipment-card-placeholder .equipment-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 150px;
    text-align: center;
}

.equipment-card-placeholder .equipment-content p {
    font-size: 1.2rem;
    font-style: italic;
    color: #999;
}

.equipment-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.equipment-content h4 {
    margin-bottom: 10px;
}

.equipment-content > p {
    color: var(--gray);
    margin-bottom: 15px;
}

.equipment-bottom {
    margin-top: auto;
}

.equipment-specs {
    margin-bottom: 15px;
}

.equipment-specs li {
    padding: 5px 0;
    font-size: 0.9rem;
    color: var(--gray);
}

.equipment-price {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    padding-top: 15px;
}

/* Horizontal Equipment Card */
.equipment-card-horizontal {
    display: flex;
    flex-direction: row;
    align-items: stretch;
}

.equipment-card-horizontal .equipment-image {
    flex: 0 0 350px;
    height: auto;
    min-height: 250px;
}

.equipment-card-horizontal .equipment-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Additional Equipment */
.additional-equipment-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.additional-item {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.additional-item i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.additional-item h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.additional-item p {
    color: var(--gray);
    font-size: 0.85rem;
    margin-bottom: 0;
}

/* Equipment Comparison Table */
.equipment-comparison {
    padding: 80px 0;
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 30px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.comparison-table thead {
    background: var(--black);
    color: var(--white);
}

.comparison-table th {
    padding: 25px 20px;
    text-align: center;
    font-weight: 600;
    vertical-align: middle;
}

.comparison-table th.feature-col {
    text-align: left;
    width: 25%;
}

.comparison-table th .model-badge {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.comparison-table th .model-badge.badge-premium {
    color: var(--secondary);
}

.comparison-table th .model-price {
    display: block;
    font-size: 0.9rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
}

.comparison-table tbody tr {
    border-bottom: 1px solid var(--light-gray);
}

.comparison-table tbody tr:last-child {
    border-bottom: none;
}

.comparison-table tbody tr:hover {
    background: rgba(232, 28, 46, 0.03);
}

.comparison-table td {
    padding: 18px 20px;
    text-align: center;
    vertical-align: middle;
}

.comparison-table td.feature-name {
    text-align: left;
    font-weight: 500;
    color: var(--dark-gray);
}

.comparison-table td.feature-value {
    color: var(--gray);
}

.comparison-table td.feature-premium {
    color: var(--primary);
    font-weight: 600;
}

/* Equipment Options */
.equipment-options {
    padding: 80px 0;
}

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

.option-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    min-height: 140px;
}

.option-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.option-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.option-icon i {
    font-size: 1.3rem;
    color: var(--white);
}

.option-info h4 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--dark-gray);
}

.option-info p {
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 0;
    line-height: 1.4;
}

.option-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--light-gray);
}

/* Fleet Section */
.fleet-intro {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
    font-size: 1.1rem;
    color: var(--gray);
}

.fleet-options-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.fleet-option {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.fleet-option i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.fleet-services {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.fleet-services h4 {
    margin-bottom: 20px;
    text-align: center;
}

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

.fleet-service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 20px;
    background: var(--light-gray);
    border-radius: 10px;
    transition: var(--transition);
}

.fleet-service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.fleet-service-item i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.fleet-service-item span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--dark-gray);
}

/* Cargo Types */
.cargo-types {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.cargo-type {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.cargo-type img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.cargo-type h4 {
    padding: 20px;
    margin-bottom: 0;
}

.cargo-type p {
    padding: 0 20px 20px;
    color: var(--gray);
    margin-bottom: 0;
}

.cargo-type-content {
    padding: 25px;
}

.cargo-type-content h4 {
    padding: 0;
    margin-bottom: 15px;
}

.cargo-type-content p {
    padding: 0;
    margin-bottom: 20px;
}

.cargo-type-content .karkas-features {
    margin-bottom: 20px;
}

.cargo-type-content .btn {
    margin-top: 10px;
}

/* Tech Room */
.tech-room-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.tech-room-image img {
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.tech-room-info ul {
    margin-top: 20px;
}

.tech-room-info li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tech-room-info i {
    color: var(--accent-green);
}

/* ==========================================================================
   Technology Page Styles
   ========================================================================== */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.program-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.program-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.program-icon i {
    font-size: 1.5rem;
    color: var(--primary);
}

.program-card:hover .program-icon {
    background: var(--primary);
}

.program-card:hover .program-icon i {
    color: var(--white);
}

.program-card h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.program-card p {
    color: var(--gray);
    font-size: 0.85rem;
    margin-bottom: 0;
}

/* Programs Intro */
.programs-intro {
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
}

.programs-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 20px;
}

.programs-intro-note {
    font-weight: 500;
    color: var(--dark-gray) !important;
}

/* Extended Programs Grid - for detailed cards */
.programs-grid-extended {
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.program-card-detailed {
    text-align: left;
    padding: 25px;
}

.program-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.program-card-detailed .program-icon {
    margin: 0;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
}

.program-card-detailed h4 {
    margin-bottom: 0;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.program-card-detailed p {
    font-size: 0.9rem;
    line-height: 1.6;
}

@media (max-width: 1200px) {
    .programs-grid-extended {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .programs-grid-extended {
        grid-template-columns: 1fr;
    }

    .programs-intro p {
        font-size: 1rem;
    }
}

/* Tech Grid */
.tech-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.tech-grid.reverse {
    direction: rtl;
}

.tech-grid.reverse > * {
    direction: ltr;
}

.tech-content h2 {
    margin-bottom: 20px;
}

.tech-item {
    margin-bottom: 25px;
    padding: 20px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.tech-item h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.tech-item h4 i {
    color: var(--primary);
}

.tech-item p {
    color: var(--gray);
    margin-bottom: 0;
}

.tech-features {
    margin-top: 20px;
}

.tech-features li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tech-features i {
    color: var(--accent-green);
}

.tech-image img {
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* Payment Grid */
.payment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.payment-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.payment-card i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.payment-card h4 {
    margin-bottom: 10px;
}

.payment-card p {
    color: var(--gray);
    margin-bottom: 0;
}

/* Heating Grid */
.heating-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.heating-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.heating-card i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

/* New Tech */
.new-tech-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.new-tech-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.new-tech-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.new-tech-content {
    padding: 30px;
}

.new-tech-content h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.new-tech-content h4 i {
    color: var(--primary);
}

.new-tech-content p {
    color: var(--gray);
    margin-bottom: 0;
}

/* ==========================================================================
   Objects Page Styles
   ========================================================================== */
.objects-stats {
    background: var(--primary);
    padding: 60px 0;
}

.objects-stats .stats-grid {
    color: var(--white);
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    background: var(--light-gray);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    color: var(--white);
}

.objects-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.object-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.object-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.object-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.object-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.object-card:hover .object-image img {
    transform: scale(1.1);
}

.object-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(232, 28, 46, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.object-card:hover .object-overlay {
    opacity: 1;
}

.view-btn {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.view-btn i {
    color: var(--primary);
    font-size: 1.2rem;
}

.object-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 3px;
    font-size: 0.75rem;
    font-weight: 600;
}

.object-badge.classic {
    background: #f0ad4e;
}

.object-badge.premium {
    background: #5bc0de;
}

.object-content {
    padding: 20px;
}

.object-content h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.object-content p {
    color: var(--gray);
    margin-bottom: 0;
    font-size: 0.9rem;
}

.load-more-wrapper {
    text-align: center;
}

/* Map */
.map-wrapper {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.map-placeholder {
    padding: 60px;
    text-align: center;
}

.map-placeholder i {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.map-cities {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.city-tag {
    background: var(--light-gray);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
}

/* Process Timeline */
.process-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--light-gray);
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.step-content h4 {
    margin-bottom: 10px;
}

.step-content p {
    color: var(--gray);
    font-size: 0.9rem;
    max-width: 180px;
    margin: 0 auto;
}

/* ==========================================================================
   Contacts Page Styles
   ========================================================================== */
.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.contacts-info h2,
.contacts-form h2 {
    margin-bottom: 10px;
}

.contacts-info > p,
.contacts-form > p {
    color: var(--gray);
    margin-bottom: 30px;
}

.contact-items {
    margin-bottom: 30px;
}

.contact-item-large {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-icon {
    width: 55px;
    height: 55px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.3rem;
}

.contact-details h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.contact-details a,
.contact-details p {
    color: var(--gray);
    display: block;
    margin-bottom: 3px;
}

.contact-details a:hover {
    color: var(--primary);
}

.social-links {
    display: flex;
    flex-direction: column;
}

.social-links.footer-social {
    flex-direction: row;
}

.social-links h4 {
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: var(--primary) !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white) !important;
    font-size: 1.2rem;
    text-decoration: none;
    transition: transform 0.3s, background 0.3s;
}

.social-icon:hover {
    background: var(--primary-dark) !important;
    color: var(--white) !important;
    transform: scale(1.1);
}

.social-icon i {
    color: inherit;
}

/* Contacts page social icons */
.contacts-info .social-links .social-icons a,
.contacts-info .social-icons a.social-icon {
    width: 45px;
    height: 45px;
    background: var(--primary) !important;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: var(--white) !important;
    font-size: 1.2rem;
    text-decoration: none;
}

.contacts-info .social-links .social-icons a:hover,
.contacts-info .social-icons a.social-icon:hover {
    background: var(--primary-dark) !important;
    transform: scale(1.1);
}

/* Contact Social Block */
.contact-social-block {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--light-gray);
}

.contact-social-block h5 {
    color: var(--dark-gray);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.contact-social,
.social-links.contact-social {
    display: flex;
    flex-direction: row;
    gap: 12px;
}

.contact-social a,
.social-links.contact-social a,
.contact-social-block .social-links a {
    width: 45px;
    height: 45px;
    background: var(--primary) !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white) !important;
    font-size: 1.2rem;
    text-decoration: none;
}

.contact-social a:hover,
.social-links.contact-social a:hover,
.contact-social-block .social-links a:hover {
    background: var(--primary-dark) !important;
    transform: scale(1.1);
}

/* Contact Form Full */
.contact-form-full {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

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

.contact-form-full label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.contact-form-full select {
    width: 100%;
    padding: 15px 20px;
    font-family: var(--font-primary);
    font-size: 1rem;
    border: 1px solid var(--light-gray);
    border-radius: 5px;
    background: var(--white);
    transition: var(--transition);
}

.contact-form-full select:focus {
    outline: none;
    border-color: var(--primary);
}

.checkbox-group {
    margin-top: 20px;
    margin-bottom: 20px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Global checkbox styles - applies to all forms */
input[type="checkbox"],
.checkbox-label input[type="checkbox"],
.checkbox-group input[type="checkbox"],
.contact-form input[type="checkbox"],
form input[type="checkbox"] {
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;
    max-width: 18px !important;
    min-height: 18px !important;
    max-height: 18px !important;
    border: 2px solid var(--gray) !important;
    border-radius: 3px !important;
    cursor: pointer;
    position: relative;
    transition: var(--transition);
    flex-shrink: 0;
    background: var(--white) !important;
    padding: 0 !important;
    margin: 0 !important;
}

input[type="checkbox"]:checked,
.checkbox-label input[type="checkbox"]:checked,
.checkbox-group input[type="checkbox"]:checked,
.contact-form input[type="checkbox"]:checked,
form input[type="checkbox"]:checked {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
}

input[type="checkbox"]:checked::after,
.checkbox-label input[type="checkbox"]:checked::after,
.checkbox-group input[type="checkbox"]:checked::after,
.contact-form input[type="checkbox"]:checked::after,
form input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    font-size: 12px;
    font-weight: bold;
}

.checkbox-label input[type="checkbox"]:checked {
    background: var(--primary);
    border-color: var(--primary);
}

.checkbox-label input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    font-size: 12px;
    font-weight: bold;
}

.checkbox-label input[type="checkbox"]:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(232, 28, 46, 0.2);
}

.checkbox-label span {
    flex: 1;
}

.checkbox-label a {
    color: var(--primary);
    text-decoration: underline;
}

.checkbox-label a:hover {
    text-decoration: none;
}

.btn-block {
    width: 100%;
}

/* Map Container */
.map-container {
    height: 400px;
    background: var(--light-gray);
}

.map-placeholder-large {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.map-placeholder-large i {
    font-size: 4rem;
    color: var(--gray);
    margin-bottom: 15px;
}

/* FAQ */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
}

.faq-question h4 {
    margin-bottom: 0;
}

.faq-question i {
    color: var(--primary);
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 0 25px 20px;
}

.faq-answer p {
    color: var(--gray);
    margin-bottom: 0;
}

/* ==========================================================================
   Internal Pages Responsive
   ========================================================================== */
@media (max-width: 1024px) {
    .about-intro-grid,
    .karkas-detail-grid,
    .tech-grid,
    .profitability-grid,
    .tech-room-content,
    .contacts-grid {
        grid-template-columns: 1fr;
    }

    .karkas-detail-grid.reverse,
    .tech-grid.reverse {
        direction: ltr;
    }

    /* Ensure image is always first on mobile */
    .karkas-detail-grid {
        display: flex;
        flex-direction: column;
    }

    .karkas-detail-grid .karkas-detail-image {
        order: 1;
    }

    .karkas-detail-grid .karkas-detail-content {
        order: 2;
    }

    .tech-grid {
        display: flex;
        flex-direction: column;
    }

    .tech-grid .tech-image {
        order: 1;
    }

    .tech-grid .tech-content {
        order: 2;
    }

    .why-us-grid,
    .params-grid,
    .payment-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .equipment-grid,
    .equipment-grid-3,
    .equipment-grid-4,
    .advantages-grid,
    .heating-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .equipment-grid-2 {
        max-width: 100%;
    }

    .equipment-grid-6 {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .objects-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .additional-equipment-grid,
    .fleet-options-grid,
    .programs-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .page-hero {
        min-height: 300px;
        padding: 100px 0 50px;
    }

    .page-hero-content h1 {
        font-size: 2rem;
    }

    .page-hero-content p {
        font-size: 1rem;
    }

    /* Ensure image is always first on mobile for karkasy */
    .karkas-detail-grid {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .karkas-detail-grid .karkas-detail-image {
        order: 1;
    }

    .karkas-detail-grid .karkas-detail-content {
        order: 2;
    }

    .tech-grid {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .tech-grid .tech-image {
        order: 1;
    }

    .tech-grid .tech-content {
        order: 2;
    }

    .why-us-grid,
    .params-grid,
    .equipment-grid,
    .equipment-grid-2,
    .equipment-grid-3,
    .equipment-grid-4,
    .equipment-grid-6,
    .advantages-grid,
    .risks-grid,
    .cargo-types,
    .new-tech-grid,
    .payment-grid,
    .heating-grid,
    .cyberwash-advantages {
        grid-template-columns: 1fr;
    }

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

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

    .additional-equipment-grid,
    .fleet-options-grid,
    .programs-grid,
    .options-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Comparison table mobile */
    .comparison-table th,
    .comparison-table td {
        padding: 12px 10px;
        font-size: 0.85rem;
    }

    .comparison-table th .model-badge {
        font-size: 0.95rem;
    }

    .comparison-table th .model-price {
        font-size: 0.75rem;
    }

    .comparison-table th.feature-col {
        width: auto;
        min-width: 120px;
    }

    .process-timeline {
        flex-direction: column;
        gap: 30px;
    }

    .process-timeline::before {
        display: none;
    }

    .step-content p {
        max-width: 100%;
    }

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

    .contact-form-full {
        padding: 25px;
    }

    .profit-stats {
        grid-template-columns: 1fr;
    }

    .about-features-list {
        grid-template-columns: 1fr;
    }

    .experience-badge {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 20px;
        display: inline-block;
    }

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

    .equipment-card-horizontal {
        flex-direction: column;
    }

    .equipment-card-horizontal .equipment-image {
        flex: none;
        height: 200px;
    }

    .fleet-services ul {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .objects-grid {
        grid-template-columns: 1fr;
    }

    .additional-equipment-grid,
    .fleet-options-grid,
    .programs-grid,
    .options-grid {
        grid-template-columns: 1fr;
    }

    .karkas-price span {
        font-size: 1.5rem;
    }

    /* Comparison table very small screens */
    .comparison-table th,
    .comparison-table td {
        padding: 10px 8px;
        font-size: 0.75rem;
    }

    .comparison-table th.feature-col {
        min-width: 90px;
    }

    .option-card {
        padding: 20px;
        min-height: auto;
    }

    .option-price {
        font-size: 1.1rem;
    }
}

/* ==========================================================================
   Parallax - Mobile Fallback
   On mobile devices (especially iOS), background-attachment: fixed doesn't work well
   ========================================================================== */
@media (max-width: 1024px) {
    .hero,
    .page-hero {
        background-attachment: scroll;
    }
}

/* For devices that support touch - disable fixed attachment */
@media (hover: none) and (pointer: coarse) {
    .hero,
    .page-hero {
        background-attachment: scroll;
    }
}

/* Ensure proper background sizing on all devices */
.hero,
.page-hero {
    background-size: cover;
    background-position: center center;
}

/* ==========================================================================
   Ken Burns Effect
   Slow zoom and pan effect on hero background images
   ========================================================================== */

/* Ken Burns container - needed for the effect */
.hero.kenburns-enabled,
.page-hero.kenburns-enabled {
    overflow: hidden;
    position: relative;
}

/* The pseudo-element that animates */
.hero.kenburns-enabled::before,
.page-hero.kenburns-enabled::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    background-size: cover;
    background-position: center center;
    animation: kenburns var(--kenburns-duration, 20s) ease-in-out infinite alternate;
    z-index: 0;
}


/* Dark overlay on top of Ken Burns background */
.hero.kenburns-enabled::after,
.page-hero.kenburns-enabled::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(25, 25, 27, 0.7);
    z-index: 1;
}

/* Content needs to be above the overlay */
.hero.kenburns-enabled .container,
.hero.kenburns-enabled .hero-content,
.hero.kenburns-enabled .hero-scroll,
.page-hero.kenburns-enabled .container,
.page-hero.kenburns-enabled .page-hero-content {
    position: relative;
    z-index: 2;
}

/* Remove inline background when Ken Burns is active */
.hero.kenburns-enabled,
.page-hero.kenburns-enabled {
    background: transparent !important;
}

/* Ken Burns Animation Keyframes */
@keyframes kenburns {
    0% {
        transform: scale(1) translate(0, 0);
    }
    100% {
        transform: scale(1.15) translate(-2%, -1%);
    }
}

/* Disable parallax when Ken Burns is active (they conflict) */
.hero.kenburns-enabled,
.page-hero.kenburns-enabled {
    background-attachment: scroll !important;
}

/* Reduced motion preference - disable animations */
@media (prefers-reduced-motion: reduce) {
    .hero.kenburns-enabled::before,
    .page-hero.kenburns-enabled::before {
        animation: none;
    }
}

/* ==========================================================================
   Parallax Disabled State
   ========================================================================== */
.hero.no-parallax,
.page-hero.no-parallax {
    background-attachment: scroll !important;
}

/* ==========================================================================
   Solutions Pages (Parkings, Business)
   ========================================================================== */

/* Intro Text */
.solutions-intro .intro-text-large {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.solutions-intro .intro-text-large p {
    font-size: 1.3rem;
    color: var(--dark-gray);
    line-height: 1.8;
}

/* Parking Gallery Slider */
.parking-gallery {
    padding-bottom: 60px;
}

.parking-slider-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.parking-slider {
    flex: 1;
    overflow: hidden;
}

.parking-slider-track {
    display: flex;
    gap: 15px;
    transition: transform 0.4s ease;
}

.parking-slide {
    flex: 0 0 calc(33.333% - 10px);
    aspect-ratio: 4/3;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

.parking-slide:hover img {
    transform: scale(1.05);
}

.slider-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.slider-arrow:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--light-gray);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

.slider-dot:hover {
    background: var(--secondary);
}

@media (max-width: 992px) {
    .parking-slide {
        flex: 0 0 calc(50% - 8px);
    }
}

@media (max-width: 768px) {
    .parking-slide {
        flex: 0 0 100%;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .parking-slider-wrapper {
        gap: 10px;
    }
}

/* Features Grid */
.features-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--primary);
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--gray);
    margin-bottom: 0;
}

/* Benefit Highlight */
.benefit-highlight {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 30px 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.benefit-highlight i {
    font-size: 2.5rem;
    opacity: 0.9;
}

.benefit-highlight p {
    font-size: 1.1rem;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Formats Grid */
.formats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.format-card {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.format-icon {
    width: 70px;
    height: 70px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.format-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.format-card h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.format-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.format-card ul li {
    padding: 10px 0;
    border-bottom: 1px solid var(--light-gray);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.format-card ul li:last-child {
    border-bottom: none;
}

.format-card ul li i {
    color: var(--accent-green);
    margin-top: 3px;
}

/* Advantages Grid */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.advantage-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--white);
    padding: 20px 25px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.advantage-item i {
    font-size: 1.5rem;
    color: var(--primary);
    width: 40px;
    flex-shrink: 0;
}

.advantage-item span {
    font-weight: 500;
}

/* Advantages Cards */
.advantages-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.advantage-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.advantage-icon {
    width: 70px;
    height: 70px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.advantage-icon i {
    font-size: 1.8rem;
    color: var(--primary);
}

.advantage-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.advantage-card p {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--light-gray);
    z-index: 0;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 70px;
    height: 70px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.process-step p {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Target Grid */
.target-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.target-grid-6 {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 992px) {
    .target-grid-6 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.target-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--white);
    padding: 25px 30px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.target-item i {
    font-size: 2rem;
    color: var(--primary);
    width: 50px;
    flex-shrink: 0;
}

.target-item span {
    font-weight: 500;
    font-size: 1.05rem;
}

/* Problems Grid */
.problems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.problem-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--light-gray);
    padding: 20px 25px;
    border-radius: 10px;
}

.problem-item i {
    font-size: 1.5rem;
    color: var(--primary);
    width: 40px;
    flex-shrink: 0;
}

.problem-item span {
    font-weight: 500;
}

/* Solution Highlight */
.solution-highlight {
    background: var(--black);
    color: var(--white);
    padding: 30px 40px;
    border-radius: 10px;
    text-align: center;
}

.solution-highlight p {
    font-size: 1.2rem;
    margin-bottom: 0;
}

/* Building Section */
.building-content {
    max-width: 800px;
    margin: 0 auto;
}

.building-text h2 {
    margin-bottom: 20px;
}

.building-text p {
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.building-text ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.building-text ul li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.building-text ul li i {
    color: var(--accent-green);
    font-size: 1.2rem;
}

/* Solutions CTA */
.solutions-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
}

.solutions-cta .cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.solutions-cta h2 {
    color: var(--white);
    margin-bottom: 15px;
}

.solutions-cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.btn-white {
    background: var(--white);
    color: var(--primary);
    padding: 15px 40px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 5px;
    display: inline-block;
    transition: var(--transition);
}

.btn-white:hover {
    background: var(--light-gray);
    transform: translateY(-2px);
}

/* Responsive Solutions Pages */
@media (max-width: 992px) {
    .features-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px;
    }

    .process-steps::before {
        display: none;
    }

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

@media (max-width: 768px) {
    .solutions-intro .intro-text-large p {
        font-size: 1.1rem;
    }

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

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

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

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

    .process-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

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

    .benefit-highlight {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }

    .benefit-highlight i {
        font-size: 2rem;
    }
}

/* ==========================================================================
   Equipment Comparison Page
   ========================================================================== */

/* Series Cards */
.compare-series {
    padding: 60px 0;
    background: var(--black);
}

.series-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.series-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--series-color, var(--primary));
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.series-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.series-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--series-color, var(--primary));
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    white-space: nowrap;
}

.series-card h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin: 15px 0 10px;
}

.series-price {
    color: var(--series-color, var(--primary));
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.series-card .btn-outline-light {
    border-color: var(--series-color, var(--white));
    color: var(--white);
}

.series-card .btn-outline-light:hover {
    background: var(--series-color, var(--primary));
    border-color: var(--series-color, var(--primary));
}

/* Comparison Table - Corporate Style */
.compare-table-section {
    padding: 60px 0;
    background: var(--light-gray);
}

.compare-table-wrapper {
    overflow-x: auto;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    background: var(--white);
    -webkit-overflow-scrolling: touch;
    max-height: none;
}

.compare-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--white);
}

/* Sticky Header - stays at top of wrapper when scrolling */
.compare-table thead th {
    position: sticky;
    top: 0;
    z-index: 10;
}

.compare-table th {
    padding: 20px 15px;
    color: var(--white);
    font-weight: 700;
    text-align: center;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.compare-table th.feature-col {
    text-align: left;
    width: 22%;
    background: var(--black);
    font-size: 0.95rem;
    text-transform: none;
    letter-spacing: 0;
    padding-left: 25px;
}

.compare-table th.series-col {
    border-left: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    min-width: 170px;
    vertical-align: middle;
}

/* Corporate Colors for Series Headers */
/* Характеристика - чорний (вже є в .feature-col) */
/* START - сірий */
.compare-table th.series-start {
    background: #7F8C8D;
    color: var(--white);
}

/* CLASSIC - голубий */
.compare-table th.series-classic {
    background: #3498DB;
    color: var(--white);
}

/* PREMIUM - червоний корпоративний */
.compare-table th.series-premium {
    background: var(--primary);
    color: var(--white);
}

/* VIP - золотий */
.compare-table th.series-vip {
    background: #D4AF37;
    color: var(--black);
}

/* Column backgrounds with vertical gradient - START (grey) */
.compare-table-gradient td.col-start {
    background: linear-gradient(180deg, #F4F6F6 0%, #E5E8E8 100%);
}

/* Column backgrounds with vertical gradient - CLASSIC (blue) */
.compare-table-gradient td.col-classic {
    background: linear-gradient(180deg, #EBF5FB 0%, #D6EAF8 100%);
}

/* Column backgrounds with vertical gradient - PREMIUM (corporate red) */
.compare-table-gradient td.col-premium {
    background: linear-gradient(180deg, #FDEDEC 0%, #FADBD8 100%);
}

/* Column backgrounds with vertical gradient - VIP (gold) */
.compare-table-gradient td.col-vip {
    background: linear-gradient(180deg, #FEF9E7 0%, #FCF3CF 100%);
}

/* Alternating rows for gradient table - slightly darker */
.compare-table-gradient tbody tr:nth-child(even) td.col-start {
    background: linear-gradient(180deg, #E5E8E8 0%, #D5DBDB 100%);
}

.compare-table-gradient tbody tr:nth-child(even) td.col-classic {
    background: linear-gradient(180deg, #D6EAF8 0%, #AED6F1 100%);
}

.compare-table-gradient tbody tr:nth-child(even) td.col-premium {
    background: linear-gradient(180deg, #FADBD8 0%, #F5B7B1 100%);
}

.compare-table-gradient tbody tr:nth-child(even) td.col-vip {
    background: linear-gradient(180deg, #FCF3CF 0%, #F9E79F 100%);
}

/* Hover state for gradient columns */
.compare-table-gradient tbody tr:hover td.col-start {
    background: #D5DBDB;
}

.compare-table-gradient tbody tr:hover td.col-classic {
    background: #AED6F1;
}

.compare-table-gradient tbody tr:hover td.col-premium {
    background: #F5B7B1;
}

.compare-table-gradient tbody tr:hover td.col-vip {
    background: #F9E79F;
}

/* Highlight row for gradient table (Гарантія) */
.compare-table-gradient tbody tr.highlight-row td.col-start {
    background: linear-gradient(180deg, #BDC3C7 0%, #95A5A6 100%);
    font-weight: 700;
}

.compare-table-gradient tbody tr.highlight-row td.col-classic {
    background: linear-gradient(180deg, #85C1E9 0%, #5DADE2 100%);
    font-weight: 700;
}

.compare-table-gradient tbody tr.highlight-row td.col-premium {
    background: linear-gradient(180deg, #F1948A 0%, #EC7063 100%);
    font-weight: 700;
    color: var(--white);
}

.compare-table-gradient tbody tr.highlight-row td.col-vip {
    background: linear-gradient(180deg, #F7DC6F 0%, #F4D03F 100%);
    font-weight: 700;
}

.compare-table th .series-price {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 8px;
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 10px;
    border-radius: 20px;
    display: inline-block;
}

.compare-table th.series-vip .series-price {
    background: rgba(0, 0, 0, 0.15);
    color: var(--black);
}

/* Table Body */
.compare-table td {
    padding: 14px 12px;
    text-align: center;
    border-bottom: 1px solid #eee;
    font-size: 0.9rem;
    color: var(--dark-gray);
    vertical-align: middle;
    line-height: 1.4;
}

.compare-table td.feature-name {
    text-align: left;
    font-weight: 600;
    color: var(--black);
    background: #f8f8f8; /* Solid background for sticky column */
    padding-left: 25px;
    border-right: 2px solid var(--primary);
    font-size: 0.88rem;
}

/* Alternating row colors */
.compare-table tbody tr:nth-child(even) td {
    background: #fafafa;
}

.compare-table tbody tr:nth-child(even) td.feature-name {
    background: #f5f5f5; /* Slightly darker for sticky column on even rows */
}

.compare-table tbody tr:hover td {
    background: #fef2f3; /* Light red, solid */
}

.compare-table tbody tr:hover td.feature-name {
    background: #fce8ea; /* Slightly darker solid red for sticky column */
}

/* Highlight row (Гарантія) */
.compare-table tbody tr.highlight-row {
    background: linear-gradient(90deg, rgba(232, 28, 46, 0.1) 0%, rgba(232, 28, 46, 0.05) 100%);
}

.compare-table tbody tr.highlight-row td {
    font-weight: 700;
    color: var(--black);
}

.compare-table tbody tr.highlight-row td.feature-name {
    color: var(--primary);
}

/* Feature icons */
.compare-table td.has-feature {
    color: var(--accent-green);
}

.compare-table td.has-feature i {
    font-size: 1.2rem;
    filter: drop-shadow(0 2px 3px rgba(57, 185, 114, 0.3));
}

.compare-table td.no-feature {
    color: #d0d0d0;
}

.compare-table td.no-feature i {
    font-size: 1rem;
}

/* Column highlighting on hover */
.compare-table td:nth-child(2) { border-left: 1px solid #eee; }
.compare-table td:nth-child(3) { border-left: 1px solid #eee; }
.compare-table td:nth-child(4) { border-left: 1px solid #eee; }
.compare-table td:nth-child(5) { border-left: 1px solid #eee; }

/* Mobile Responsive */
@media (max-width: 1200px) {
    .compare-table th {
        padding: 15px 10px;
        font-size: 1rem;
    }

    .compare-table th.series-col {
        min-width: 150px;
    }

    .compare-table td {
        padding: 12px 10px;
        font-size: 0.85rem;
    }
}

@media (max-width: 992px) {
    .compare-table-section {
        padding: 40px 0;
    }

    .compare-table-wrapper {
        border-radius: 10px;
        margin: 0 -15px;
        width: calc(100% + 30px);
    }

    .compare-table th {
        padding: 12px 8px;
        font-size: 0.9rem;
    }

    .compare-table th.feature-col {
        min-width: 140px;
        padding-left: 15px;
        font-size: 0.85rem;
    }

    .compare-table th.series-col {
        min-width: 130px;
    }

    .compare-table th .series-price {
        font-size: 0.75rem;
        padding: 3px 8px;
    }

    .compare-table td {
        padding: 10px 8px;
        font-size: 0.8rem;
    }

    .compare-table td.feature-name {
        padding-left: 15px;
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    /* Mobile: enable vertical scroll with sticky header */
    .compare-table-wrapper {
        max-height: calc(100vh - 120px); /* Full height minus site header and some padding */
        overflow-y: auto;
        overflow-x: auto;
    }

    /* Mobile card-like view hint */
    .compare-table-wrapper::before {
        content: '↔ Прокрутіть таблицю ↔';
        display: block;
        text-align: center;
        padding: 10px;
        background: var(--primary);
        color: var(--white);
        font-size: 0.8rem;
        font-weight: 500;
    }

    .compare-table th {
        padding: 10px 6px;
        font-size: 0.8rem;
    }

    /* Corner cell: sticky both horizontally AND vertically */
    .compare-table th.feature-col {
        position: sticky;
        left: 0;
        top: 0;
        z-index: 20; /* Highest - corner cell */
        min-width: 120px;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    }

    /* Series headers: sticky vertically */
    .compare-table th.series-col {
        position: sticky;
        top: 0;
        z-index: 10;
        min-width: 110px;
    }

    /* Feature names: sticky horizontally only */
    .compare-table td.feature-name {
        position: sticky;
        left: 0;
        z-index: 4;
        min-width: 120px;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.05);
    }

    .compare-table th .series-price {
        font-size: 0.7rem;
        margin-top: 5px;
    }

    .compare-table td {
        padding: 8px 6px;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .compare-table th.feature-col,
    .compare-table td.feature-name {
        min-width: 100px;
        font-size: 0.7rem;
        padding: 8px 10px;
    }

    .compare-table th.series-col {
        min-width: 90px;
        font-size: 0.7rem;
    }

    .compare-table th .series-price {
        display: inline-block;
        font-size: 0.6rem;
        padding: 2px 5px;
    }

    .compare-table td {
        font-size: 0.7rem;
        padding: 6px 4px;
    }

    .compare-table td.has-feature i,
    .compare-table td.no-feature i {
        font-size: 0.9rem;
    }
}

/* Scroll indicator animation */
@keyframes scrollHint {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

.compare-table-wrapper::before {
    animation: scrollHint 1.5s ease-in-out infinite;
}

/* Compare Link Button */
.compare-link-wrapper {
    text-align: center;
    margin-top: 30px;
}

.btn-outline-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    transition: var(--transition);
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-outline-primary i {
    transition: transform 0.3s ease;
}

.btn-outline-primary:hover i {
    transform: translateX(5px);
}

/* Hide scroll hint on desktop */
@media (min-width: 769px) {
    .compare-table-wrapper::before {
        display: none;
    }
}

/* Series Cards (if used) */
@media (max-width: 992px) {
    .series-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .series-cards {
        grid-template-columns: 1fr;
    }

    .compare-table th,
    .compare-table td {
        padding: 10px 8px;
        font-size: 0.8rem;
    }

    .category-header {
        font-size: 1.1rem;
    }
}

/* ==========================================================================
   Leasing Section - Card Style
   ========================================================================== */
.leasing-section {
    background: var(--light-gray);
    padding: 80px 0;
}

.leasing-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--black);
    text-align: center;
    margin-bottom: 50px;
}

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

.leasing-card {
    background: var(--dark-gray);
    border-radius: 15px;
    padding: 40px 25px;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(51, 51, 51, 0.3);
    transition: var(--transition);
    overflow: hidden;
    min-width: 0;
}

.leasing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(51, 51, 51, 0.4);
}

.leasing-accent {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    display: block;
    margin-bottom: 15px;
}

.leasing-text {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    line-height: 1.4;
}

.leasing-footer {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 400;
    color: var(--gray);
    text-align: center;
    margin-top: 40px;
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .leasing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .leasing-accent {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .leasing-section {
        padding: 60px 0;
    }

    .leasing-title {
        font-size: 1.8rem;
    }

    .leasing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .leasing-card {
        padding: 25px 15px;
    }

    .leasing-accent {
        font-size: 1.8rem;
    }

    .leasing-text {
        font-size: 0.75rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    .leasing-footer {
        font-size: 0.9rem;
    }
}

/* ==========================================================================
   Food Industry Page Styles
   ========================================================================== */

/* Individual Approach Section */
.food-individual .individual-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.food-individual .individual-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    padding: 20px 25px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.food-individual .individual-item i {
    font-size: 1.5rem;
    color: var(--accent-green);
}

.food-individual .individual-item span {
    font-size: 1rem;
    color: var(--dark-gray);
}

/* Components Section */
.food-components .components-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.food-components .component-item {
    text-align: center;
    padding: 30px;
    background: var(--light-gray);
    border-radius: 10px;
}

.food-components .component-item i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.food-components .component-item p {
    font-size: 1rem;
    color: var(--dark-gray);
    margin: 0;
    line-height: 1.6;
}

/* Steel Section */
.food-steel .steel-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.food-steel .steel-item {
    text-align: center;
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.food-steel .steel-icon {
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.food-steel .steel-icon i {
    font-size: 2rem;
    color: var(--white);
}

.food-steel .steel-item h3 {
    font-size: 1.3rem;
    color: var(--black);
    margin-bottom: 10px;
}

.food-steel .steel-item p {
    font-size: 0.95rem;
    color: var(--gray);
    margin: 0;
}

.food-steel .optimization-text {
    margin-top: 50px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.food-steel .optimization-text p {
    font-size: 1.15rem;
    color: var(--dark-gray);
    line-height: 1.7;
    background: var(--white);
    padding: 30px 40px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--primary);
}

/* Tanks Section */
.food-tanks .tanks-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--dark-gray);
    margin: 30px 0 20px;
}

.food-tanks .tanks-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.food-tanks .tank-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--light-gray);
    padding: 25px 30px;
    border-radius: 10px;
}

.food-tanks .tank-item i {
    font-size: 2rem;
    color: var(--primary);
}

.food-tanks .tank-item span {
    font-size: 1rem;
    color: var(--dark-gray);
}

/* Food Industry Responsive */
@media (max-width: 992px) {
    .food-individual .individual-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 768px) {
    .food-individual .individual-grid,
    .food-components .components-grid,
    .food-steel .steel-grid,
    .food-tanks .tanks-grid {
        grid-template-columns: 1fr;
    }

    .food-steel .optimization-text p {
        padding: 25px 30px;
    }
}

/* ==========================================================================
   Interactive Map Styles
   ========================================================================== */
.map-container {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 50px;
}

#profiwash-map,
#contacts-map {
    width: 100%;
    height: 600px;
}

/* Contacts page map section */
.contacts-map .map-container {
    height: auto;
    margin-bottom: 0;
}

.map-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 40px;
}

.map-stat {
    text-align: center;
}

.map-stat .stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
}

.map-stat .stat-label {
    font-size: 1.1rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Custom Marker */
.custom-marker {
    background: transparent;
    border: none;
}

.marker-pin {
    width: 30px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.marker-pin i {
    font-size: 36px;
    color: var(--primary);
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

/* Custom PW Marker */
.custom-marker-pw {
    background: transparent;
    border: none;
}

.custom-marker-pw svg {
    display: block;
}

/* Map Popup */
.map-popup {
    min-width: 200px;
}

.map-popup h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 8px;
}

.map-popup .popup-address {
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 5px;
}

.map-popup .popup-desc {
    font-size: 0.9rem;
    color: var(--dark-gray);
    font-weight: 500;
    margin-bottom: 10px;
}

.map-popup .popup-directions {
    display: inline-block;
    padding: 8px 15px;
    background: var(--primary);
    color: var(--white);
    border-radius: 5px;
    font-size: 0.85rem;
    text-decoration: none;
    transition: var(--transition);
}

.map-popup .popup-directions:hover {
    background: var(--primary-dark);
}

.map-popup .popup-directions i {
    margin-left: 5px;
}

/* Locations List */
.locations-list {
    margin-top: 50px;
}

.locations-list h3 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--black);
}

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

.location-item {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.location-item:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.location-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.location-icon i {
    color: var(--white);
    font-size: 1rem;
}

.location-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 5px;
}

.location-address {
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 3px;
}

.location-desc {
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 500;
}

/* Map Responsive */
@media (max-width: 992px) {
    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    #profiwash-map,
    #contacts-map {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .map-stats {
        gap: 40px;
    }

    .map-stat .stat-number {
        font-size: 2.5rem;
    }

    #profiwash-map,
    #contacts-map {
        height: 400px;
    }

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

    .locations-list h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    #profiwash-map,
    #contacts-map {
        height: 350px;
    }

    .map-stat .stat-number {
        font-size: 2rem;
    }

    .map-stat .stat-label {
        font-size: 0.9rem;
    }
}

/* ===========================================
   PROFI-Fishky Page Styles
   =========================================== */

/* Fishky Hero - Red Background (override Ken Burns) */
.fishky-hero,
.fishky-hero.kenburns-enabled,
.page-hero.fishky-hero,
.page-hero.fishky-hero.kenburns-enabled {
    background: var(--primary) !important;
    background-attachment: scroll !important;
}

.fishky-hero::before,
.fishky-hero::after,
.fishky-hero.kenburns-enabled::before,
.fishky-hero.kenburns-enabled::after,
.page-hero.fishky-hero::before,
.page-hero.fishky-hero::after,
.page-hero.fishky-hero.kenburns-enabled::before,
.page-hero.fishky-hero.kenburns-enabled::after {
    display: none !important;
    background: none !important;
    content: none !important;
}

.fishky-hero .page-hero-content h1,
.fishky-hero .page-hero-content p {
    color: var(--white);
    text-shadow: none;
}

/* Intro Section */
.fishky-intro {
    padding: 80px 0;
}

.fishky-intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.fishky-intro-content h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--black);
}

.fishky-intro-text {
    text-align: left;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 40px;
}

.fishky-intro-text p {
    margin-bottom: 15px;
}

.fishky-intro-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding-top: 30px;
    border-top: 1px solid var(--light-gray);
}

.fishky-stat {
    text-align: center;
}

.fishky-stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.fishky-stat-label {
    display: block;
    font-size: 0.95rem;
    color: var(--gray);
    margin-top: 10px;
}

/* Article Sections */
.fishky-article {
    padding: 80px 0;
}

.fishky-article-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.fishky-article-grid.reverse {
    direction: rtl;
}

.fishky-article-grid.reverse > * {
    direction: ltr;
}

.fishky-article-content h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--black);
}

.fishky-article-text {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

.fishky-article-text p {
    margin-bottom: 15px;
}

.fishky-article-text h4 {
    color: var(--black);
    font-size: 1.2rem;
    margin: 25px 0 15px;
}

.fishky-article-text ul {
    margin: 15px 0;
    padding-left: 20px;
}

.fishky-article-text ul li {
    margin-bottom: 10px;
}

.fishky-article-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.fishky-article-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Specs Box */
.fishky-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.bg-light .fishky-specs {
    background: var(--white);
}

.fishky-specs-vertical {
    grid-template-columns: 1fr;
}

.fishky-spec {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--light-gray);
}

.fishky-spec:last-child {
    border-bottom: none;
}

.fishky-spec-label {
    color: var(--gray);
    font-size: 0.95rem;
}

.fishky-spec-value {
    font-weight: 600;
    color: var(--black);
}

/* Section Title */
.fishky-section-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 20px;
    color: var(--black);
}

.fishky-section-intro {
    text-align: center;
    color: var(--gray);
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
}

/* Reasons Grid */
.fishky-reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.fishky-reason-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.fishky-reason-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.fishky-reason-number {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.fishky-reason-card h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    padding-right: 50px;
    color: var(--black);
}

.fishky-reason-card p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Full Width Article */
.fishky-article-full {
    max-width: 900px;
    margin: 0 auto;
}

.fishky-article-full h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--black);
}

.fishky-regulator-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

/* Materials Table */
.fishky-materials h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--black);
}

.fishky-materials-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--light-gray);
    border-radius: 10px;
    overflow: hidden;
}

.fishky-materials-table tr {
    border-bottom: 1px solid var(--white);
}

.fishky-materials-table tr:last-child {
    border-bottom: none;
}

.fishky-materials-table td {
    padding: 15px 20px;
}

.fishky-materials-table td:first-child {
    font-weight: 600;
    color: var(--black);
}

.fishky-materials-table td:last-child {
    color: var(--gray);
    text-align: right;
}

/* Responsive */
@media (max-width: 992px) {
    .fishky-article-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .fishky-article-grid.reverse {
        direction: ltr;
    }

    .fishky-article-image {
        order: -1;
    }

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

    .fishky-regulator-grid {
        grid-template-columns: 1fr;
    }

    .fishky-intro-stats {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .fishky-intro-content h2 {
        font-size: 2rem;
    }

    .fishky-intro-stats {
        flex-direction: column;
        gap: 30px;
    }

    .fishky-stat-number {
        font-size: 2.5rem;
    }

    .fishky-reasons-grid {
        grid-template-columns: 1fr;
    }

    .fishky-section-title {
        font-size: 1.7rem;
    }

    .fishky-specs {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .fishky-article {
        padding: 50px 0;
    }

    .fishky-article-content h2,
    .fishky-article-full h2 {
        font-size: 1.5rem;
    }

    .fishky-reason-card {
        padding: 25px 20px;
    }

    .fishky-reason-card h4 {
        font-size: 1rem;
        padding-right: 45px;
    }
}
