/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #b87333;
    --primary-dark: #8b5a2b;
    --secondary-color: #1a2a4a;
    --secondary-dark: #0f1a2e;
    --accent-color: #cd853f;
    --rusty: #b87333;
    --blue: #1a2a4a;
    --text-dark: #1a1a1a;
    --text-light: #f5f5f5;
    --gray: #6c757d;
    --light-gray: #f8f9fa;
    --border-color: #dee2e6;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
    padding: 1.4rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15), 
                0 2px 0 rgba(184,115,51,0.3) inset,
                0 -3px 0 var(--rusty) inset;
    border-bottom: 4px solid var(--rusty);
    border-top: 2px solid rgba(184,115,51,0.2);
    position: relative;
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--rusty) 20%, 
        var(--rusty) 80%, 
        transparent 100%);
    opacity: 0.5;
}

.navbar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        var(--secondary-color) 0%, 
        var(--rusty) 50%, 
        var(--secondary-color) 100%);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    gap: 1rem;
    padding: 0.35rem 0;
    flex-wrap: nowrap;
}

.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    position: relative;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
}

.logo a {
    display: inline-block;
    transition: transform 0.3s, filter 0.3s;
    position: relative;
}

.logo a:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(184,115,51,0.3));
}

.logo img {
    height: 80px;
    width: auto;
    max-width: 200px;
    display: block;
    background: transparent;
}

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

.nav-menu-left {
    flex: 0 1 auto;
    justify-content: flex-start;
    min-width: 0;
}

.nav-menu-right {
    flex: 0 1 auto;
    justify-content: flex-end;
    min-width: 0;
}

.logo {
    flex: 0 0 auto;
    margin: 0 1rem;
}

.nav-menu a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    padding: 0.5rem 0.75rem;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    white-space: nowrap;
    position: relative;
    border-radius: 4px;
    background: transparent;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--rusty) 0%, var(--secondary-color) 100%);
    transition: all 0.3s;
    transform: translateX(-50%);
    border-radius: 2px 2px 0 0;
}

.nav-menu a:hover::before,
.nav-menu a.active::before {
    width: 80%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--rusty);
    background: linear-gradient(135deg, rgba(184,115,51,0.05) 0%, rgba(26,42,74,0.05) 100%);
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 28px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color) 0%, var(--rusty) 100%);
    margin: 5px 0;
    transition: all 0.3s;
    border-radius: 2px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

/* Hero Promo Section */
.hero-promo {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.hero-promo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26,42,74,0.03) 0%, rgba(184,115,51,0.03) 100%);
    z-index: 0;
}

.hero-promo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-promo-media {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-promo-video {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    border: 4px solid var(--rusty);
    width: 70%;
    max-width: 840px;
}

.hero-promo-video::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26,42,74,0.1) 0%, rgba(184,115,51,0.1) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-promo-video video {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.hero-promo-video:hover video {
    transform: scale(1.05);
}

.hero-promo-text h1 {
    font-size: 3.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.1;
}

.hero-promo-text h2 {
    font-size: 2rem;
    color: var(--rusty);
    margin-bottom: 2rem;
    font-weight: 700;
    line-height: 1.3;
}

.hero-promo-description {
    font-size: 1.2rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.hero-promo-features {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.feature-item {
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    border-left: 4px solid var(--rusty);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-item:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.feature-item strong {
    display: block;
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.feature-item p {
    color: var(--gray);
    margin: 0;
    line-height: 1.6;
    font-size: 1rem;
}

.hero-promo-cta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-promo-cta .btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Categories Section */
.categories-section {
    padding: 4rem 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.categories-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    font-weight: 700;
}

.categories-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 3rem;
}

.categories-slider-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 2rem 0;
}

.categories-slider-wrapper::before,
.categories-slider-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.categories-slider-wrapper::before {
    left: 0;
    background: linear-gradient(to right, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
}

.categories-slider-wrapper::after {
    right: 0;
    background: linear-gradient(to left, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
}

.categories-slider {
    display: flex;
    gap: 2rem;
    width: fit-content;
    transition: transform 0.5s ease;
}

.categories-slider.auto-scroll {
    animation: slideLeft 40s linear infinite;
}

.categories-slider.auto-scroll:hover {
    animation-play-state: paused;
}

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

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: white;
    border: 2px solid var(--rusty);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    color: var(--rusty);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.slider-btn:hover {
    background: var(--rusty);
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(184,115,51,0.4);
}

.slider-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.slider-btn-left {
    left: 20px;
}

.slider-btn-right {
    right: 20px;
}

.slider-btn svg {
    width: 24px;
    height: 24px;
}

.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    width: 220px;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--rusty) 0%, var(--secondary-color) 100%);
    transform: scaleX(0);
    transition: transform 0.3s;
    transform-origin: left;
}

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

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-color: var(--rusty);
}

.category-image {
    width: 100%;
    height: 180px;
    overflow: visible;
    border-radius: 8px;
    margin-bottom: 1rem;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 8px;
}

.category-card:hover .category-image img {
    transform: scale(1.2);
}

.category-card h3 {
    color: var(--secondary-color);
    font-size: 1.1rem;
    font-weight: 700;
    text-align: center;
    margin: 0;
    transition: color 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-card:hover h3 {
    color: var(--rusty);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://www.bobcat.com/content/dam/bobcat/common/machines/compact-track-loaders/compact-track-loaders-hero.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26,42,74,0.9) 0%, rgba(184,115,51,0.2) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    color: var(--text-light);
    padding: 4rem 0;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #e0e0e0;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid transparent;
    cursor: pointer;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(184,115,51,0.4);
}

.btn-secondary {
    background: var(--rusty);
    color: white;
    border-color: var(--rusty);
}

.btn-secondary:hover {
    background: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(184,115,51,0.4);
}

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

.btn-light:hover {
    background: var(--light-gray);
    transform: translateY(-2px);
}

/* Sections */
section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 3rem;
}

/* Featured Products */
.featured-products {
    background: var(--light-gray);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

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

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

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.product-content {
    padding: 1.5rem;
}

.product-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.product-description {
    color: var(--gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.product-specs {
    display: grid;
    gap: 0.5rem;
    margin: 1rem 0;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 5px;
}

/* Category Header with Icon */
.category-header-with-icon {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--rusty);
}

.category-icon {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    flex-shrink: 0;
}

.category-title {
    font-size: 2rem;
    color: var(--secondary-color);
    margin: 0;
    font-weight: 700;
}

.category-see-more {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
}

.category-see-more .btn {
    padding: 12px 40px;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Responsive styles for category header */
@media (max-width: 768px) {
    .category-header-with-icon {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .category-icon {
        width: 60px;
        height: 60px;
    }
    
    .category-title {
        font-size: 1.5rem;
    }
}

.spec {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
}

.spec-label {
    font-weight: 600;
    color: var(--secondary-color);
}

.spec-value {
    color: var(--rusty);
    font-weight: 600;
}

/* Why Choose Us */
.why-choose {
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: 10px;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.feature-card p {
    color: var(--gray);
}

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

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Header Phone Button */
.header-phone-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    background: linear-gradient(135deg, var(--rusty) 0%, var(--primary-dark) 100%);
    color: white;
    text-decoration: none;
    padding: 0.4rem 0.6rem;
    border-radius: 8px;
    font-weight: 700;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(184,115,51,0.3);
    white-space: nowrap;
    flex-shrink: 0;
    min-width: fit-content;
    max-width: 130px;
}

.header-phone-btn .phone-emoji {
    font-size: 1.2rem;
    line-height: 1;
    flex-shrink: 0;
}

.header-phone-btn span {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    opacity: 0.95;
    line-height: 1;
}

.header-phone-btn strong {
    font-size: 0.75rem;
    display: block;
    line-height: 1.2;
    font-weight: 900;
    white-space: nowrap;
}

.header-phone-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(184,115,51,0.5);
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--rusty) 100%);
}

/* Footer */
.footer {
    background: linear-gradient(180deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    color: var(--text-light);
    padding: 4rem 0 1.5rem;
    border-top: 4px solid var(--rusty);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--rusty) 20%, 
        var(--rusty) 80%, 
        transparent 100%);
}

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

.footer-column h4 {
    color: var(--rusty);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid var(--rusty);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.footer-phone-column {
    position: relative;
}

.footer-phone-item {
    margin: 2rem 0 !important;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(184,115,51,0.15) 0%, rgba(26,42,74,0.15) 100%);
    border-radius: 12px;
    border: 3px solid var(--rusty);
    box-shadow: 0 4px 15px rgba(184,115,51,0.2), inset 0 0 0 1px rgba(184,115,51,0.3);
}

.footer-phone-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: white !important;
    transition: all 0.3s;
    width: 100%;
    flex-wrap: nowrap;
    min-width: 0;
    overflow: hidden;
}

.footer-phone-link:hover {
    transform: scale(1.05);
}

.footer-phone-link .phone-emoji {
    font-size: 2rem;
    line-height: 1;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(184,115,51,0.3));
}

.footer-phone-number {
    font-size: 1.058rem !important;
    font-weight: 900 !important;
    color: white !important;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
    letter-spacing: 0.5px;
    line-height: 1.2;
    white-space: nowrap;
    word-break: keep-all;
    overflow: hidden;
    text-overflow: ellipsis;
}

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

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: var(--rusty);
}

.footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 62.5px;
    width: auto;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 2px solid rgba(184,115,51,0.3);
    color: var(--gray);
    font-size: 0.95rem;
    font-weight: 600;
}

.footer-bottom p {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

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

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

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 1rem;
    }
    
    .nav-menu a {
        font-size: 0.75rem;
        padding: 0.5rem 0.75rem;
    }
    
    .logo img {
        height: 90px;
        max-width: 225px;
    }
    
    .logo {
        padding: 0;
    }
}

@media (max-width: 768px) {
    .nav-content {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .nav-menu-left,
    .nav-menu-right {
        position: fixed;
        right: -100%;
        top: 100px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.5);
        padding: 2rem 0;
        gap: 1rem;
        flex: none;
    }
    
    .nav-menu-left.active,
    .nav-menu-right.active {
        right: 0;
    }
    
    .nav-menu a {
        color: var(--secondary-color);
        font-size: 1rem;
        padding: 1rem;
        display: block;
    }
    
    .logo {
        order: -1;
        width: 100%;
        justify-content: center;
    }
    
    .logo {
        padding: 0;
        margin: 0.5rem 0;
    }
    
    .logo img {
        height: 78px;
        max-width: 195px;
        background: transparent;
    }
    
    .header-phone-btn {
        display: none;
    }
    
    .burger {
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .footer-phone-number {
        font-size: 1.5rem !important;
    }
    
    .footer-phone-item {
        padding: 1rem !important;
    }

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

    .burger {
        display: block;
    }

    .hero {
        padding: 2rem 0 !important;
    }

    .hero-content {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        text-align: center;
    }

    .hero h1 {
        font-size: 2rem !important;
        margin-bottom: 1rem;
    }

    .hero p {
        font-size: 1rem !important;
    }

    .hero-content > div:first-child > div:first-child {
        font-size: 1rem !important;
        padding: 0.75rem 1.5rem !important;
        display: block !important;
        margin: 0 auto 1.5rem !important;
        width: fit-content;
    }

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

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

    .section-title {
        font-size: 2rem;
    }
    
    .category-card {
        width: 180px;
        padding: 1rem;
    }
    
    .category-image {
        height: 140px;
    }
    
    .category-card h3 {
        font-size: 0.95rem;
    }
    
    .categories-title {
        font-size: 2rem;
    }
    
    .categories-subtitle {
        font-size: 1rem;
    }
    
    .categories-slider {
        gap: 1.5rem;
        animation-duration: 30s;
    }
    
    .categories-slider-wrapper::before,
    .categories-slider-wrapper::after {
        width: 50px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
    }
    
    .slider-btn-left {
        left: 10px;
    }
    
    .slider-btn-right {
        right: 10px;
    }
    
    .slider-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .hero-promo {
        padding: 3rem 0;
    }
    
    .hero-promo-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-promo-media {
        width: 100%;
    }
    
    .hero-promo-video {
        width: 100%;
        max-width: 100%;
    }
    
    .hero-promo-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-promo-text h2 {
        font-size: 1.5rem;
    }
    
    .hero-promo-description {
        font-size: 1.1rem;
    }
    
    .hero-promo-cta {
        flex-direction: column;
    }
    
    .hero-promo-cta .btn {
        width: 100%;
        text-align: center;
    }
}

/* Catalog Page Specific */
.catalog-header {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    color: white;
    padding: 4rem 0 2rem;
    text-align: center;
}

.catalog-grid {
    display: grid;
    gap: 3rem;
    margin-top: 3rem;
}

.catalog-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    padding: 2rem;
}

.catalog-item-image {
    height: 400px;
}

.catalog-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.catalog-item-details h2 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.specs-list {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
}

.specs-list h4 {
    color: var(--rusty);
    margin-bottom: 1rem;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.spec-row:last-child {
    border-bottom: none;
}

@media (max-width: 768px) {
    .catalog-item {
        grid-template-columns: 1fr;
    }
    
    .catalog-item-image {
        height: 250px;
    }
}

/* Contact Page */
.contact-section {
    padding: 3rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-info {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 10px;
}

.contact-info h3 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.info-item {
    display: flex;
    align-items: start;
    margin-bottom: 1.5rem;
}

.info-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
    color: var(--rusty);
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

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

/* About Page */
.about-hero {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 3rem 0;
    align-items: center;
}

.about-text h2 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.about-text p {
    color: var(--gray);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

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

/* Legal Pages */
.legal-page {
    padding: 3rem 0;
    max-width: 900px;
    margin: 0 auto;
}

.legal-page h1 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.legal-page h2 {
    color: var(--secondary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-page p {
    color: var(--gray);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-page ul {
    margin-left: 2rem;
    color: var(--gray);
    line-height: 1.8;
}

.last-updated {
    font-style: italic;
    color: var(--gray);
    margin-bottom: 2rem;
}

/* Partners Slider Section */
.partners-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.partners-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-weight: 700;
}

.partners-slider-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 2rem 0;
}

.partners-slider {
    display: flex;
    gap: 3rem;
    animation: slidePartners 30s linear infinite;
    will-change: transform;
}

.partners-slider:hover {
    animation-play-state: paused;
}

.partner-slide {
    flex: 0 0 auto;
    width: 200px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.partner-slide:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
}

.partner-slide img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: filter 0.3s, opacity 0.3s;
}

.partner-slide:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

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

@media (max-width: 768px) {
    .partners-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .partner-slide {
        width: 150px;
        height: 90px;
        padding: 1rem;
    }
    
    .partners-slider {
        gap: 2rem;
    }
}
