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

html {
    scroll-behavior: smooth;
    background: transparent;
}

body {
    animation: fadeIn 0.8s ease;
}

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

:root {
    --primary-color: #E60012;
    --primary-dark: #B8000E;
    --secondary-color: #000000;
    --navbar-bg: rgba(20, 20, 20, 0.4);
    --text-color: #333333;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --light-gray: #F5F5F5;
    --medium-gray: #E5E5E5;
    --white: #FFFFFF;
    --border-color: #E0E0E0;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-large: 0 8px 24px rgba(0, 0, 0, 0.1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    overflow-x: hidden;
    background: var(--white);
}

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

/* Header */
.header {
    background: rgba(20, 20, 20, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.3s ease;
}

.header.on-hero {
    background: rgba(20, 20, 20, 0.7);
}

.header.on-content {
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header.on-content .nav-menu a {
    color: rgba(0, 0, 0, 0.9);
}

.header.on-content .nav-menu a:hover {
    color: var(--primary-color);
}

.header.on-content .logo-text p {
    color: rgba(0, 0, 0, 0.7);
}


.header.on-content .contact-item {
    color: rgba(0, 0, 0, 0.9);
}

.header.on-content .contact-item:hover {
    color: var(--primary-color);
}

.header.on-content .address-item {
    color: rgba(0, 0, 0, 0.7);
}

.header.on-content .address-item:hover {
    color: rgba(0, 0, 0, 0.7);
}

.header.on-content .menu-toggle i {
    color: var(--secondary-color);
}

.header.on-content .menu-toggle.active i {
    color: var(--primary-color);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    text-decoration: none;
    cursor: pointer;
    border-radius: 8px;
    padding: 4px 8px;
    margin: -4px -8px;
}

.logo-image {
    height: 35px;
    width: auto;
    max-width: 240px;
    min-width: 130px;
    object-fit: contain;
    background: transparent;
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 8px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin: 0;
    white-space: nowrap;
}

/* Navbar */
.navbar {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.header-contact {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex-shrink: 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 5px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 10px;
    white-space: nowrap;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.contact-item i {
    color: var(--primary-color);
    font-size: 11px;
}

.address-item {
    cursor: default;
}

.address-item:hover {
    color: rgba(255, 255, 255, 0.9);
}

.address-item i {
    color: var(--primary-color);
    font-size: 11px;
}

.address-item span {
    font-size: 9px;
    line-height: 1.3;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    font-size: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    text-transform: none;
    letter-spacing: 0;
    padding: 5px 0;
    white-space: nowrap;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transform: translateX(-50%);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu a:hover {
    color: var(--white);
    transform: translateY(-2px);
}

.nav-menu a:hover::before {
    width: 100%;
}

.nav-menu a.active {
    color: var(--white);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
}

/* Menu Toggle - Three Dots */
.menu-toggle {
    display: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 10002;
    position: relative;
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
    pointer-events: auto;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    touch-action: manipulation;
    user-select: none;
    align-items: center;
    justify-content: center;
}

.menu-toggle i {
    font-size: 24px;
    color: var(--white);
    transition: all 0.3s ease;
    display: block;
}

.menu-toggle.active i {
    transform: rotate(90deg);
    color: var(--primary-color);
}

/* Mobile Menu Modal - NEW SYSTEM */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 90%;
    max-width: 400px;
    max-height: 80vh;
    background: rgba(20, 20, 20, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 10001;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    padding: 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    overflow: hidden;
}

.mobile-menu-modal.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.mobile-menu-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10;
}

.mobile-menu-close:hover {
    background: rgba(230, 0, 18, 0.3);
    transform: rotate(90deg);
}

.mobile-menu-close i {
    color: var(--white);
    font-size: 18px;
}

.mobile-menu-list {
    list-style: none;
    margin: 0;
    padding: 40px 0 30px 0;
    display: flex;
    flex-direction: column;
}

.mobile-menu-list li {
    margin: 0;
    padding: 0;
    width: 100%;
}

.mobile-menu-list a {
    display: block;
    width: 100%;
    padding: 18px 25px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 18px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.mobile-menu-list li:first-child a {
    border-top: none;
}

.mobile-menu-list li:last-child a {
    border-bottom: none;
}

.mobile-menu-list a:hover,
.mobile-menu-list a.active {
    background: rgba(230, 0, 18, 0.2);
    color: var(--white);
    padding-left: 30px;
}

body.menu-open {
    overflow: hidden !important;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #0a0a0a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.4;
    animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(100px, 100px);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(230, 0, 18, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 0.6s ease backwards;
}

.hero-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 20px;
    margin-top: -120px;
}

.bridgestone-logo {
    width: 140px;
    height: 140px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.lassa-logo {
    width: 220px;
    height: auto;
    max-height: 100px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.hero-logos:hover .bridgestone-logo,
.hero-logos:hover .lassa-logo {
    opacity: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 0.6s ease backwards;
}

.hero-content h1 {
    font-size: clamp(42px, 8vw, 56px);
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.6s ease backwards;
    animation-delay: 0.2s;
}

.hero-content p {
    font-size: clamp(18px, 3vw, 22px);
    margin-bottom: 30px;
    opacity: 0.9;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.6s ease backwards;
    animation-delay: 0.4s;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease backwards;
    animation-delay: 0.6s;
}

.hero-scroll {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    cursor: pointer;
    font-size: 28px;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    animation: bounce 2s infinite;
    padding: 10px;
    transition: opacity 0.3s ease;
}

.hero-scroll:hover {
    opacity: 0.8;
}

.hero-scroll i {
    font-size: 28px;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-15px);
    }
    60% {
        transform: translateX(-50%) translateY(-8px);
    }
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 35px;
    text-decoration: none;
    border-radius: 0;
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    border: 2px solid transparent;
    cursor: pointer;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(230, 0, 18, 0.4);
}

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

.btn-secondary:hover {
    background: var(--white);
    color: var(--secondary-color);
    border-color: var(--white);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    border-radius: 0;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
    padding: 12px 35px;
    width: 100%;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border-color: var(--secondary-color);
}

/* Features Section */
.features {
    padding: 50px 0;
    background: var(--light-gray);
}

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

.feature-card {
    background: var(--white);
    padding: 35px 30px;
    text-align: center;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.6s ease backwards;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(230, 0, 18, 0.15);
    border-color: rgba(230, 0, 18, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(230, 0, 18, 0.25);
    transition: box-shadow 0.3s ease;
    position: relative;
}

.feature-card:hover .feature-icon {
    box-shadow: 0 12px 30px rgba(230, 0, 18, 0.35);
}

.feature-icon i {
    font-size: 36px;
    color: var(--white);
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: 700;
    transition: color 0.3s ease;
}

.feature-card:hover h3 {
    color: var(--primary-color);
}

.feature-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* Products Section - Modern Redesign */
.products-modern {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.products-header {
    text-align: center;
    margin-bottom: 50px;
    animation: fadeInUp 0.6s ease;
}

.products-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.products-subtitle {
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Products Info Banner */
.products-info-banner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
    animation: fadeInUp 0.6s ease backwards;
    animation-delay: 0.2s;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.info-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
}

.info-text h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.info-text p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

/* Products Wrapper */
.products-wrapper {
    position: relative;
    padding: 20px 0 40px;
}

.products-scroll-container {
    overflow: hidden;
    position: relative;
}

.products-grid-modern {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 30px 20px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) transparent;
    scroll-snap-type: x proximity;
}

.products-grid-modern::-webkit-scrollbar {
    height: 8px;
}

.products-grid-modern::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 10px;
}

.products-grid-modern::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.products-grid-modern::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}


/* Product Card Modern */
.product-card-modern {
    flex: 0 0 auto;
    width: 320px;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.6s ease backwards;
    scroll-snap-align: start;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.product-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.product-card-modern:hover::before {
    transform: scaleX(1);
}

.product-card-modern:nth-child(1) { animation-delay: 0.1s; }
.product-card-modern:nth-child(2) { animation-delay: 0.15s; }
.product-card-modern:nth-child(3) { animation-delay: 0.2s; }
.product-card-modern:nth-child(4) { animation-delay: 0.25s; }
.product-card-modern:nth-child(5) { animation-delay: 0.3s; }
.product-card-modern:nth-child(6) { animation-delay: 0.35s; }
.product-card-modern:nth-child(7) { animation-delay: 0.4s; }

.product-card-modern:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(230, 0, 18, 0.2);
    border-color: rgba(230, 0, 18, 0.2);
}

.product-image-modern {
    height: 240px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    position: relative;
    overflow: hidden;
}

.product-image-modern::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(230, 0, 18, 0.03) 0%, rgba(230, 0, 18, 0.01) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.product-card-modern:hover .product-image-modern::after {
    opacity: 1;
}

.product-image-modern img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

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

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 14px;
    background: var(--primary-color);
    color: white;
    font-size: 11px;
    font-weight: 700;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(230, 0, 18, 0.3);
}

.product-badge.sport {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
}

.product-badge.suv {
    background: linear-gradient(135deg, #4ecdc4 0%, #44a08d 100%);
}

.product-badge.winter {
    background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
}

.product-badge.eco {
    background: linear-gradient(135deg, #00b894 0%, #00a085 100%);
}

.product-badge.safety {
    background: linear-gradient(135deg, #fdcb6e 0%, #e17055 100%);
}

.product-badge.allseason {
    background: linear-gradient(135deg, #a29bfe 0%, #6c5ce7 100%);
}

.product-content-modern {
    padding: 28px 24px;
}

.product-brand {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.product-card-modern:hover .product-brand {
    color: var(--primary-color);
}

.product-description {
    font-size: 15px;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.7;
    font-weight: 500;
    min-height: 50px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-features-modern {
    list-style: none;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product-features-modern li {
    font-size: 14px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: color 0.3s ease;
}

.product-card-modern:hover .product-features-modern li {
    color: var(--text-dark);
}

.product-features-modern li i {
    color: var(--primary-color);
    font-size: 14px;
    flex-shrink: 0;
    width: 18px;
    text-align: center;
}

.product-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    border: 2px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.product-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-dark);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.product-btn span,
.product-btn i {
    position: relative;
    z-index: 1;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-btn:hover {
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(230, 0, 18, 0.3);
}

.product-btn:hover::before {
    left: 0;
}

.product-btn:hover i {
    transform: translateX(5px);
}

/* Legacy Support */
.products {
    padding: 50px 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
    animation: fadeInUp 0.6s ease backwards;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.section-header p {
    font-size: 16px;
    color: var(--text-light);
}

.products-container {
    position: relative;
    padding-bottom: 20px;
}

.products-grid {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 20px 0;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) var(--light-gray);
    scroll-snap-type: x proximity;
    cursor: grab;
}

.products-grid:active {
    cursor: grabbing;
}

.products-grid::-webkit-scrollbar {
    height: 8px;
}

.products-grid::-webkit-scrollbar-track {
    background: var(--light-gray);
}

.products-grid::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

.product-card {
    flex: 0 0 auto;
    width: 280px;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    animation: fadeInUp 0.6s ease backwards;
    scroll-snap-align: start;
}

.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(3) { animation-delay: 0.3s; }
.product-card:nth-child(4) { animation-delay: 0.4s; }
.product-card:nth-child(5) { animation-delay: 0.5s; }
.product-card:nth-child(6) { animation-delay: 0.6s; }

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.product-image {
    height: 200px;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

.product-info {
    padding: 25px 20px;
}

.product-info h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.product-info p {
    font-size: 15px;
    color: var(--text-dark);
    margin-bottom: 18px;
    line-height: 1.7;
    font-weight: 500;
    min-height: 48px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

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

.product-features li {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 8px;
    padding-left: 0;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-features li i {
    color: var(--primary-color);
    font-size: 14px;
    flex-shrink: 0;
}

.product-features li::before {
    display: none;
}

/* Services Section */
.services {
    padding: 50px 0;
    background: var(--light-gray);
}

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

.service-card {
    background: var(--white);
    padding: 35px 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    animation: fadeInUp 0.6s ease backwards;
    position: relative;
    overflow: visible;
    border: 1px solid transparent;
    transform-origin: center;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(230, 0, 18, 0.03) 0%, rgba(230, 0, 18, 0.01) 100%);
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.service-card > * {
    position: relative;
    z-index: 1;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

.service-card:hover {
    transform: scale(1.05) !important;
    box-shadow: 0 15px 35px rgba(230, 0, 18, 0.2) !important;
    border-color: rgba(230, 0, 18, 0.3) !important;
    z-index: 100 !important;
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(230, 0, 18, 0.1) 0%, rgba(230, 0, 18, 0.05) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.service-icon i {
    font-size: 32px;
    color: var(--primary-color);
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
    transition: color 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover h3 {
    color: var(--primary-color);
}

.service-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
    transition: color 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Why Choose Section */
.why-choose {
    padding: 50px 0;
    background: var(--white);
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.why-item {
    display: flex;
    gap: 20px;
    animation: fadeInUp 0.6s ease backwards;
}

.why-item:nth-child(1) { animation-delay: 0.1s; }
.why-item:nth-child(2) { animation-delay: 0.2s; }
.why-item:nth-child(3) { animation-delay: 0.3s; }
.why-item:nth-child(4) { animation-delay: 0.4s; }

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

.why-icon i {
    font-size: 24px;
    color: var(--white);
}

.why-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.why-content p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

/* Contact CTA Section */
.contact-cta {
    padding: 50px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
}

.contact-cta h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.contact-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.contact-method-card {
    background: var(--white);
    padding: 30px 25px;
    text-align: center;
    border-radius: 0;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease backwards;
}

.contact-method-card:nth-child(1) { animation-delay: 0.1s; }
.contact-method-card:nth-child(2) { animation-delay: 0.2s; }
.contact-method-card:nth-child(3) { animation-delay: 0.3s; }

.contact-method-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.contact-method-card i {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-method-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.contact-method-card p,
.contact-method-card a {
    font-size: 14px;
    color: var(--text-light);
    text-decoration: none;
    display: block;
    margin-bottom: 5px;
}

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

/* Modern Contact Section Styles */
.contact-header {
    text-align: center;
    margin-bottom: 50px;
    animation: fadeInUp 0.6s ease;
}

.contact-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-subtitle {
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Compact Contact Methods */
.contact-methods-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 40px;
}

.contact-method-compact {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease backwards;
}

.contact-method-compact:nth-child(1) { animation-delay: 0.1s; }
.contact-method-compact:nth-child(2) { animation-delay: 0.15s; }
.contact-method-compact:nth-child(3) { animation-delay: 0.2s; }
.contact-method-compact:nth-child(4) { animation-delay: 0.25s; }

.contact-method-compact:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.method-icon-compact {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    transition: all 0.3s ease;
}

.method-icon-compact.phone {
    background: var(--primary-color);
}

.method-icon-compact.phone-alt {
    background: #666;
}

.method-icon-compact.whatsapp {
    background: #25D366;
}

.method-icon-compact.instagram {
    background: linear-gradient(135deg, #E4405F 0%, #C13584 50%, #833AB4 100%);
}

.contact-method-compact:hover .method-icon-compact {
    transform: scale(1.1);
}

.method-text-compact {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}

.method-label {
    font-size: 11px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    font-weight: 500;
}

.method-value {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.contact-methods-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.contact-method-card {
    background: var(--white);
    padding: 25px 20px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    animation: fadeInUp 0.6s ease backwards;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 180px;
}

.contact-method-card:nth-child(1) { animation-delay: 0.1s; }
.contact-method-card:nth-child(2) { animation-delay: 0.2s; }
.contact-method-card:nth-child(3) { animation-delay: 0.3s; }

.contact-method-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.method-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 24px;
    transition: all 0.3s ease;
}

.method-icon-wrapper.phone {
    background: var(--primary-color);
    color: white;
}

.method-icon-wrapper.whatsapp {
    background: #25D366;
    color: white;
}

.method-icon-wrapper.instagram {
    background: linear-gradient(135deg, #E4405F 0%, #C13584 50%, #833AB4 100%);
    color: white;
}

.contact-method-card:hover .method-icon-wrapper {
    transform: scale(1.05);
}

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

.method-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.method-description {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 12px;
    line-height: 1.5;
}

.phone-numbers {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 15px;
}

.phone-number-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--light-gray);
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.phone-number-item:hover {
    background: rgba(230, 0, 18, 0.05);
    border-color: var(--primary-color);
    transform: translateX(5px);
}

.phone-number-item i {
    font-size: 20px;
    color: var(--primary-color);
    width: 24px;
    text-align: center;
}

.phone-number-item div {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.phone-number {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    display: block;
}

.phone-label {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 2px;
}

.method-action {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dark);
    margin-top: 8px;
    transition: all 0.3s ease;
}

.whatsapp-card:hover .method-action {
    background: #25D366;
    border-color: #25D366;
    color: white;
}

.instagram-card:hover .method-action {
    background: linear-gradient(135deg, #E4405F 0%, #C13584 50%, #833AB4 100%);
    border-color: transparent;
    color: white;
}

.contact-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.detail-card {
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    gap: 20px;
    transition: all 0.4s ease;
    animation: fadeInUp 0.6s ease backwards;
}

.detail-card:nth-child(1) { animation-delay: 0.2s; }
.detail-card:nth-child(2) { animation-delay: 0.3s; }

.detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.detail-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(230, 0, 18, 0.3);
}

.detail-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.detail-content p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.detail-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.detail-link:hover {
    gap: 10px;
    color: var(--primary-dark);
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.hour-item:last-child {
    border-bottom: none;
}

.hour-item .day {
    font-size: 15px;
    color: var(--text-dark);
    font-weight: 500;
}

.hour-item .time {
    font-size: 15px;
    color: var(--text-light);
    font-weight: 600;
}

.hour-item .time.closed {
    color: #999;
}

/* Beautiful Hours Display */
.hours-display {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 12px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background: var(--light-gray);
    border-radius: 10px;
    transition: all 0.3s ease;
    gap: 20px;
}

.hours-row:hover {
    background: rgba(230, 0, 18, 0.05);
    transform: translateX(4px);
}

.hours-row.closed-row {
    background: rgba(153, 153, 153, 0.1);
    opacity: 0.8;
}

.hours-days {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    flex: 1;
    min-width: 0;
}

.hours-days i {
    color: var(--primary-color);
    font-size: 18px;
    flex-shrink: 0;
}

.hours-days span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hours-time {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
    flex-shrink: 0;
    white-space: nowrap;
}

.hours-time i {
    font-size: 14px;
}

.hours-time.closed {
    color: #999;
}

.hours-time.closed i {
    color: #999;
}

.gallery-map-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 50px;
}

.contact-gallery-modern,
.map-container-modern {
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.section-title-modern {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--light-gray);
}

.section-title-modern h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title-modern h3 i {
    color: var(--primary-color);
}

.section-title-modern p {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 5px;
}

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

.gallery-item-modern {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    transition: all 0.4s ease;
}

.gallery-item-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(230, 0, 18, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.gallery-overlay i {
    font-size: 32px;
    color: white;
}

.gallery-item-modern {
    cursor: pointer;
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.lightbox-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    height: 90vh;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: lightboxZoom 0.3s ease;
}

@keyframes lightboxZoom {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10002;
    backdrop-filter: blur(10px);
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10002;
    backdrop-filter: blur(10px);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
}

@media (max-width: 768px) {
    .lightbox-content {
        width: 95%;
        height: 85vh;
    }
    
    .lightbox-close,
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .lightbox-close {
        top: 10px;
        right: 10px;
    }
}

.map-wrapper-modern {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}


.map-wrapper-modern iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive Design for Contact Page */
@media (max-width: 968px) {
    .gallery-map-section {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid-modern {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-header h2 {
        font-size: 32px;
    }
    
    .contact-subtitle {
        font-size: 16px;
    }
    
    .contact-methods-compact {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .contact-method-compact {
        padding: 14px 12px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .method-icon-compact {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 18px;
    }
    
    .method-text-compact {
        width: 100%;
    }
    
    .method-label {
        font-size: 10px;
    }
    
    .method-value {
        font-size: 13px;
    }
    
    .contact-methods-modern {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-details-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .detail-card {
        flex-direction: column;
        text-align: center;
    }
    
    .detail-icon {
        margin: 0 auto;
    }
    
    .hours-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 16px 18px;
    }
    
    .hours-time {
        align-self: flex-end;
        width: 100%;
        justify-content: flex-end;
    }
    
    .hours-days {
        width: 100%;
    }
    
    .gallery-map-section {
        gap: 20px;
    }
    
    .contact-gallery-modern,
    .map-container-modern {
        padding: 20px;
    }
    
    .map-wrapper-modern {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .contact-methods-compact {
        grid-template-columns: 1fr;
    }
    
    .contact-method-compact {
        flex-direction: row;
        text-align: left;
    }
    
    .about-header h2 {
        font-size: 28px;
    }
    
    .about-text-modern {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .mission-vision {
        grid-template-columns: 1fr;
    }
    
    .values-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .stat-icon,
    .mission-icon,
    .vision-icon,
    .value-icon-modern {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
}

/* About Section */
.about-content {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

/* Modern About Intro */
.about-intro-modern {
    margin-bottom: 60px;
}

.about-header {
    text-align: center;
    margin-bottom: 50px;
    animation: fadeInUp 0.6s ease;
}

.about-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-subtitle {
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.about-text-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text-block {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease backwards;
}

.about-text-block:nth-child(1) { animation-delay: 0.1s; }
.about-text-block:nth-child(2) { animation-delay: 0.2s; }

.about-text-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.text-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    box-shadow: 0 4px 15px rgba(230, 0, 18, 0.3);
}

.text-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.text-content p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

/* Stats Section */
.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin: 60px 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.stat-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease backwards;
    border: 2px solid transparent;
}

.stat-card:nth-child(1) { animation-delay: 0.1s; }
.stat-card:nth-child(2) { animation-delay: 0.2s; }
.stat-card:nth-child(3) { animation-delay: 0.3s; }
.stat-card:nth-child(4) { animation-delay: 0.4s; }

.stat-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 12px 40px rgba(230, 0, 18, 0.15);
}

.stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    box-shadow: 0 8px 20px rgba(230, 0, 18, 0.3);
}

.stat-number {
    font-size: 42px;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 15px;
    color: var(--text-light);
    font-weight: 600;
}

/* Mission & Vision */
.mission-vision {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin: 60px 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.mission-card,
.vision-card {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease backwards;
    position: relative;
    overflow: hidden;
}

.mission-card::before,
.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
}

.mission-card:nth-child(1) { animation-delay: 0.1s; }
.vision-card:nth-child(2) { animation-delay: 0.2s; }

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.mission-icon,
.vision-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 25px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    box-shadow: 0 8px 20px rgba(230, 0, 18, 0.3);
}

.mission-card h3,
.vision-card h3 {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.mission-card p,
.vision-card p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

/* Modern Values Section */
.about-values-modern {
    margin-top: 60px;
}

.values-header {
    text-align: center;
    margin-bottom: 50px;
    animation: fadeInUp 0.6s ease;
}

.values-header h2 {
    font-size: 38px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.values-header p {
    font-size: 17px;
    color: var(--text-light);
}

.values-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card-modern {
    background: var(--white);
    padding: 35px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    animation: fadeInUp 0.6s ease backwards;
    border: 1px solid transparent;
}

.value-card-modern:nth-child(1) { animation-delay: 0.1s; }
.value-card-modern:nth-child(2) { animation-delay: 0.2s; }
.value-card-modern:nth-child(3) { animation-delay: 0.3s; }
.value-card-modern:nth-child(4) { animation-delay: 0.4s; }

.value-card-modern:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 12px 40px rgba(230, 0, 18, 0.15);
}

.value-icon-modern {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 36px;
    box-shadow: 0 8px 20px rgba(230, 0, 18, 0.3);
    transition: all 0.3s ease;
}

.value-card-modern:hover .value-icon-modern {
    transform: scale(1.1) rotate(5deg);
}

.value-card-modern h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.value-card-modern p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* Legacy Support */
.about-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    background: var(--light-gray);
    padding: 30px 25px;
    text-align: center;
    border-radius: 0;
    animation: fadeInUp 0.6s ease backwards;
}

.value-card:nth-child(1) { animation-delay: 0.1s; }
.value-card:nth-child(2) { animation-delay: 0.2s; }
.value-card:nth-child(3) { animation-delay: 0.3s; }

.value-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.value-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

/* Footer */
.footer {
    background: var(--secondary-color);
    color: rgba(255, 255, 255, 0.8);
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-section p,
.footer-section a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

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

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    display: inline-block;
    transition: transform 0.3s ease;
}

.footer-section ul li a:hover {
    transform: translateX(5px);
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar-container {
        display: flex;
        flex-wrap: nowrap;
        gap: 8px;
        padding: 8px 0;
        align-items: center;
        justify-content: flex-start;
        width: 100%;
        position: relative;
    }

    .logo {
        flex-direction: row;
        gap: 6px;
        align-items: center;
        flex: 0 0 auto;
        min-width: 0;
        order: 1;
        padding: 2px 4px;
        margin: -2px -4px;
    }

    .logo-image {
        height: 28px;
        max-width: 110px;
        min-width: 90px;
    }

    .logo-text {
        display: none;
    }

    .navbar {
        display: none !important;
    }

    .header-contact {
        display: flex;
        flex-direction: row;
        gap: 6px;
        order: 2;
        flex: 1 1 auto;
        min-width: 0;
        padding: 0 8px;
        overflow: hidden;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
    }

    .contact-item {
        font-size: 7px;
        gap: 2px;
        white-space: nowrap;
        flex-shrink: 1;
        min-width: 0;
    }

    .contact-item i {
        font-size: 8px;
        flex-shrink: 0;
    }

    .contact-item span {
        font-size: 7px;
        overflow: hidden;
        text-overflow: ellipsis;
        display: inline-block;
    }

    .header-contact {
        flex-direction: column;
        gap: 3px;
        align-items: flex-start;
    }

    .address-item {
        display: flex !important;
        font-size: 7px;
        gap: 3px;
        white-space: normal;
        line-height: 1.2;
        margin-top: 2px;
        width: 100%;
    }

    .address-item i {
        font-size: 8px;
        flex-shrink: 0;
        margin-top: 2px;
    }

    .address-item span {
        font-size: 7px;
        line-height: 1.2;
    }

    /* Menu Toggle - Mobile */
    .menu-toggle {
        display: flex !important;
        order: 3;
        flex-shrink: 0;
        margin-left: auto;
        width: 40px !important;
        height: 40px !important;
        cursor: pointer !important;
        z-index: 10002 !important;
        position: relative !important;
        pointer-events: auto !important;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important;
        touch-action: manipulation !important;
        background: transparent !important;
        border: none !important;
        padding: 0 !important;
    }

    .menu-toggle i {
        font-size: 22px !important;
    }

    .hero {
        height: 100vh;
        min-height: 100vh;
    }

    .hero-logos {
        gap: 25px;
        margin-bottom: 15px;
        margin-top: -90px;
    }

    .bridgestone-logo {
        width: 120px;
        height: 120px;
    }

    .lassa-logo {
        width: 180px;
        max-height: 85px;
    }

    .hero-content h1 {
        font-size: clamp(36px, 8vw, 48px);
    }

    .hero-content p {
        font-size: clamp(16px, 3vw, 20px);
    }

    .features {
        padding: 35px 0;
    }

    .products-modern {
        padding: 60px 0;
    }
    
    .products-header h2 {
        font-size: 32px;
    }
    
    .products-subtitle {
        font-size: 16px;
    }
    
    .products-info-banner {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 40px;
    }
    
    .info-item {
        padding: 18px;
    }
    
    .products-grid-modern {
        gap: 20px;
        padding: 20px 15px;
    }
    
    .product-card-modern {
        width: calc(100vw - 80px);
        min-width: 280px;
        max-width: 320px;
    }
    
    .product-image-modern {
        height: 200px;
        padding: 20px;
    }
    
    .product-content-modern {
        padding: 24px 20px;
    }
    
    .product-brand {
        font-size: 22px;
    }
    
    .product-description {
        font-size: 14px;
        min-height: 44px;
    }
    
    .products {
        padding: 35px 0;
    }

    .services {
        padding: 35px 0;
    }

    .why-choose {
        padding: 35px 0;
    }

    .contact-cta {
        padding: 35px 0;
    }

    .contact-section {
        padding: 35px 0;
    }

    .about-content {
        padding: 50px 0;
    }
    
    .about-header h2 {
        font-size: 32px;
    }
    
    .about-subtitle {
        font-size: 16px;
    }
    
    .about-text-modern {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .about-text-block {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }
    
    .text-icon {
        margin: 0 auto 15px;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-card {
        padding: 25px 20px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .mission-vision {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .mission-card,
    .vision-card {
        padding: 30px 25px;
    }
    
    .values-header h2 {
        font-size: 28px;
    }
    
    .values-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .value-card-modern {
        padding: 25px 20px;
    }

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

    .feature-card {
        padding: 25px 18px;
    }

    .section-header {
        margin-bottom: 30px;
    }

    .section-header h2 {
        font-size: 28px;
    }

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

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

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .products-container {
        padding-bottom: 15px;
    }

    .products-grid {
        gap: 20px;
    }

    .product-card {
        width: calc(100vw - 80px);
        min-width: 260px;
        max-width: 300px;
    }

    .product-image {
        height: 160px;
        padding: 12px;
    }

    .product-image img {
        width: 80%;
        max-height: 180px;
    }

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

    .product-info {
        padding: 20px 15px 18px 15px;
    }

    .product-info h3 {
        font-size: 20px;
    }

    .product-info p {
        font-size: 13px;
    }

    .product-features li {
        font-size: 12px;
    }

    .section-header h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .navbar-container {
        gap: 6px;
        padding: 6px 0;
    }

    .logo-image {
        height: 24px;
        max-width: 95px;
        min-width: 80px;
    }

    .header-contact {
        gap: 4px;
        padding: 0 4px;
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-item {
        font-size: 7px;
        gap: 2px;
    }

    .contact-item i {
        font-size: 8px;
    }

    .contact-item span {
        font-size: 7px;
    }

    .address-item {
        display: flex !important;
        font-size: 6px;
        gap: 2px;
        white-space: normal;
        line-height: 1.2;
        margin-top: 2px;
        width: 100%;
    }

    .address-item i {
        font-size: 7px;
        flex-shrink: 0;
        margin-top: 1px;
    }

    .address-item span {
        font-size: 6px;
        line-height: 1.2;
    }

    .menu-toggle {
        display: flex !important;
        width: 36px !important;
        height: 36px !important;
    }

    .menu-toggle i {
        font-size: 20px !important;
    }

    .hero {
        height: 100vh;
        min-height: 100vh;
    }

    .hero-logos {
        padding: 20px 25px;
        flex-direction: column;
        justify-content: space-around;
    }

    .hero-logos {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 15px;
        margin-top: -60px;
    }

    .bridgestone-logo {
        width: 100px;
        height: 100px;
    }

    .lassa-logo {
        width: 150px;
        max-height: 70px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .section-header h2 {
        font-size: 28px;
    }

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

/* Landscape Mode Fixes */
@media (max-width: 768px) and (orientation: landscape),
       (max-height: 500px) and (orientation: landscape) {
    .header {
        padding: 0;
    }

    .navbar-container {
        padding: 4px 0;
        gap: 6px;
    }

    .logo-image {
        height: 26px;
        max-width: 100px;
        min-width: 85px;
    }

    .header-contact {
        gap: 2px;
        padding-left: 4px;
    }

    .contact-item {
        font-size: 7px;
        gap: 2px;
    }

    .contact-item i {
        font-size: 8px;
    }

    .contact-item span {
        font-size: 7px;
    }

    .menu-toggle i {
        font-size: 18px !important;
    }

    .hero {
        height: 100vh;
        min-height: 100vh;
        max-height: 100vh;
    }

    .hero-logos {
        margin-top: -50px;
        margin-bottom: 10px;
        gap: 15px;
    }

    .bridgestone-logo {
        width: 80px;
        height: 80px;
    }

    .lassa-logo {
        width: 140px;
        max-height: 60px;
    }

    .hero-content h1 {
        font-size: clamp(24px, 5vw, 32px);
        margin-bottom: 5px;
    }

    .hero-content p {
        font-size: clamp(12px, 2.5vw, 16px);
    }

    .hero-scroll {
        bottom: 30px;
    }

    .hero-scroll i {
        font-size: 20px;
    }

    .section-header {
        margin-bottom: 20px;
    }

    .section-header h2 {
        font-size: 24px;
    }
}

/* Loading Animation */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

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

.loader-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(230, 0, 18, 0.1);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

.loader-logo {
    width: 80px;
    height: auto;
    margin-bottom: 20px;
    opacity: 0.8;
    animation: pulse 2s ease-in-out infinite;
}

.loader-text {
    color: var(--text-color);
    font-size: 16px;
    font-weight: 500;
    margin-top: 10px;
    opacity: 0.7;
}

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

/* Error Pages */
.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    padding: 40px 20px;
}

.error-container {
    text-align: center;
    max-width: 600px;
    animation: fadeInUp 0.8s ease;
}

.error-code {
    font-size: 120px;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(230, 0, 18, 0.2);
    animation: bounce 1s ease;
}

.error-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.error-message {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.6;
}

.error-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.error-btn {
    display: inline-block;
    padding: 14px 32px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.error-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

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

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

.error-icon {
    font-size: 80px;
    color: var(--primary-color);
    margin-bottom: 30px;
    opacity: 0.8;
    animation: pulse 2s ease-in-out infinite;
}

@media (max-width: 768px) {
    .error-code {
        font-size: 80px;
    }
    
    .error-title {
        font-size: 24px;
    }
    
    .error-message {
        font-size: 16px;
    }
    
    .error-actions {
        flex-direction: column;
    }
    
    .error-btn {
        width: 100%;
    }
    
    .loader-spinner {
        width: 50px;
        height: 50px;
    }
    
    .loader-logo {
        width: 60px;
    }
}
