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

html, body {
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #2a2a2a;
    margin: 0;
    padding: 0;
}

/* Top Bar */
.top-bar {
    background: #2a2a2a;
    color: white;
    font-size: 0.8rem;
    padding: 6px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1002;
    transition: transform 0.3s ease;
}

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

.top-bar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.top-bar-item:hover {
    opacity: 1;
}

.top-bar-item i {
    color: #ec1c24;
    font-size: 0.8rem;
    width: 14px;
    text-align: center;
}



.top-bar-item span {
    font-weight: 400;
}

.top-bar-right {
    display: flex;
    align-items: center;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.75rem;
}

.social-link:hover {
    background: #ec1c24;
    transform: translateY(-2px);
    color: white;
}

.container {
    max-width: none;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 38px;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    top: 0;
    background: #ffffff;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.nav-logo h2 {
    color: #ec1c24;
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-logo a {
    display: block;
    text-decoration: none;
}

.logo-img {
    height: 48px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #2a2a2a;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link:hover {
    color: #ec1c24;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #ec1c24;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

/* Force opaque background for active dropdown - ENHANCED */
.dropdown.active .dropdown-menu,
.dropdown.active .dropdown-menu *,
.dropdown.active .dropdown-menu li,
.dropdown.active .dropdown-menu a {
    background: #ffffff !important;
    background-color: #ffffff !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Mobile override - remove ALL transforms */
@media (max-width: 768px) {
    .dropdown-menu,
    .dropdown-menu *,
    .dropdown.active .dropdown-menu,
    .dropdown.active .dropdown-menu *,
    .dropdown.active .dropdown-menu li,
    .dropdown.active .dropdown-menu a,
    .navbar .nav-menu .dropdown.active .dropdown-menu,
    .navbar .nav-menu .dropdown.active .dropdown-menu *,
    .navbar .nav-menu .dropdown.active .dropdown-menu li,
    .navbar .nav-menu .dropdown.active .dropdown-menu a {
        transform: none !important;
    }
}

/* Additional active state styles */
.dropdown.active .dropdown-menu {
    background: #ffffff !important;
    background-color: #ffffff !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Mobile override - remove ALL transforms */
@media (max-width: 768px) {
    .dropdown-menu,
    .dropdown.active .dropdown-menu {
        transform: none !important;
    }
}

/* Force solid background for active dropdown on all elements */
.dropdown.active .dropdown-menu,
.dropdown.active .dropdown-menu *,
.dropdown.active .dropdown-menu li,
.dropdown.active .dropdown-menu a {
    background: #ffffff !important;
    background-color: #ffffff !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

/* Most specific selector to override any other CSS - ULTIMATE FIX */
.navbar .nav-menu .dropdown.active .dropdown-menu,
.navbar .nav-menu .dropdown.active .dropdown-menu *,
.navbar .nav-menu .dropdown.active .dropdown-menu li,
.navbar .nav-menu .dropdown.active .dropdown-menu a,
.dropdown.active .dropdown-menu,
.dropdown.active .dropdown-menu *,
.dropdown.active .dropdown-menu li,
.dropdown.active .dropdown-menu a {
    background: #ffffff !important;
    background-color: #ffffff !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Desktop specific active dropdown styles - ENHANCED */
@media (min-width: 769px) {
    .dropdown.active .dropdown-menu {
        background: #ffffff !important;
        background-color: #ffffff !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
    }
    
    .dropdown.active .dropdown-menu *,
    .dropdown.active .dropdown-menu li,
    .dropdown.active .dropdown-menu a {
        background: #ffffff !important;
        background-color: #ffffff !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }
}

/* Ultimate override for desktop active dropdown - FINAL FIX */
@media (min-width: 769px) {
    .navbar .nav-menu .dropdown.active .dropdown-menu,
    .navbar .nav-menu .dropdown.active .dropdown-menu *,
    .navbar .nav-menu .dropdown.active .dropdown-menu li,
    .navbar .nav-menu .dropdown.active .dropdown-menu a,
    .dropdown.active .dropdown-menu,
    .dropdown.active .dropdown-menu *,
    .dropdown.active .dropdown-menu li,
    .dropdown.active .dropdown-menu a {
        background: #ffffff !important;
        background-color: #ffffff !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: #ffffff !important;
    background-color: #ffffff !important;
    min-width: 560px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10001;
    padding: 1rem 0;
    margin-top: 10px;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    background: #ffffff !important;
    background-color: #ffffff !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #ffffff;
}

.dropdown-menu li {
    list-style: none;
    border-right: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    background: #ffffff !important;
    background-color: #ffffff !important;
}

.dropdown-menu li:nth-child(2n) {
    border-right: none;
}

.dropdown-menu li:nth-child(n+13) {
    border-bottom: none;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: #2a2a2a;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    height: 100%;
    min-height: 60px;
    background: #ffffff !important;
    background-color: #ffffff !important;
}

.dropdown-menu a:last-child {
    border-bottom: none;
}

.dropdown-menu a:hover {
    background: #f8f9fa !important;
    background-color: #f8f9fa !important;
    color: #ec1c24;
    transform: translateX(5px);
}

.dropdown-menu i {
    width: 16px;
    color: #ec1c24;
    font-size: 0.9rem;
}

.dropdown-menu a:hover i {
    color: #ec1c24;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #2a2a2a;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section with Slider */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    margin-top: 110px; /* topbar (38px) + navbar (~72px) */
}

.hero-slider {
    height: 100%;
    position: relative;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2a2a2a 0%, #ec1c24 100%);
    transition: transform 0.6s ease-in-out;
    transform: translateX(100%);
}

.slide:first-child {
    transform: translateX(0%);
}

.slide-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    color: white;
}

.slide-text {
    flex: 1;
    max-width: 500px;
    z-index: 2;
}

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

.slide-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    background: #ec1c24;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    background: #d1171f;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(236, 28, 36, 0.3);
}

.slide-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 2rem;
    z-index: 10;
}

.prev-btn, .next-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.prev-btn:hover, .next-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active, .dot:hover {
    background: white;
    transform: scale(1.2);
}

/* Products Section */
.products {
    padding: 100px 0;
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #2a2a2a;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

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

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

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

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

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

.product-info {
    padding: 2rem;
    text-align: center;
}

.product-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2a2a2a;
}

.product-info p {
    color: #666;
    margin-bottom: 1.5rem;
}

.product-btn {
    background: #ec1c24;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.product-btn:hover {
    background: #d1171f;
    transform: translateY(-2px);
}

/* About Section */
.about {
    padding: 100px 0;
    background: white;
}

/* Catalog Section */
.catalog {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.catalog::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, rgba(236, 28, 36, 0.1), rgba(236, 28, 36, 0.05));
    border-radius: 50%;
    z-index: 1;
}

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

.catalog-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2a2a2a;
    margin-bottom: 1.5rem;
}

.catalog-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.catalog-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.feature-item i {
    color: #28a745;
    font-size: 1.1rem;
}

.feature-item span {
    color: #2a2a2a;
    font-weight: 500;
}

.catalog-btn {
    background: linear-gradient(135deg, #ec1c24, #d1171f);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(236, 28, 36, 0.3);
}

.catalog-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(236, 28, 36, 0.4);
}

.catalog-btn i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.catalog-btn:hover i {
    transform: translateY(-2px);
}

.catalog-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.catalog-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    max-width: 400px;
    width: 100%;
}



.catalog-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.catalog-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    transition: transform 0.3s ease;
    object-fit: cover;
}

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

/* Representatives Section */
.representatives {
    padding: 100px 0;
    background: #f8f9fa;
}

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

.representatives-slider-container {
    position: relative;
    margin-top: 3rem;
}

.representatives-swiper {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem 0;
}

.representative-card {
    background: white;
    border-radius: 15px;
    padding: 2rem 1rem;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.representative-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.representative-img {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.representative-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.representative-card:hover .representative-img img {
    filter: grayscale(0%);
}

.representative-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2a2a2a;
}

/* Swiper Arrows */
.representatives-swiper .swiper-button-next,
.representatives-swiper .swiper-button-prev {
    color: #666;
    background: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

/* Swiper arrow color override - HIGH PRIORITY */
.representatives-swiper .swiper-button-next:after,
.representatives-swiper .swiper-button-prev:after,
.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 18px;
    font-weight: bold;
    color: #ec1c24 !important;
}

.representatives-swiper .swiper-button-next:hover,
.representatives-swiper .swiper-button-prev:hover {
    color: #ec1c24;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.representatives-swiper .swiper-button-next:hover:after,
.representatives-swiper .swiper-button-prev:hover:after,
.swiper-button-next:hover:after,
.swiper-button-prev:hover:after {
    color: #ec1c24 !important;
}

.representatives-swiper .swiper-button-next {
    right: 20px;
}

.representatives-swiper .swiper-button-prev {
    left: 20px;
}

/* Representatives Page Styles */
.representatives-hero {
    background: linear-gradient(135deg, #2a2a2a 0%, #ec1c24 100%);
    color: white;
    padding: 150px 0 100px;
    text-align: center;
}

.representatives-hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    margin-top: 2rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.representatives-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 400px;
    margin: 0 auto;
    line-height: 1.6;
}

.representatives-grid-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.representatives-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    justify-items: center;
    width: 100%;
    max-width: 100%;
}

.representative-card {
    background: white;
    border-radius: 8px;
    padding: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
    position: relative;
    overflow: hidden;
    height: 140px;
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.representative-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: #ec1c24;
}

.brand-logo {
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(0%);
    transition: all 0.3s ease;
    padding: 0;
    border-radius: 8px;
}

.representative-card:hover .brand-logo {
    transform: scale(1.05);
}

/* Fair logo özel stili */
.representative-card img[src*="fair.png"] {
    background: #2a2a2a;
    padding: 15px;
    border-radius: 8px;
}

/* Fair kutusu özel stili */
.representative-card:has(img[src*="fair.png"]) {
    background: #2a2a2a;
    border-color: #2a2a2a;
}

/* Representatives Slider */
.representatives-slider {
    position: relative;
    margin: 4rem 0;
    overflow: hidden;
    border-radius: 25px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 3rem 0;
}

.representatives-slider::before,
.representatives-slider::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 40px;
    pointer-events: none;
    z-index: 10;
}

.representatives-slider::before {
    top: 0;
    background: linear-gradient(to bottom, #f8f9fa, transparent);
}

.representatives-slider::after {
    bottom: 0;
    background: linear-gradient(to top, #f8f9fa, transparent);
}

.representatives-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
    will-change: transform;
}

.representative-slide {
    min-width: 220px;
    height: 160px;
    position: relative;
    margin-right: 20px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 3px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.representative-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #ec1c24, #d1171f);
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.representative-slide:hover::before {
    opacity: 0.05;
}

.representative-slide:hover {
    transform: translateY(-8px) scale(1.08);
    box-shadow: 0 20px 40px rgba(236, 28, 36, 0.2);
    border-color: #ec1c24;
}

.representative-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    padding: 10px;
}

.representative-slide:hover img {
    transform: scale(1.05);
}

.brand-logo-slide {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    z-index: 2;
    position: relative;
}

.brand-logo-slide .brand-logo {
    max-width: 100%;
    max-height: 90px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(30%) brightness(0.9);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.representative-slide:hover .brand-logo {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.1);
}

.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(236, 28, 36, 0.9);
    color: white;
    padding: 5px 10px;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.representative-slide:hover .slide-overlay {
    transform: translateY(0);
}

.slide-overlay h3 {
    font-size: 0.8rem;
    font-weight: 600;
    margin: 0;
    text-align: center;
}

.slide-overlay p {
    display: none;
}



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

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #2a2a2a;
}

.about-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    line-height: 1.8;
}

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

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ec1c24;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #666;
    font-weight: 500;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #f8f9fa;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: #ec1c24;
    margin-top: 0.5rem;
    flex-shrink: 0;
    align-self: flex-start;
}



.contact-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2a2a2a;
}

.contact-item p {
    color: #666;
}

/* Contact Map Styles */
.contact-map {
    flex: 1;
}

.contact-map h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #2a2a2a;
    text-align: center;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.map-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 15px;
    filter: grayscale(10%);
    transition: filter 0.3s ease;
}

.map-container:hover iframe {
    filter: grayscale(0%);
}

.submit-btn {
    background: #ec1c24;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #d1171f;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #2a2a2a;
    color: white;
    padding: 60px 0 20px;
    margin-top: 50px;
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #ec1c24;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-logo {
    margin-bottom: 1rem;
}

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

.footer-section p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1rem;
    opacity: 0.9;
    font-size: 0.9rem;
}

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

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

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-section ul li a:hover {
    color: #ec1c24;
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 2rem;
}

.products-column ul {
    list-style: none;
    padding: 0;
}

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

.products-column ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.products-column ul li a:hover {
    color: #ec1c24;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.contact-item i {
    color: #ec1c24;
    margin-top: 0.1rem;
    width: 14px;
    font-size: 0.85rem;
    opacity: 0.8;
}



.contact-item span {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.5;
}

.social-media-section {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-media-section h4 {
    color: #ec1c24;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.social-links-footer {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.social-link-footer:hover {
    transform: translateY(-2px);
    background: #ec1c24;
    color: white;
    box-shadow: 0 4px 12px rgba(236, 28, 36, 0.3);
}

.social-link-footer.facebook:hover {
    background: #1877f2;
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.3);
}

.social-link-footer.twitter:hover {
    background: #000000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.social-link-footer.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    box-shadow: 0 4px 12px rgba(225, 48, 108, 0.3);
}

.social-link-footer.youtube:hover {
    background: #ff0000;
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.3);
}

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

.megasav-link {
    color: #d4983b;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.megasav-link:hover {
    color: #c48830;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Top Bar Mobile - Hidden */
    .top-bar {
        display: none;
    }
    
    /* Navigation Mobile - Adjusted for no top bar */
    .navbar {
        top: 0;
        padding: 0.8rem 0;
    }
    
    .navbar.scrolled {
        top: 0;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .logo-img {
        height: 52px;
    }
    
    .hamburger {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        z-index: 1001;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
        padding: 1rem 0;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }
    
    .navbar.scrolled .nav-menu {
        top: 70px;
        max-height: calc(100vh - 70px);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        margin: 0.5rem 0;
        width: 100%;
    }
    
    .nav-link {
        padding: 1rem 2rem;
        font-size: 1.1rem;
        border-bottom: 1px solid #f0f0f0;
        width: 100%;
        justify-content: center;
        color: #2a2a2a;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .nav-link.active {
        color: #2a2a2a !important;
    }
    
    /* Dropdown Mobile */
    .dropdown-menu {
        position: static !important;
        opacity: 1;
        visibility: visible;
        transform: none !important;
        box-shadow: none;
        background: #f8f9fa;
        background-color: #f8f9fa;
        margin: 0;
        padding: 0;
        border-radius: 0;
        min-width: auto;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        border: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        display: block !important;
        grid-template-columns: none !important;
        left: 0 !important;
        top: auto !important;
    }
    
    .dropdown.active .dropdown-menu {
        max-height: 1000px !important;
        background: #ffffff !important;
        background-color: #ffffff !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        z-index: 10001;
        display: block !important;
        grid-template-columns: none !important;
        transform: none !important;
        left: 0 !important;
        position: static !important;
        top: auto !important;
        width: 100% !important;
        overflow: visible !important;
    }
    
    .dropdown-menu::before {
        display: none;
    }
    
    .dropdown-menu li {
        border-right: none !important;
        border-bottom: 1px solid #e9ecef !important;
        display: block !important;
        width: 100% !important;
    }
    
    .dropdown-menu li:nth-child(2n) {
        border-right: none !important;
    }
    
    .dropdown-menu li:nth-child(n+13) {
        border-bottom: 1px solid #e9ecef !important;
    }
    
    .dropdown-menu a {
        padding: 12px 20px !important;
        border: none !important;
        text-align: left !important;
        margin: 0 !important;
        border-radius: 0 !important;
        min-height: auto !important;
        display: flex !important;
        width: 100% !important;
        color: #2a2a2a !important;
        font-weight: 500 !important;
    }
    
    .dropdown-menu a:hover {
        transform: none;
        background: #e9ecef;
    }
    
    .slide-content {
        flex-direction: column;
        text-align: center;
        padding-top: 50px;
    }
    
    .hero {
        margin-top: 70px; /* navbar height only since topbar is hidden */
    }
    
    .slide-text h1 {
        font-size: 2.5rem;
    }
    
    .slide-text {
        margin-bottom: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .map-container iframe {
        height: 300px;
    }
    
    /* Catalog Mobile */
    .catalog-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .catalog-text h2 {
        font-size: 2rem;
    }
    
    .catalog-image {
        max-width: 300px;
        margin: 0 auto;
    }
    
    /* Representatives Page Mobile */
    .representatives-hero {
        padding: 120px 0 80px;
    }
    
    .representatives-hero h1 {
        font-size: 2.5rem;
    }
    
    .representatives-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .representative-card {
        height: 120px;
        width: 180px;
        padding: 6px;
    }
    
    .brand-logo {
        max-height: 100%;
        width: 100%;
        height: 100%;
        filter: grayscale(0%);
        padding: 0;
    }
    
    /* Fair logo mobil özel stili */
    .representative-card img[src*="fair.png"] {
        background: #2a2a2a;
        padding: 12px;
        border-radius: 6px;
    }
    
    /* Footer Mobile - Only copyright visible */
    .footer {
        padding: 20px 0 15px;
        background: #2a2a2a;
    }
    
    .footer-content {
        display: none;
    }
    
    .footer-bottom {
        text-align: center;
        padding: 15px 0;
        border-top: none;
        color: #999;
        font-size: 0.85rem;
        margin: 0;
    }
    
    .footer-bottom p {
        margin: 0;
        padding: 0 20px;
    }
    
    .stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .slider-controls {
        bottom: 30px;
        gap: 1rem;
    }
    
    .prev-btn, .next-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    /* Representatives Slider Responsive */
    .representative-slide {
        min-width: 190px;
        height: 140px;
        margin-right: 10px;
    }
    
    .representatives .container {
        padding: 0 70px;
    }
    
    .rep-prev-btn {
        left: -60px;
        width: 50px;
        height: 50px;
    }
    
    .rep-next-btn {
        right: -60px;
        width: 50px;
        height: 50px;
    }
    
    .rep-prev-btn i,
    .rep-next-btn i {
        font-size: 1.3rem;
    }
    
    .slide-overlay {
        padding: 3px 8px;
    }
    
    .slide-overlay h3 {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    /* Top Bar Mobile - Hidden */
    .top-bar {
        display: none;
    }
    
    /* Navigation Mobile - Adjusted for no top bar */
    .navbar {
        top: 0;
        padding: 0.6rem 0;
    }
    
    .nav-container {
        padding: 0 10px;
    }
    
    .logo-img {
        height: 46px;
    }
    
    .nav-menu {
        top: 60px;
        max-height: calc(100vh - 60px);
    }
    
    .navbar.scrolled .nav-menu {
        top: 60px;
        max-height: calc(100vh - 60px);
    }
    
    .nav-link {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .dropdown-menu a {
        padding: 0.7rem 2.5rem;
        font-size: 0.95rem;
    }
    
    /* Footer Mobile - Only copyright visible */
    .footer {
        padding: 15px 0 10px;
    }
    
    .footer-bottom {
        padding: 10px 0;
        font-size: 0.8rem;
    }
    
    .footer-bottom p {
        padding: 0 15px;
    }
    
    .slide-text h1 {
        font-size: 2rem;
    }
    
    .slide-text p {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .map-container iframe {
        height: 250px;
    }
    
    /* Catalog Small Mobile */
    .catalog-text h2 {
        font-size: 1.8rem;
    }
    
    .catalog-btn {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .catalog-image {
        max-width: 250px;
        margin: 0 auto;
    }
    
    /* Representatives Page Small Mobile */
    .representatives-hero h1 {
        font-size: 2rem;
    }
    
    .representatives-hero p {
        font-size: 1rem;
    }
    
    .representatives-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .representative-card {
        height: 100px;
        width: 160px;
        padding: 5px;
    }
    
    .brand-logo {
        max-height: 100%;
        width: 100%;
        height: 100%;
        filter: grayscale(0%);
        padding: 0;
    }
    
    /* Fair logo küçük mobil özel stili */
    .representative-card img[src*="fair.png"] {
        background: #2a2a2a;
        padding: 10px;
        border-radius: 4px;
    }
    
    /* Representatives Slider Mobile */
    .representative-slide {
        min-width: 170px;
        height: 100px;
        margin-right: 10px;
    }
    
    .representatives .container {
        padding: 0 60px;
    }
    
    .rep-prev-btn {
        left: -50px;
        width: 45px;
        height: 45px;
    }
    
    .rep-next-btn {
        right: -50px;
        width: 45px;
        height: 45px;
    }
    
    .rep-prev-btn i,
    .rep-next-btn i {
        font-size: 1.2rem;
    }
    
    .slide-overlay {
        padding: 2px 6px;
    }
    
    .slide-overlay h3 {
        font-size: 0.6rem;
    }
}

/* Corporate Page Styles */
.corporate-hero {
    background: linear-gradient(135deg, #2a2a2a 0%, #ec1c24 100%);
    color: white;
    padding: 150px 0 100px;
    text-align: center;
}

.corporate-hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.corporate-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.corporate-about {
    padding: 100px 0;
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #2a2a2a;
}

.about-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ec1c24;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: #666;
    font-weight: 500;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.vision-mission {
    padding: 100px 0;
    background: #f8f9fa;
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.vision-card, .mission-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.vision-card:hover, .mission-card:hover {
    transform: translateY(-10px);
}

.vm-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ec1c24, #d1171f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.vm-icon i {
    font-size: 2rem;
    color: white;
}

.vision-card h3, .mission-card h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #2a2a2a;
}

.vision-card p, .mission-card p {
    color: #666;
    line-height: 1.8;
}

.values {
    padding: 100px 0;
    background: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    background: white;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: #ec1c24;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon i {
    font-size: 1.5rem;
    color: white;
}

.value-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2a2a2a;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

.history {
    padding: 100px 0;
    background: #f8f9fa;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 3rem auto 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #ec1c24;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    background: #ec1c24;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 0 2rem;
    flex: 1;
    max-width: 300px;
}

.timeline-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2a2a2a;
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
}

.team {
    padding: 100px 0;
    background: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.team-member {
    background: #f8f9fa;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-image {
    height: 250px;
    overflow: hidden;
}

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

.member-info {
    padding: 2rem;
    text-align: center;
}

.member-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2a2a2a;
}

.position {
    color: #ec1c24;
    font-weight: 500;
    margin-bottom: 1rem;
}

.description {
    color: #666;
    line-height: 1.6;
}

/* Active nav link */
.nav-link.active {
    color: #ec1c24;
}

.nav-link.active::after {
    width: 100%;
}

/* Responsive Design for Corporate Page */
@media (max-width: 768px) {
    .corporate-hero h1 {
        font-size: 2.5rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .vm-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        flex-direction: row !important;
    }
    
    .timeline-content {
        margin-left: 3rem;
        margin-right: 0;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* Products Page Styles */
.products-hero {
    background: linear-gradient(135deg, #2a2a2a 0%, #ec1c24 100%);
    color: white;
    text-align: center;
    padding: 100px 0;
}

.products-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
    margin-top: 2rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.products-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 400px;
    margin: 0 auto;
}

/* Categories Accordion */
.categories-accordion {
    max-width: 800px;
    margin: 0 auto;
    padding: 50px 0;
}

.category-item {
    background: white;
    border: 1px solid #e1e5e9;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.category-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-header:hover {
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
}

.category-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2a2a2a;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.category-header h3 i {
    color: #ec1c24;
    font-size: 1.2rem;
    width: 20px;
}

.category-header .fa-chevron-down {
    color: #6c757d;
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.category-item.active .fa-chevron-down {
    transform: rotate(180deg);
}

.category-content {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
}

.category-item.active .category-content {
    padding: 30px;
    max-height: 200px;
}

.category-content p {
    color: #6c757d;
    margin-bottom: 20px;
    line-height: 1.6;
}

.category-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ec1c24;
    text-decoration: none;
    font-weight: 500;
    padding: 12px 20px;
    border: 2px solid #ec1c24;
    border-radius: 25px;
    transition: all 0.3s ease;
    background: white;
}

.category-link:hover {
    background: #ec1c24;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(236, 28, 36, 0.3);
}

.category-link i {
    transition: transform 0.3s ease;
}

.category-link:hover i {
    transform: translateX(5px);
}

/* Responsive Design for Products Page */
@media (max-width: 768px) {
    .products-hero h1 {
        font-size: 2.5rem;
    }
    
    .products-hero p {
        font-size: 1.1rem;
    }
    
    .category-header {
        padding: 20px;
    }
    
    .category-header h3 {
        font-size: 1.1rem;
        gap: 10px;
    }
    
    .category-content {
        padding: 0 20px;
    }
    
    .category-item.active .category-content {
        padding: 20px;
    }
    
    .category-link {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .products-hero h1 {
        font-size: 2rem;
    }
    
    .category-header h3 {
        font-size: 1rem;
    }
    
    .category-header h3 i {
        font-size: 1rem;
    }
}

/* Category Page Styles */
.category-hero {
    background: linear-gradient(135deg, #2a2a2a 0%, #ec1c24 100%);
    color: white;
    padding: 150px 0 100px;
    text-align: center;
}

.category-hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    margin-top: 2rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.category-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 400px;
    margin: 0 auto;
}

.breadcrumb {
    background: #f8f9fa;
    padding: 1rem 0;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.breadcrumb-nav a {
    color: #ec1c24;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-nav a:hover {
    color: #d1171f;
}

.breadcrumb-nav span {
    color: #666;
}

.product-filters {
    background: white;
    padding: 2rem 0;
    border-bottom: 1px solid #e9ecef;
}

.filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-group label {
    font-weight: 600;
    color: #2a2a2a;
}

.filter-group select {
    padding: 8px 12px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    background: white;
    font-size: 0.9rem;
    transition: border-color 0.3s ease;
}

.filter-group select:focus {
    outline: none;
    border-color: #ec1c24;
}

.products-grid-section {
    padding: 3rem 0;
    background: #f8f9fa;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.product-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    max-width: 280px;
    margin: 0 auto;
}

.product-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.product-image {
    aspect-ratio: 1;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 220px;
}

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

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

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ec1c24;
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}



.product-specs {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ec1c24;
    margin-bottom: 1rem;
}

.product-actions {
    display: flex;
    gap: 1rem;
}

.btn-primary {
    background: #ec1c24;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
}

.btn-primary:hover {
    background: #d1171f;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #ec1c24;
    border: 2px solid #ec1c24;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
}

.btn-secondary:hover {
    background: #ec1c24;
    color: white;
    transform: translateY(-2px);
}

.pagination {
    background: white;
    padding: 2rem 0;
    border-top: 1px solid #e9ecef;
}

.pagination-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.page-link {
    display: inline-block;
    padding: 10px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
}

.page-link:hover,
.page-link.active {
    background: #ec1c24;
    color: white;
    border-color: #ec1c24;
}

.page-link.next {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Responsive Design for Category Pages */
@media (max-width: 768px) {
    .category-hero h1 {
        font-size: 2.5rem;
    }
    
    .filter-bar {
        flex-direction: column;
        gap: 1rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-actions {
        flex-direction: column;
    }
}

/* Products Section with Sidebar */
.products-section {
    padding: 3rem 0;
    background: #f8f9fa;
}

.products-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 2rem;
    align-items: start;
    max-width: none;
    margin: 0 auto;
    padding: 0 20px;
}

/* Categories Sidebar */
.categories-sidebar {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 2rem;
    margin-left: 20px;
    width: 320px;
}

.categories-sidebar h3 {
    color: #2a2a2a;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e9ecef;
}

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

.category-list li {
    margin-bottom: 0.8rem;
}

.category-list a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1rem;
    color: #666;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.category-list a:hover {
    background: #f8f9fa;
    color: #ec1c24;
    transform: translateX(5px);
}

.category-list i {
    width: 20px;
    color: #ec1c24;
}

/* Products Content */
.products-content {
    flex: 1;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding: 1rem 0;
}

/* Simplified Product Items */
.product-item {
    background: white;
    border-radius: 15px;
    overflow: visible;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    max-width: 280px;
    margin: 0 auto;
    box-sizing: border-box;
    margin-bottom: 1.5rem;
    aspect-ratio: 1;
    min-height: 280px;
}

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

.product-image {
    aspect-ratio: 1;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

/* Product Image Popup Styles */
.product-image {
    cursor: pointer;
}

.image-popup {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
}

.image-popup.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    animation: slideUp 0.3s ease;
    cursor: default;
    pointer-events: none;
}

.popup-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    pointer-events: none;
}

.popup-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    pointer-events: auto;
}

.popup-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* Responsive Design for Sidebar Layout */
@media (max-width: 1024px) {
    .popup-content {
        max-width: 95%;
        max-height: 95%;
    }
    
    .popup-close {
        top: -40px;
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .products-layout {
        grid-template-columns: 280px 1fr;
        gap: 1.5rem;
        padding: 0 10px;
        max-width: none;
    }
    
    .categories-sidebar {
        padding: 1.2rem;
        margin-left: 15px;
        width: 280px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 1366px) {
    .products-layout {
        grid-template-columns: 260px 1fr;
        gap: 1rem;
        padding: 0 10px;
        max-width: none;
    }
    
    .categories-sidebar {
        padding: 1rem;
        margin-left: 10px;
        width: 260px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }
    
    .product-item {
        min-height: 260px;
    }
}

@media (max-width: 1600px) and (min-width: 1367px) {
    .products-layout {
        grid-template-columns: 300px 1fr;
        gap: 1.5rem;
        padding: 0 15px;
        max-width: none;
    }
    
    .categories-sidebar {
        padding: 1.3rem;
        margin-left: 15px;
        width: 300px;
    }
    
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.8rem;
    }
}

@media (max-width: 768px) {
    .popup-content {
        max-width: 98%;
        max-height: 98%;
    }
    
    .popup-close {
        top: -35px;
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
    
    .products-layout {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        padding: 0;
        width: 100%;
    }
    
    .categories-sidebar {
        position: static;
        order: 2;
        margin-left: 0;
        width: 100%;
        padding: 2rem;
    }
    
    .products-content {
        order: 1;
        display: flex;
        justify-content: center;
        width: 100%;
        padding: 0 40px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        justify-items: center;
        width: 100%;
        max-width: 100%;
        text-align: center;
    }
    
    .category-list a {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .product-item {
        margin-bottom: 1rem;
        width: 100%;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 480px) {
    .products-layout {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0;
        width: 100%;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        justify-items: center;
        width: 100%;
        max-width: 100%;
        text-align: center;
    }
    
    .categories-sidebar {
        padding: 1.5rem;
    }
    
    .products-content {
        padding: 0 30px;
    }
    
    .product-item {
        margin-bottom: 1.5rem;
        aspect-ratio: 1;
        min-height: 240px;
        width: 100%;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .product-image {
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .product-details {
        padding: 0.8rem;
        overflow: hidden;
        word-wrap: break-word;
        margin-top: 0.5rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .product-details h3 {
        font-size: 0.85rem;
        font-weight: 400;
        margin: 0;
        line-height: 1.2;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        color: #555;
        letter-spacing: 0.1px;
    }
}

/* Catalog Modal Styles */
.catalog-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.catalog-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.catalog-modal-content {
    background: white;
    border-radius: 20px;
    width: 95%;
    max-width: 1200px;
    height: 90vh;
    max-height: 900px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
    overflow: hidden;
}

.catalog-modal-header {
    background: linear-gradient(135deg, #2a2a2a 0%, #ec1c24 100%);
    color: white;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 20px 20px 0 0;
}

.catalog-modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.catalog-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.catalog-nav-btn, .catalog-close-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.catalog-nav-btn:hover, .catalog-close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.catalog-nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.page-info {
    font-size: 1rem;
    font-weight: 500;
    padding: 0 1rem;
    white-space: nowrap;
}

.catalog-modal-body {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: #f8f9fa;
    overflow: hidden;
}

.catalog-viewer {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: auto;
    border-radius: 10px;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.catalog-viewer img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    cursor: grab;
    border-radius: 10px;
}

.catalog-viewer img:active {
    cursor: grabbing;
}

.catalog-viewer iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 10px;
    background: white;
}

.catalog-modal-footer {
    background: white;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #e9ecef;
    border-radius: 0 0 20px 20px;
}

.catalog-zoom-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.zoom-btn {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    color: #2a2a2a;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.zoom-btn:hover {
    background: #e9ecef;
    border-color: #ec1c24;
    color: #ec1c24;
}

#zoomLevel {
    font-weight: 600;
    color: #2a2a2a;
    min-width: 50px;
    text-align: center;
}

.catalog-actions {
    display: flex;
    gap: 1rem;
}

.catalog-action-btn {
    background: linear-gradient(135deg, #ec1c24, #d1171f);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.catalog-action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(236, 28, 36, 0.3);
}

.catalog-action-btn i {
    font-size: 0.9rem;
}

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

@keyframes slideUp {
    from { 
        opacity: 0;
        transform: translateY(50px) scale(0.95);
    }
    to { 
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Responsive Catalog Modal */
@media (max-width: 768px) {
    .catalog-modal-content {
        width: 98%;
        height: 95vh;
        border-radius: 15px;
    }
    
    .catalog-modal-header {
        padding: 1rem 1.5rem;
        border-radius: 15px 15px 0 0;
    }
    
    .catalog-modal-header h2 {
        font-size: 1.3rem;
    }
    
    .catalog-controls {
        gap: 0.8rem;
    }
    
    .catalog-nav-btn, .catalog-close-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .page-info {
        font-size: 0.9rem;
        padding: 0 0.5rem;
    }
    
    .catalog-modal-body {
        padding: 1rem;
    }
    
    .catalog-modal-footer {
        padding: 1rem 1.5rem;
        flex-direction: column;
        gap: 1rem;
        border-radius: 0 0 15px 15px;
    }
    
    .catalog-zoom-controls {
        gap: 0.8rem;
    }
    
    .zoom-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .catalog-actions {
        gap: 0.8rem;
    }
    
    .catalog-action-btn {
        padding: 10px 16px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .catalog-modal-header {
        padding: 0.8rem 1rem;
        flex-direction: column;
        gap: 1rem;
    }
    
    .catalog-modal-header h2 {
        font-size: 1.1rem;
    }
    
    .catalog-controls {
        gap: 0.5rem;
    }
    
    .catalog-nav-btn, .catalog-close-btn {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
    
    .page-info {
        font-size: 0.8rem;
    }
    
    .catalog-modal-footer {
        padding: 1rem;
    }
    
    .zoom-btn {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
    
    .catalog-action-btn {
        padding: 8px 12px;
        font-size: 0.75rem;
        flex: 1;
        justify-content: center;
    }
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(135deg, #2a2a2a 0%, #ec1c24 100%);
    color: white;
    padding: 150px 0 100px;
    text-align: center;
}

.contact-hero.with-navbar {
    padding-top: 188px;
}

.contact-hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    margin-top: 2rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.contact-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 400px;
    margin: 0 auto;
}

.contact-main {
    padding: 100px 0;
    background: #f8f9fa;
}

.contact-layout {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

/* Contact Info Cards */
/* Contact Info Section */
.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 3rem;
}

/* Address Cards */
.address-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.address-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-left: 5px solid #ec1c24;
}

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

.address-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f5f5f5;
}

.address-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ec1c24, #d1171f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.address-icon i {
    font-size: 1.5rem;
    color: white;
}

.address-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2a2a2a;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.address-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.8rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.address-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.address-item:last-child {
    margin-bottom: 0;
}

.address-item i {
    font-size: 1.1rem;
    color: #ec1c24;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.address-item span {
    color: #555;
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Contact Info Grid */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-info-card {
    background: white;
    padding: 1.5rem 1rem;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    min-height: 120px;
    justify-content: center;
}

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

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ec1c24, #d1171f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.4rem;
    color: white;
}

.contact-info-card .fa-whatsapp {
    color: white;
}

.contact-details h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2a2a2a;
    margin: 0;
}

.contact-details p {
    color: #666;
    margin: 0;
    line-height: 1.4;
    font-size: 0.95rem;
}

/* Contact Content Wrapper */
.contact-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

/* Contact Form */
.contact-form-section {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.contact-form-section h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #2a2a2a;
    margin-bottom: 2rem;
    text-align: center;
}

.modern-contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #2a2a2a;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ec1c24;
    background: white;
    box-shadow: 0 0 0 3px rgba(236, 28, 36, 0.1);
}

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

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #e9ecef;
    border-radius: 4px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #ec1c24;
    border-color: #ec1c24;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: "✓";
    color: white;
    font-size: 0.8rem;
    font-weight: bold;
}

.privacy-link {
    color: #ec1c24;
    text-decoration: none;
    font-weight: 500;
}

.privacy-link:hover {
    text-decoration: underline;
}

.submit-btn {
    background: linear-gradient(135deg, #ec1c24, #d1171f);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 1rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(236, 28, 36, 0.3);
}

.submit-btn i {
    font-size: 1rem;
}

/* Map Section Large */
.map-section-large {
    background: white;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    width: 100%;
    max-width: none;
    margin: 0;
}

/* Map section h2 removed */

.map-container-large {
    width: 100%;
    height: 600px;
    border-radius: 0;
    overflow: hidden;
    margin: 0;
}

.map-container-large iframe {
    border-radius: 0;
    filter: grayscale(10%);
    transition: filter 0.3s ease;
}

.map-container-large:hover iframe {
    filter: grayscale(0%);
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: #f8f9fa;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2a2a2a;
    margin: 0;
    flex: 1;
}

.faq-question i {
    color: #ec1c24;
    font-size: 1rem;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
}

.faq-item.active .faq-answer {
    padding: 0 2rem 2rem;
    max-height: 200px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for Contact Page */
@media (max-width: 1024px) {
    .map-container-large {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 120px 0 80px;
    }
    
    .contact-hero.with-navbar {
        padding-top: 152px;
    }
    
    .contact-hero h1 {
        font-size: 2.5rem;
    }
    
    .contact-hero p {
        font-size: 1.1rem;
    }
    
    .address-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .contact-info-card {
        padding: 1.2rem 0.8rem;
        min-height: 100px;
    }
    
    .map-container-large {
        height: 400px;
        margin: 0;
        width: 100%;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .faq-question {
        padding: 1.5rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-hero {
        padding: 120px 0 80px;
    }
    
    .contact-hero.with-navbar {
        padding-top: 152px;
    }
    
    .contact-hero h1 {
        font-size: 2rem;
    }
    
    .contact-main {
        padding: 60px 0;
    }
    
    .map-section-large h2 {
        font-size: 1.8rem;
        padding: 1.5rem 1rem 0;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .contact-info-card {
        padding: 1rem 0.6rem;
        min-height: 90px;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
    }
    
    .contact-icon i {
        font-size: 1.2rem;
    }
    
    .contact-details h3 {
        font-size: 0.9rem;
    }
    
    .contact-details p {
        font-size: 0.8rem;
    }
    
    .address-card {
        padding: 1.5rem;
    }
    
    .address-header h3 {
        font-size: 1.2rem;
    }
    
    .address-item {
        padding: 0.6rem;
    }
    
    .address-item span {
        font-size: 0.85rem;
    }
    
    .contact-icon i {
        font-size: 1.2rem;
    }
    
    .map-container-large {
        height: 300px;
        margin: 0;
        width: 100%;
    }
}

/* Responsive Design for Products Grid */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .product-item {
        max-width: 260px;
    }
}

/* Product Image Layout - Original Structure */
.productimg {
    max-width: 300px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border: 1px solid #ddd;
    background: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.productimg:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.productimg img {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.3s ease;
}

.productimg:hover img {
    transform: scale(1.05);
}

/* Overlay Effect for Product Code */
.productimg .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    color: white;
    text-align: center;
}

.productimg:hover .overlay {
    opacity: 1;
}

.productimg .overlay i {
    font-size: 2rem;
    margin-bottom: 10px;
    color: white;
}

.productimg .overlay h5 {
    font-size: 0.9rem;
    margin: 5px 0;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.productimg .overlay p {
    font-size: 1rem;
    margin: 0;
    font-weight: 700;
    color: #ff6b6b;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Responsive Column System */
.col-lg-4 {
    width: 25%;
    float: left;
    padding: 0 5px;
    box-sizing: border-box;
}

.col-md-4 {
    width: 25%;
    float: left;
    padding: 0 5px;
    box-sizing: border-box;
}

.col-sm-4 {
    width: 50%;
    float: left;
    padding: 0 5px;
    box-sizing: border-box;
}

.col-xs-6 {
    width: 50%;
    float: left;
    padding: 0 5px;
    box-sizing: border-box;
}

@media (max-width: 480px) {
    .col-xs-6 {
        text-align: center;
        margin: 0 auto;
        float: none;
        display: block;
    }
}

/* Clear floats */
.minipad::after {
    content: "";
    display: table;
    clear: both;
}

@media (max-width: 768px) {
    .minipad {
        text-align: center;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Product Title Styling */
.producttitle h4 {
    font-size: 0.8rem;
    line-height: 1.2;
    margin: 0;
    color: #333;
    font-weight: normal;
    text-align: center;
    padding: 5px;
}

.producttitleheight {
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.redblock {
    background-color: #ff6b6b;
    min-height: 50px;
}

/* Responsive breakpoints */
@media (max-width: 768px) {
    .col-lg-4, .col-md-4 {
        width: 50%;
        text-align: center;
        margin: 0 auto;
        float: none;
        display: inline-block;
    }
}

@media (max-width: 480px) {
    .col-lg-4, .col-md-4, .col-sm-4 {
        width: 100%;
        text-align: center;
        margin: 0 auto;
        float: none;
        display: block;
    }
}

/* Image Popup Modal Styles */
.image-popup {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease-in-out;
}

.popup-content {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 20px;
    box-sizing: border-box;
}

.popup-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s ease-in-out;
}

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

.popup-close:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.popup-close:active {
    transform: scale(0.95);
}

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

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .popup-close {
        top: 10px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .popup-image {
        max-width: 95%;
        max-height: 85%;
    }
}

/* Product image hover effect enhancement */
.productimg a {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.productimg a:hover {
    transform: scale(1.02);
}

.productimg a:hover .overlay {
    opacity: 1;
}

.overlay {
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Product item image hover effects */
.product-item .product-image {
    cursor: pointer;
    transition: transform 0.3s ease;
    overflow: hidden;
    border-radius: 8px;
}

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

.product-item .product-image img {
    transition: transform 0.3s ease;
}

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

/* Language Switcher Styles */
.language-switcher {
    position: relative;
    margin-left: 1rem;
    z-index: 1000;
}

.language-dropdown {
    position: relative;
    display: inline-block;
}

.language-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #2a2a2a;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    outline: none;
}

.language-btn:hover {
    border-color: #ec1c24;
    box-shadow: 0 4px 12px rgba(236, 28, 36, 0.2);
    transform: translateY(-1px);
}

.language-btn.active {
    border-color: #ec1c24;
    background: #ec1c24;
    color: white;
}

.flag-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.language-btn:hover .flag-icon {
    transform: scale(1.1);
}

.language-text {
    font-weight: 600;
    letter-spacing: 0.5px;
}

.language-btn i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.language-btn.active i {
    transform: rotate(180deg);
}

.language-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    min-width: 160px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    border: 1px solid #e0e0e0;
    overflow: hidden;
    margin-top: 5px;
}

.language-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    text-decoration: none;
    color: #2a2a2a;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
}

.language-option:last-child {
    border-bottom: none;
}

.language-option:hover {
    background: #f8f9fa;
    color: #ec1c24;
    transform: translateX(5px);
}

.language-option .flag-icon {
    width: 18px;
    height: 18px;
}

.language-option span {
    font-weight: 500;
    font-size: 0.9rem;
}

/* Language Switcher Mobile */
@media (max-width: 768px) {
    .language-switcher {
        margin-left: 0.5rem;
    }

    .language-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }

    .flag-icon {
        width: 20px;
        height: 20px;
    }

    .language-menu {
        min-width: 140px;
        right: -10px;
    }

    .language-option {
        padding: 0.6rem 0.8rem;
        font-size: 0.85rem;
    }

    .language-option .flag-icon {
        width: 16px;
        height: 16px;
    }
}
