/* Biozon CSS Styles */

/* Font Face Definitions */
@font-face {
    font-family: 'Mont Light';
    src: url('../fonts/fontfabric---mont-light-webfont.eot');
    src: url('../fonts/fontfabric---mont-light-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/fontfabric---mont-light-webfont.woff2') format('woff2'),
         url('../fonts/fontfabric---mont-light-webfont.woff') format('woff'),
         url('../fonts/fontfabric---mont-light-webfont.ttf') format('truetype'),
         url('../fonts/fontfabric---mont-light-webfont.svg#montlight') format('svg');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Mont Regular';
    src: url('../fonts/fontfabric---mont-regular-webfont.eot');
    src: url('../fonts/fontfabric---mont-regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/fontfabric---mont-regular-webfont.woff2') format('woff2'),
         url('../fonts/fontfabric---mont-regular-webfont.woff') format('woff'),
         url('../fonts/fontfabric---mont-regular-webfont.ttf') format('truetype'),
         url('../fonts/fontfabric---mont-regular-webfont.svg#montregular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Mont Semibold';
    src: url('../fonts/fontfabric---mont-semibold-webfont.eot');
    src: url('../fonts/fontfabric---mont-semibold-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/fontfabric---mont-semibold-webfont.woff2') format('woff2'),
         url('../fonts/fontfabric---mont-semibold-webfont.woff') format('woff'),
         url('../fonts/fontfabric---mont-semibold-webfont.ttf') format('truetype'),
         url('../fonts/fontfabric---mont-semibold-webfont.svg#montsemibold') format('svg');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

/* Global Styles */
:root {
    /* Ana Renk Paleti */
    --primary-color: #26324c;      /* Koyu mavi - Ana renk */
    --secondary-color: #a4d4eb;    /* Açık mavi - İkincil renk */
    --accent-color: #696f9c;       /* Koyu yeşil - Vurgu rengi */
    --neutral-color: #474747;      /* Gri - Nötr renk */
    --dark-blue: #26354f;          /* Koyu mavi - Koyu ton */
    
    /* Eski Renkler (Geriye uyumluluk için) */
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Mont Regular', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--neutral-color);
}

/* Font Weight Utility Classes */
.font-light {
    font-family: 'Mont Light', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.font-semibold {
    font-family: 'Mont Semibold', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Fixed Navigation */
.navbar {
    background: transparent !important;
    box-shadow: none;
    transition: all 0.4s ease;
    padding: 1.5rem 0;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.5) !important;
    box-shadow: 0 2px 20px rgba(38, 50, 76, 0.1);
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
    color: white !important;
    transition: var(--transition);
}

.navbar.scrolled .navbar-brand {
    color: var(--primary-color) !important;
}

.navbar-brand img {
    height: 80px;
    width: auto;
    transition: all 0.4s ease;
}

.navbar.scrolled .navbar-brand img {
    height: 60px;
    width: auto;
}

.nav-link {
    position: relative;
    transition: var(--transition);
    margin: 0 10px;
    color: black !important;
    font-weight: 500;
    font-size: 20px;
}

.navbar.scrolled .nav-link {
    color: black !important;
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary-color) !important;
    transform: translateY(-2px);
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
    color: var(--secondary-color) !important;
}

/* WhatsApp Support Styles */
.whatsapp-support {
    text-align: right;
    padding: 0.5rem 1rem;
    border: 1px solid white;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
}

.navbar.scrolled .whatsapp-support {
    border: 1px solid var(--primary-color);
    background: rgba(255, 255, 255, 0.9);
}

.support-text {
    font-size: 0.8rem;
    color: white;
    font-weight: 500;
    margin-bottom: 2px;
}

.navbar.scrolled .support-text {
    color: var(--primary-color);
}

.support-phone {
    font-size: 0.9rem;
    color: white;
    font-weight: 600;
}

.navbar.scrolled .support-phone {
    color: var(--primary-color);
}

.btn-outline-dark {
    border: 1px solid white;
    color: white;
    transition: var(--transition);
}

.navbar.scrolled .btn-outline-dark {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-dark:hover {
    background-color: white;
    color: var(--primary-color);
    transform: translateY(-2px);
}

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

/* Offcanvas Navigation */
@media (max-width: 991.98px) {
    .navbar .offcanvas {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        border-radius: 20px 0 0 20px;
    }

    .navbar .offcanvas-body {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        padding: 2rem 1.5rem;
    }

    .navbar .offcanvas .navbar-nav {
        gap: 0.5rem;
    }

    .navbar .offcanvas .nav-link {
        font-size: 1.05rem;
        color: var(--primary-color) !important;
    }

    .navbar .offcanvas .nav-link:hover,
    .navbar .offcanvas .nav-link.active {
        color: var(--secondary-color) !important;
    }

    .navbar .offcanvas .dropdown-menu {
        position: static !important;
        box-shadow: none;
        padding: 0;
        margin-top: 0.5rem;
    }

    .navbar .offcanvas .dropdown-item {
        padding: 0.5rem 0;
    }
}

@media (min-width: 992px) {
    .navbar .offcanvas.offcanvas-lg {
        position: static;
        transform: none;
        visibility: visible;
        background: transparent;
        border: none;
        box-shadow: none;
    }

    .navbar .offcanvas.offcanvas-lg .offcanvas-body {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 2rem;
        padding: 0;
    }

    .navbar .offcanvas.offcanvas-lg .navbar-nav {
        flex-direction: row;
        align-items: center;
        gap: 0.2rem;
    }

    .navbar .offcanvas.offcanvas-lg .nav-link {
        padding: 0;
    }

    .navbar .offcanvas.offcanvas-lg .dropdown-menu {
        position: absolute;
        display: none;
    }

    .navbar .offcanvas.offcanvas-lg .dropdown:hover .dropdown-menu {
        display: block;
    }
}

@media (min-width: 992px) {
    .navbar.scrolled {
        backdrop-filter: blur(20px);
    }
}

/* Navbar Toggler */
.navbar-toggler {
    border-color: rgba(38, 50, 76, 0.5);
}

.navbar.scrolled .navbar-toggler {
    border-color: rgba(38, 50, 76, 0.5);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(38, 50, 76, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar.scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(38, 50, 76, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Dropdown Styles */
.dropdown-menu {
    border: none;
    box-shadow: 0 10px 30px rgba(38, 50, 76, 0.1);
    border-radius: 10px;
    padding: 0.5rem 0;
    display: none;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-item {
    padding: 0.5rem 1.5rem;
    transition: var(--transition);
}

.dropdown-item:hover {
    background-color: var(--accent-color);
    color: white;
}

/* Hero Section */
.hero-section {
    background: url('../img/page-hero-bg.jpg') center center/cover no-repeat;
    position: relative;
    height: 100vh;
    overflow: hidden;
    padding-top: 0;
}

/* Hero Carousel */
.hero-carousel {
    height: 100vh;
    position: relative;
}

.hero-slide {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.hero-slide .container {
    position: relative;
    z-index: 2;
}

/* Hero Content - Sol taraf metinler */
.hero-content {
    padding: 2rem 0;
}

.hero-title {
    font-size: 40px;
    font-weight: 600;
    color: #2b2f36;
    line-height: 1.2;
    margin-bottom: 2rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero-discount {
    margin-top: 2rem;
}

.discount-badge {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 40px;
    font-size: 20px;
    font-weight: 300;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.discount-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Hero Product Display - Sağ taraf ürün */
.hero-product-display {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.product-bottle {
    position: relative;
    z-index: 2;
    max-width: 400px;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.2));
}

.product-bottle img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

/* Anniversary Badge */
.anniversary-badge {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    border: 3px solid #fff;
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
    z-index: 3;
}

.badge-number {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.badge-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#snowCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999; /* Sayfanın en üstünde görünmesi için */
    pointer-events: none; /* Altındaki butonlara tıklanabilmesi için */
}

/* Carousel Controls - Alt kısımda oklar */
.carousel-controls {
    position: relative;
    bottom: 240px;
    left: 0;
    display: flex;
    gap: 2rem;
    z-index: 10;
    width: 200px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 104px;
    height: 104px;
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--secondary-color);
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    transform: scale(1.1);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 85px;
    height: 85px;
}

.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23a4d4eb'><path d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/></svg>");
}

.carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23a4d4eb'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

/* Social Media Icons and Hashtag Section */
.social-hashtag-section {
    position: relative;
    bottom: 100px;
    left: 1rem;
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 15;
}

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

.social-icon {
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.1);
    color: white;
    text-decoration: none;
}

.social-icon i {
    font-size: 14px;
}

.hashtag-text {
    font-size: 20px;
    color: var(--primary-color);
    white-space: nowrap;
}

.hashtag-light {
    font-weight: 300;
}

.hashtag-bold {
    font-weight: 700;
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    position: relative;
    color: var(--primary-color);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

/* Service Cards */
.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(38, 50, 76, 0.1);
    text-align: center;
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(38, 50, 76, 0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(38, 50, 76, 0.15);
    border-color: var(--accent-color);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    transition: var(--transition);
}

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

.service-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    color: var(--neutral-color);
    line-height: 1.6;
}

/* About Section */
.about-image-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, var(--light-color), var(--secondary-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(38, 50, 76, 0.1);
}

/* Carousel Styles */
.carousel {
    overflow: hidden;
}

.carousel-content {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 3rem;
    text-align: center;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.carousel-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.carousel-content p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Form */
.form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 12px 15px;
    transition: var(--transition);
    font-size: 1rem;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(38, 50, 76, 0.25);
    outline: none;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth Scroll Enhancement */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Loading Animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading.hidden {
    opacity: 0;
    pointer-events: none;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Blog Section Styles */
.blog-section {
    background: white;
}

/* Blog Header */
.blog-header {
    position: relative;
    height: 350px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: url('../img/home-blog-bg.jpg') center/cover fixed;
}

.blog-title-container {
    text-align: right;
}

.blog-title {
    background: white;
    color: var(--primary-color);
    font-size: 46px;
    font-weight: 600;
    padding: 30px 60px;
    border-radius: 60px 60px 0 60px;
    display: inline-block;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin: 0;
}

/* Blog Content */
.blog-content {
    padding: 60px 0;
}

.blog-post {
    margin-bottom: 60px;
}

.blog-card {
    display: flex;
    text-decoration: none;
    background: white;
    padding: 30px;
    transition: all 0.3s ease;
    align-items: center;
    gap: 30px;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    text-decoration: none;
}

.blog-image {
    flex-shrink: 0;
    width: 250px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
}

.blog-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.blog-text {
    color: var(--neutral-color);
    flex: 1;
}

.blog-post-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
    line-height: 1.3;
}

.blog-post-subtitle {
    font-size: 18px;
    font-weight: 500;
    color: var(--secondary-color);
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-post-excerpt {
    font-size: 16px;
    line-height: 1.6;
    color: var(--neutral-color);
    margin: 0;
}

/* About Section Styles */
.about-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: url('../img/home-about-bg.jpg') center/cover;
}

.about-image {
    text-align: center;
    margin-bottom: 30px;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.about-content {
    padding: 0 20px;
}

.about-title {
    font-size: 32px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 30px;
    line-height: 1.3;
}

.about-text p {
    font-size: 20px;
    line-height: 1.6;
    color: var(--neutral-color);
    margin-bottom: 20px;
}

.about-buttons {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.about-btn {
    padding: 15px 25px;
    font-size: 16px;
    font-weight: 500;
    border: 1px solid #ccc;
    color: #333;
    background: white;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    min-width: 160px;
    position: relative;
    overflow: hidden;
    line-height: 1.2;
}

.btn-line {
    display: block;
    text-align: center;
}

.about-btn::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--secondary-color);
    transition: transform 0.3s ease;
}

.about-btn:hover::after {
    bottom: 0;
}

.about-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.team-btn {
    position: relative;
    display: inline-block;
    border-radius: 8px;
    overflow: hidden;
    min-width: 180px;
    height: 72px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.team-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.team-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    z-index: 2;
}

/* Product Section Styles */
.product-section {
    padding: 40px 0;
    background: white;
}

.product-header {
    background: white;
    padding: 0;
    border-bottom: none;
}

.product-header .col-lg-12 {
    flex-wrap: wrap;
    gap: 0.75rem;
}

.product-header .btn {
    margin: 0;
    flex: 0 1 auto;
}

@media (max-width: 991.98px) {
    .product-header .btn {
        flex: 1 1 200px;
    }
}

@media (max-width: 575.98px) {
    .product-header .btn {
        flex: 1 1 100%;
    }
}

.product-title {
    font-size: 28px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.product-buttons {
    display: flex;
    justify-content: flex-end;
}

.product-btn {
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: 1px solid #ccc;
}

.product-btn:hover {
    transform: none;
    box-shadow: none;
}

.product-grid {
    position: relative;
    padding: 40px 0;
}

.product-divider {
    height: 1px;
    background: #e0e0e0;
    margin: 30px 0;
    opacity: 1;
}

.product-card {
    display: block;
    text-decoration: none;
    background: white;
    border-radius: 0;
    padding: 20px 15px;
    text-align: center;
    box-shadow: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    border: none;
}

.product-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: var(--secondary-color);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.product-card:hover::after {
    transform: translateY(0);
}

.product-card:hover {
    transform: none;
    box-shadow: none;
}

.product-image {
    margin-bottom: 20px;
    border-radius: 0;
    overflow: hidden;
    background: white;
}

.product-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    transition: transform 0.3s ease;
    padding: 0;
}

.product-card:hover .product-image img {
    transform: translateY(-5px);
}

.product-name {
    font-size: 22px;
    font-weight: 500;
    color: #333;
    margin: 0;
    line-height: 2;
    transition: transform 0.3s ease;
}

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

/* Teams Section Styles */
.teams-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(to bottom, white, #f8f9fa);
    overflow: hidden;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

.teams-left {
    position: relative;
}

.teams-image {
    position: relative;
    display: inline-block;
}

.teams-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

.teams-title-overlay {
    position: absolute;
    top: 30%;
    left: 0;
    padding: 20px 40px;
}

.teams-title {
    font-size: 36px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
    text-align: center;
}

.teams-content {
    padding: 0 30px;
}

.teams-text p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--neutral-color);
    margin-bottom: 20px;
}

.teams-button {
    margin-top: 40px;
}

.teams-right-image {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 1;
}

.teams-right-image img {
    max-width: 300px;
    height: auto;
    border-radius: 10px;
}

/* Video Section Styles */
.video-section {
    position: relative;
    padding: 100px 0;
    background: url('../img/video-info-bg.jpg') center top/cover;
    overflow: hidden;
}

.video-content {
    padding: 0 30px;
}

.video-title {
    font-size: 46px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.3;
}

.video-subtitle {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 30px;
    line-height: 1.4;
}

.video-text p {
    font-size: 20px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
}

.video-area {
    position: relative;
    text-align: center;
}

.video-container {
    position: relative;
    display: inline-block;
    width: 464px;
    height: 833px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.video-player {
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.video-player video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-label {
    text-align: right;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 500;
    z-index: 2;
    padding: 0 2rem
}

.video-thumbnail {
    position: relative;
    display: block;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.video-play-button i {
    font-size: 24px;
    color: var(--primary-color);
    margin-left: 4px;
}

.video-play-button:hover {
    background: var(--primary-color);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-play-button:hover i {
    color: white;
}

/* Contact Section Styles */
.contact-section {
    position: relative;
    padding: 100px 0;
    background: white;
    overflow: hidden;
}

.contact-content {
    padding: 0 30px;
}

.contact-title {
    font-size: 46px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.3;
}

.contact-description {
    font-size: 20px;
    line-height: 1.6;
    color: var(--neutral-color);
    margin-bottom: 40px;
}

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

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

.form-control {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
}

.form-control:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(164, 212, 235, 0.1);
}

.contact-btn {
    width: 100%;
    padding: 15px 30px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: lowercase;
}

.contact-btn:hover {
    background: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.contact-legal {
    margin-top: 30px;
}

.contact-legal p {
    font-size: 14px;
    line-height: 1.5;
    color: var(--neutral-color);
    margin-bottom: 10px;
}

.kvkk-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
}

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

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

.contact-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
}

/* Footer Section Styles */
.footer-section {
    background-image: url('../img/footer-bg-logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom right;
    position: relative;
    background-color: #18314f;
    padding: 80px 0 40px;
    color: white;
    overflow: hidden;
}

.footer-section .container {
    position: relative;
    z-index: 2;
}

/* Üst Kısım */
.footer-left {
    margin-bottom: 30px;
}

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

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

.footer-follow h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
}

.footer-social-icons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-social-icon {
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-social-icon:hover {
    color: var(--secondary-color);
    transform: translateY(-2px);
}

.footer-social-icon i {
    font-size: 18px;
}

.divider {
    color: white;
    font-size: 14px;
}

/* Menü Bölümleri */
.footer-menu {
    margin-bottom: 30px;
}

.footer-menu h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
}

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

.footer-menu ul li {
    margin-bottom: 8px;
}

.footer-menu ul li a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-menu ul li a:hover {
    color: var(--secondary-color);
}

/* Redif Logo */
.footer-redif {
    text-align: center;
    margin-bottom: 30px;
}

.redif-link {
    display: inline-block;
    transition: all 0.3s ease;
}

.redif-link:hover {
    transform: translateY(-2px);
}

.footer-redif img {
    max-width: 120px;
    height: auto;
}

/* Alt Kısım */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    margin-top: 30px;
    align-items: center;
}

.copyright {
    font-size: 14px;
    color: white;
    margin: 0;
}

.legal-links {
    text-align: left;
}

.legal-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.legal-links a:hover {
    color: var(--secondary-color);
}

.legal-links .divider {
    margin: 0 10px;
    font-size: 12px;
}

.footer-redif-bottom {
    text-align: right;
}

.footer-redif-bottom img {
    max-width: 80px;
    height: auto;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Large Desktop (1200px ve altı) */
@media (max-width: 1200px) {
    /* Hero */
    .hero-title {
        font-size: 2.4rem;
    }
    
    .badge-number {
        font-size: 2.5rem;
    }
    
    .navbar-brand img {
        height: 70px;
    }
    
    .navbar.scrolled .navbar-brand img {
        height: 50px;
    }
    
    /* About */
    .about-title {
        font-size: 28px;
    }
    
    .about-text p {
        font-size: 18px;
    }
    
    /* Product */
    .product-title {
        font-size: 32px;
    }
    
    .product-name {
        font-size: 17px;
    }
    
    /* Blog */
    .blog-title {
        font-size: 32px;
        padding: 18px 35px;
    }
    
    .blog-post-title {
        font-size: 22px;
    }
    
    .blog-post-subtitle {
        font-size: 17px;
    }
    
    /* Teams */
    .teams-section {
        padding: 80px 0;
    }
    
    .teams-title {
        font-size: 30px;
    }
    
    .teams-text p {
        font-size: 16px;
    }
    
    .teams-right-image img {
        max-width: 250px;
    }
    
    /* Video */
    .video-section {
        padding: 80px 0;
    }
    
    .video-container {
        width: 400px;
        height: 700px;
    }
    
    .video-title {
        font-size: 30px;
    }
    
    .video-subtitle {
        font-size: 18px;
    }
    
    .video-text p {
        font-size: 16px;
    }
}

/* Desktop (992px ve altı) */
@media (max-width: 992px) {
    /* Hero */
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-product-display {
        margin-top: 2rem;
    }
    
    .anniversary-badge {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        margin-top: 1rem;
    }
    
    .navbar-brand img {
        height: 60px;
    }
    
    .navbar.scrolled .navbar-brand img {
        height: 45px;
    }
    
    .nav-link {
        font-size: 18px;
        margin: 0 8px;
    }
    
    /* About */
    .about-section {
        padding: 80px 0;
    }
    
    .about-title {
        font-size: 26px;
    }
    
    .about-text p {
        font-size: 17px;
    }
    
    .about-buttons {
        justify-content: center;
    }
    
    /* Product */
    .product-section {
        padding: 40px 0;
    }
    
    .product-title {
        font-size: 30px;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .product-buttons {
        justify-content: center;
    }
    
    .product-divider {
        margin: 30px 0;
    }
    
    /* Blog */
    .blog-header {
        height: 300px;
    }
    
    .blog-title {
        font-size: 30px;
        padding: 15px 30px;
    }
    
    .blog-content {
        padding: 50px 0;
    }
    
    .blog-post {
        margin-bottom: 50px;
    }
    
    .blog-card {
        padding: 25px;
        gap: 25px;
    }
    
    .blog-image img {
        width: 200px;
    }
    
    .blog-post-title {
        font-size: 20px;
    }
    
    .blog-post-subtitle {
        font-size: 16px;
    }
    
    .blog-post-excerpt {
        font-size: 15px;
    }
    
    /* Teams */
    .teams-section {
        padding: 60px 0;
    }
    
    .teams-content {
        padding: 0 20px;
        text-align: center;
    }
    
    .teams-title {
        font-size: 26px;
    }
    
    .teams-text p {
        font-size: 15px;
    }
    
    .teams-right-image {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        margin-top: 30px;
        text-align: right;
    }
    
    .teams-right-image img {
        max-width: 200px;
    }
    
    /* Video */
    .video-section {
        padding: 60px 0;
    }
    
    .video-content {
        padding: 0 20px;
        text-align: center;
    }
    
    .video-container {
        width: 350px;
        height: 600px;
    }
    
    .video-title {
        font-size: 26px;
    }
    
    .video-subtitle {
        font-size: 16px;
    }
    
    .video-text p {
        font-size: 15px;
    }
    
    .video-play-button {
        width: 60px;
        height: 60px;
    }
    
    .video-play-button i {
        font-size: 18px;
    }
}

/* Tablet (768px ve altı) */
@media (max-width: 768px) {
    /* Navbar */
    .navbar {
        padding: 0.3rem 0;
    }
    
    .navbar-brand img {
        height: 50px;
    }
    
    .navbar.scrolled .navbar-brand img {
        height: 40px;
    }
    
    .nav-link {
        font-size: 16px;
        margin: 0 5px;
        text-align: center;
    }
    
    .navbar-nav {
        text-align: center;
        margin-top: 1rem;
    }
    
    .dropdown-menu {
        text-align: center;
        background: rgba(255, 255, 255, 0.95);
    }
    
    /* Hero */
    .hero-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .hero-content {
        text-align: center;
        padding: 1rem 0;
    }
    
    .discount-badge {
        font-size: 1.2rem;
        padding: 0.8rem 1.5rem;
    }
    
    .carousel-controls {
        bottom: 30px;
        gap: 1rem;
        width: 150px;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 50px;
        height: 50px;
    }
    
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 50px;
        height: 50px;
    }
    
    .social-hashtag-section {
        bottom: 50px;
        left: 0.5rem;
        gap: 15px;
    }
    
    .social-icon {
        width: 25px;
        height: 25px;
    }
    
    .social-icon i {
        font-size: 12px;
    }
    
    .hashtag-text {
        font-size: 16px;
    }
    
    /* About */
    .about-section {
        padding: 60px 0;
    }
    
    .about-content {
        padding: 0 10px;
        text-align: center;
    }
    
    .about-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .about-text p {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .about-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-top: 30px;
    }
    
    .about-btn,
    .team-btn {
        min-width: 200px;
    }
    
    /* Product */
    .product-section {
        padding: 60px 0;
    }
    
    .product-title {
        font-size: 28px;
    }
    
    .product-buttons {
        align-items: center;
    }
    
    .product-btn {
        min-width: 200px;
    }
    
    .product-card {
        padding: 15px;
    }
    
    .product-name {
        font-size: 16px;
    }
    
    .product-divider {
        margin: 25px 0;
    }
    
    /* Blog */
    .blog-header {
        height: 250px;
    }
    
    .blog-title-container {
        text-align: center;
        padding-right: 0;
    }
    
    .blog-title {
        font-size: 28px;
        padding: 12px 25px;
    }
    
    .blog-content {
        padding: 40px 0;
    }
    
    .blog-post {
        margin-bottom: 40px;
    }
    
    .blog-card {
        padding: 20px;
        gap: 20px;
        flex-direction: column;
        text-align: center;
    }
    
    .blog-card-reverse {
        flex-direction: column-reverse !important;
    }
    
    .blog-image img {
        width: 180px;
    }
    
    .blog-post-title {
        font-size: 18px;
    }
    
    .blog-post-subtitle {
        font-size: 15px;
    }
    
    .blog-post-excerpt {
        font-size: 14px;
    }
    
    /* Teams */
    .teams-section {
        padding: 50px 0;
    }
    
    .teams-content {
        padding: 0 15px;
    }
    
    .teams-title {
        font-size: 24px;
    }
    
    .teams-text p {
        font-size: 14px;
    }
    
    .teams-right-image img {
        max-width: 150px;
    }
    
    /* Video */
    .video-section {
        padding: 50px 0;
    }
    
    .video-content {
        padding: 0 15px;
    }
    
    .video-container {
        width: 300px;
        height: 500px;
    }
    
    .video-title {
        font-size: 24px;
    }
    
    .video-subtitle {
        font-size: 15px;
    }
    
    .video-text p {
        font-size: 14px;
    }
    
    .video-play-button {
        width: 50px;
        height: 50px;
    }
    
    .video-play-button i {
        font-size: 16px;
    }
    
    /* Contact */
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-content {
        padding: 0 20px;
        text-align: center;
    }
    
    .contact-title {
        font-size: 36px;
    }
    
    .contact-description {
        font-size: 16px;
    }
    
    .contact-btn {
        font-size: 15px;
    }
    
    /* Footer */
    .footer-section {
        padding: 50px 0 25px;
    }
    
    .footer-bg-logo {
        width: 200px;
        height: 150px;
    }
    
    .footer-logo img {
        max-width: 120px;
    }
    
    .footer-menu h4 {
        font-size: 15px;
    }
    
    .footer-menu ul li a {
        font-size: 12px;
    }
    
    .footer-redif img {
        max-width: 80px;
    }
    
    .footer-redif-bottom img {
        max-width: 60px;
    }
    
    .social-icon {
        font-size: 15px;
    }
    
    .social-icon i {
        font-size: 15px;
    }
}

/* Mobile (576px ve altı) */
@media (max-width: 576px) {
    /* Navbar */
    .navbar {
        padding: 0.2rem 0;
    }
    
    .navbar-brand img {
        height: 40px;
    }
    
    .navbar.scrolled .navbar-brand img {
        height: 35px;
    }
    
    .nav-link {
        font-size: 14px;
        margin: 3px 0;
        padding: 0.5rem 0;
    }
    
    .navbar-nav {
        margin-top: 0.5rem;
    }
    
    /* Hero */
    .hero-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .discount-badge {
        font-size: 1rem;
        padding: 0.6rem 1.2rem;
    }
    
    .carousel-controls {
        bottom: 20px;
        gap: 0.5rem;
        width: 120px;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 40px;
        height: 40px;
    }
    
    .social-hashtag-section {
        bottom: 30px;
        left: 0.3rem;
        gap: 10px;
    }
    
    .social-icons {
        gap: 8px;
    }
    
    .social-icon {
        width: 22px;
        height: 22px;
    }
    
    .social-icon i {
        font-size: 10px;
    }
    
    .hashtag-text {
        font-size: 14px;
    }
    
    /* About */
    .about-section {
        padding: 50px 0;
    }
    
    .about-title {
        font-size: 22px;
    }
    
    .about-text p {
        font-size: 15px;
    }
    
    .about-btn,
    .team-btn {
        min-width: 180px;
        height: auto;
    }
    
    .about-btn {
        font-size: 16px;
        padding: 10px 25px;
    }
    
    .team-text {
        font-size: 16px;
    }
    
    /* Product */
    .product-section {
        padding: 50px 0;
    }
    
    .product-title {
        font-size: 24px;
    }
    
    .product-btn {
        min-width: 180px;
        padding: 10px 20px;
        font-size: 15px;
    }
    
    .product-card {
        padding: 12px;
    }
    
    .product-image img {
        height: auto;
        max-height: none;
    }
    
    .product-name {
        font-size: 15px;
    }
}

/* Small Mobile (480px ve altı) */
@media (max-width: 480px) {
    /* Navbar */
    .navbar-brand img {
        height: 35px;
    }
    
    .navbar.scrolled .navbar-brand img {
        height: 30px;
    }
    
    .nav-link {
        font-size: 13px;
    }
    
    /* Hero */
    .hero-title {
        font-size: 1.3rem;
    }
    
    .discount-badge {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
    
    .carousel-controls {
        width: 100px;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 35px;
        height: 35px;
    }
    
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 35px;
        height: 35px;
    }
    
    .social-hashtag-section {
        bottom: 20px;
        left: 0.2rem;
    }
    
    .social-icon {
        width: 20px;
        height: 20px;
    }
    
    .social-icon i {
        font-size: 9px;
    }
    
    .hashtag-text {
        font-size: 12px;
    }
    
    /* About */
    .about-title {
        font-size: 20px;
    }
    
    .about-text p {
        font-size: 14px;
    }
    
    .about-btn,
    .team-btn {
        min-width: 160px;
        height: auto;
    }
    
    .about-btn {
        font-size: 15px;
        padding: 8px 20px;
    }
    
    .team-text {
        font-size: 15px;
    }
    
    /* Product */
    .product-title {
        font-size: 22px;
    }
    
    .product-btn {
        min-width: 160px;
        font-size: 14px;
    }
    
    .product-card {
        padding: 10px;
    }
    
    .product-image img {
        height: auto;
        max-height: none;
    }
    
    /* Blog */
    .blog-header {
        height: 180px;
    }
    
    .blog-title {
        font-size: 22px;
        padding: 8px 18px;
    }
    
    .blog-content {
        padding: 25px 0;
    }
    
    .blog-post {
        margin-bottom: 25px;
    }
    
    .blog-card {
        padding: 12px;
        gap: 15px;
        flex-direction: column;
        text-align: center;
    }
    
    .blog-card-reverse {
        flex-direction: column-reverse !important;
    }
    
    .blog-image img {
        width: 100px;
    }
    
    .blog-post-title {
        font-size: 15px;
    }
    
    .blog-post-subtitle {
        font-size: 13px;
    }
    
    .blog-post-excerpt {
        font-size: 12px;
    }
    
    /* Teams */
    .teams-section {
        padding: 40px 0;
    }
    
    .teams-content {
        padding: 0 10px;
    }
    
    .teams-title {
        font-size: 20px;
    }
    
    .teams-text p {
        font-size: 13px;
    }
    
    .teams-right-image img {
        max-width: 120px;
    }
    
    /* Video */
    .video-section {
        padding: 40px 0;
    }
    
    .video-content {
        padding: 0 10px;
    }
    
    .video-container {
        width: 250px;
        height: 400px;
    }
    
    .video-title {
        font-size: 20px;
    }
    
    .video-subtitle {
        font-size: 14px;
    }
    
    .video-text p {
        font-size: 13px;
    }
    
    .video-play-button {
        width: 40px;
        height: 40px;
    }
    
    .video-play-button i {
        font-size: 14px;
    }
    
    /* Contact */
    .contact-section {
        padding: 50px 0;
    }
    
    .contact-content {
        padding: 0 15px;
    }
    
    .contact-title {
        font-size: 32px;
    }
    
    .contact-description {
        font-size: 15px;
    }
    
    .contact-btn {
        font-size: 14px;
    }
    
    /* Footer */
    .footer-section {
        padding: 40px 0 20px;
    }
    
    .footer-bg-logo {
        width: 180px;
        height: 120px;
    }
    
    .footer-logo img {
        max-width: 150px;
    }
    
    .footer-menu h4 {
        font-size: 14px;
    }
    
    .footer-menu ul li a {
        font-size: 11px;
    }
    
    .footer-redif img {
        max-width: 100px;
    }
    
    .footer-redif-bottom img {
        max-width: 50px;
    }
    
    /* Contact */
    .contact-section {
        padding: 80px 0;
    }
    
    .contact-title {
        font-size: 40px;
    }
    
    .contact-description {
        font-size: 18px;
    }
    
    .contact-btn {
        font-size: 16px;
    }
    
    /* Footer */
    .footer-section {
        padding: 60px 0 30px;
    }
    
    .footer-bg-logo {
        width: 250px;
        height: 180px;
    }
    
    .footer-logo img {
        max-width: 150px;
    }
    
    .footer-menu h4 {
        font-size: 16px;
    }
    
    .footer-menu ul li a {
        font-size: 13px;
    }
    
    .footer-redif img {
        max-width: 100px;
    }
    
    .footer-redif-bottom img {
        max-width: 80px;
    }
    
    .social-icon {
        font-size: 16px;
    }
    
    .social-icon i {
        font-size: 16px;
    }
    
    .product-name {
        font-size: 14px;
    }
    
    /* Footer */
    .footer-section {
        padding: 30px 0 15px;
    }
    
    .footer-bg-logo {
        width: 150px;
        height: 100px;
    }
    
    .footer-logo img {
        max-width: 100px;
    }
    
    .footer-menu h4 {
        font-size: 13px;
    }
    
    .footer-menu ul li a {
        font-size: 10px;
    }
    
    .footer-redif img {
        max-width: 60px;
    }
    
    .footer-redif-bottom img {
        max-width: 40px;
    }
    
    .social-icon {
        font-size: 13px;
    }
    
    .social-icon i {
        font-size: 13px;
    }
}

/* Page Hero Section */
.page-hero {
    background: url('../img/page-hero-bg.jpg') center center/cover no-repeat;
    height: 330px;
    display: flex;
    align-items: center;
    position: relative;
    padding: 160px 0 0px;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-breadcrumb {
    margin-bottom: 20px;
}

.hero-breadcrumb .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.hero-breadcrumb .breadcrumb-item {
    font-size: 14px;
    font-weight: 300;
}

.hero-breadcrumb .breadcrumb-item a {
    color: black;
    text-decoration: none;
    transition: color 0.3s ease;
}

.hero-breadcrumb .breadcrumb-item a:hover {
    color: black;
}

.hero-breadcrumb .breadcrumb-item.active {
    color: #69709d;
    font-weight: 400;
}

.hero-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: black;
    font-size: 16px;
    margin: 0 8px;
}

.hero-title {
    font-family: 'Mont Semibold', sans-serif;
    font-size: 3rem;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 8px;
    color: black;
}

/* Page Hero Responsive */
@media (max-width: 768px) {
    .page-hero {
        height: 400px;
        padding: 100px 0 60px;
    }

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

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

    .page-hero .hero-content,
    .page-hero .hero-breadcrumb {
        text-align: center;
        width: 100%;
    }

    .page-hero .breadcrumb {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .page-hero {
        height: 200px;
        padding: 80px 0 0px;
    }

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

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

    .page-hero .breadcrumb {
        font-size: 0.9rem;
    }
}

/* About Page Section */
.about-page {
    padding: 80px 0;
}

.about-content {
    padding-right: 40px;
}

.about-title {
    font-family: 'Mont Semibold', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 30px;
    line-height: 1.3;
}

.about-text {
    font-family: 'Mont Regular', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--neutral-color);
}

.about-text p {
    margin-bottom: 20px;
    text-align: justify;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-image {
    text-align: center;
    padding-left: 20px;
}

.about-image img {
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: translateY(-5px);
}

/* About Page Responsive */
@media (max-width: 992px) {
    .about-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .about-image {
        padding-left: 0;
    }
}

@media (max-width: 768px) {
    .about-page {
        padding: 60px 0;
    }
    
    .about-title {
        font-size: 2rem;
        margin-bottom: 25px;
    }
    
    .about-text {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .about-page {
        padding: 40px 0;
    }
    
    .about-title {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    .about-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

/* About Continuation Section */
.about-continuation {
    background-color: #e9ecef;
    padding: 60px 0;
    margin-top: 0px;
}

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

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

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

.about-continuation-text p {
    font-family: 'Mont Regular', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--neutral-color);
    margin-bottom: 20px;
    text-align: justify;
}

.about-continuation-text p:last-child {
    margin-bottom: 0;
}

/* About Continuation Responsive */
@media (max-width: 992px) {
    .about-continuation {
        padding: 50px 30px;
    }
    
    .about-continuation-text {
        padding-left: 0;
        margin-top: 30px;
    }
    
    .about-logo {
        padding: 10px;
    }
    
    .about-logo img {
        max-width: 150px;
    }
}

@media (max-width: 768px) {
    .about-continuation {
        padding: 40px 20px;
        margin-top: 30px;
    }
    
    .about-continuation-text p {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .about-logo img {
        max-width: 120px;
    }
}

@media (max-width: 576px) {
    .about-continuation {
        padding: 30px 15px;
        margin-top: 20px;
    }
    
    .about-continuation-text p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .about-logo img {
        max-width: 100px;
    }
}

/* Team Page Section */
.team-page {
    padding: 80px 0;
    background-color: white;
}

.team-title {
    font-family: 'Mont Semibold', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 30px;
    line-height: 1.3;
}

.team-page p {
    font-family: 'Mont Regular', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--neutral-color);
    margin-bottom: 20px;
}

.team-member {
    text-align: center;
    border: 1px solid #e9ecef;
    padding: 40px;
}

.team-member-img {
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

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

.team-member h4 {
    font-family: 'Mont Semibold', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.team-member p {
    font-family: 'Mont Regular', sans-serif;
    font-size: 1.3rem;
    color: var(--neutral-color);
    margin-bottom: 0;
    font-weight: 400;
}

/* HR Page Section */
.hr-page {
    padding: 80px 0;
}

.hr-symbol {
    text-align: center;
}

.hr-symbol img {
    height: auto;
    max-width: 75%;
}

.hr-content {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
}

.hr-title {
    font-family: 'Mont Semibold', sans-serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 25px;
    line-height: 1.3;
}

.hr-job-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.hr-job-list li {
    font-family: 'Mont Regular', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--neutral-color);
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
}

.hr-job-list li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 20px;
    height: 20px;
    background-image: url('../img/bullet.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.hr-job-list li:last-child {
    margin-bottom: 0;
}

.hr-cta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.hr-cta-button {
    border: var(--neutral-color) solid 1px;
    border-bottom: 3px solid var(--secondary-color);
    color: var(--primary-color);
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-family: 'Mont Regular', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.hr-cta-button:hover {
    background-color: var(--primary-color);
    color: white;
}

.hr-email {
    font-family: 'Mont Regular', sans-serif;
    font-size: 1rem;
    color: var(--neutral-color);
}

/* HR Page Responsive */
@media (max-width: 992px) {
    .hr-page {
        padding: 60px 0;
    }
    
    .hr-symbol {
        margin-bottom: 40px;
    }
    
    .hr-symbol img {
        max-width: 150px;
    }
    
    .hr-content {
        padding: 30px;
    }
    
    .hr-title {
        font-size: 2rem;
    }
    
    .hr-content p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .hr-page {
        padding: 50px 0;
    }
    
    .hr-symbol img {
        max-width: 120px;
    }
    
    .hr-content {
        padding: 25px;
    }
    
    .hr-title {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    .hr-content p {
        font-size: 0.95rem;
        line-height: 1.7;
        padding-left: 25px;
    }
    
    .hr-content p:before {
        width: 16px;
        height: 16px;
        top: 6px;
    }
}

@media (max-width: 576px) {
    .hr-page {
        padding: 40px 0;
    }
    
    .hr-symbol img {
        max-width: 100px;
    }
    
    .hr-content {
        padding: 20px;
    }
    
    .hr-title {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }
    
    .hr-content p {
        font-size: 0.9rem;
        line-height: 1.6;
        padding-left: 20px;
    }
    
    .hr-content p:before {
        width: 14px;
        height: 14px;
        top: 5px;
    }
}

/* Contact Page Section */
.contact-page {
    padding: 80px 0;
    background-color: white;
}

.contact-company-title {
    font-family: 'Mont Semibold', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 40px;
    line-height: 1.3;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

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

.contact-icon i {
    color: white;
    font-size: 20px;
}

.contact-details h4 {
    font-family: 'Mont Semibold', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.contact-details p {
    font-family: 'Mont Regular', sans-serif;
    font-size: 1rem;
    color: var(--neutral-color);
    margin-bottom: 5px;
    line-height: 1.5;
}

.working-hours {
    display: inline-flex;
    align-items: center;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
}

.working-hours-icon {
    width: 50px;
    height: 50px;
    margin-right: 20px;
    flex-shrink: 0;
}

.working-hours-icon img {
    width: 100%;
    height: auto;
}

.working-hours-text h4 {
    font-family: 'Mont Semibold', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.working-hours-text p {
    font-family: 'Mont Regular', sans-serif;
    font-size: 1rem;
    color: var(--neutral-color);
    margin-bottom: 0;
}

.contact-map {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
}

.map-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #f8f9fa;
    border-bottom: 1px solid #ddd;
}

.map-header h3 {
    font-family: 'Mont Semibold', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0;
}

.map-button {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 8px 16px;
    font-family: 'Mont Regular', sans-serif;
    font-size: 0.9rem;
    color: var(--neutral-color);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.map-button:hover {
    background-color: var(--secondary-color);
    color: white;
    border-color: var(--secondary-color);
}

.map-container {
    height: 400px;
}

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

/* Contact Page Responsive */
@media (max-width: 992px) {
    .contact-page {
        padding: 60px 0;
    }
    
    .contact-company-title {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }
    
    .contact-item {
        margin-bottom: 25px;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
        margin-right: 15px;
    }
    
    .contact-icon i {
        font-size: 18px;
    }
    
    .contact-details h4 {
        font-size: 1.1rem;
    }
    
    .contact-details p {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .contact-page {
        padding: 50px 0;
    }
    
    .contact-company-title {
        font-size: 1.4rem;
        margin-bottom: 25px;
    }
    
    .contact-item {
        margin-bottom: 20px;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
        margin-right: 12px;
    }
    
    .contact-icon i {
        font-size: 16px;
    }
    
    .contact-details h4 {
        font-size: 1rem;
    }
    
    .contact-details p {
        font-size: 0.9rem;
    }
    
    .working-hours {
        padding: 15px;
    }
    
    .working-hours-icon {
        width: 40px;
        height: 40px;
        margin-right: 15px;
    }
    
    .map-header {
        padding: 15px;
    }
    
    .map-header h3 {
        font-size: 1.2rem;
    }
    
    .map-button {
        padding: 6px 12px;
        font-size: 0.85rem;
    }
    
    .map-container {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .contact-page {
        padding: 40px 0;
    }
    
    .contact-company-title {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
    
    .contact-item {
        margin-bottom: 15px;
    }
    
    .contact-icon {
        width: 35px;
        height: 35px;
        margin-right: 10px;
    }
    
    .contact-icon i {
        font-size: 14px;
    }
    
    .contact-details h4 {
        font-size: 0.95rem;
    }
    
    .contact-details p {
        font-size: 0.85rem;
    }
    
    .working-hours {
        padding: 12px;
    }
    
    .working-hours-icon {
        width: 35px;
        height: 35px;
        margin-right: 12px;
    }
    
    .working-hours-text h4 {
        font-size: 1rem;
    }
    
    .working-hours-text p {
        font-size: 0.9rem;
    }
    
    .map-header {
        padding: 12px;
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .map-header h3 {
        font-size: 1.1rem;
    }
    
    .map-button {
        padding: 5px 10px;
        font-size: 0.8rem;
    }
    
    .map-container {
        height: 250px;
    }
}

/* Media Page Section */
.media-page {
    background-color: white;
}

.media-year-header {
    background-color: #f8f9fa;
    padding: 40px 0;
}

.media-year {
    font-family: 'Mont Semibold', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0;
    line-height: 1.2;
}

.media-cards-section {
    padding: 0;
}

.media-card {
    display: block;
    text-decoration: none;
    color: inherit;
    border: 1px solid #e9ecef;
    background-color: white;
    transition: all 0.3s ease;
    height: 100%;
}

.media-card:hover {
    text-decoration: none;
    color: inherit;
    border-bottom: 10px solid var(--secondary-color);
}

.media-card:hover .media-image img {
    border: 5px solid var(--secondary-color);
}

.media-image {
    position: relative;
    overflow: hidden;
}

.media-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: all 0.3s ease;
    border: 0;
}

.media-content {
    padding: 0px;
    margin-top: 20px;
}

.media-title {
    font-family: 'Mont Semibold', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
    line-height: 1.4;
}

.media-date {
    font-family: 'Mont Regular', sans-serif;
    font-size: 0.9rem;
    color: var(--neutral-color);
    margin-bottom: 15px;
}

.media-description {
    font-family: 'Mont Regular', sans-serif;
    font-size: 1rem;
    color: var(--neutral-color);
    line-height: 1.6;
    margin-bottom: 0;
}

.media-pagination {
    padding: 40px 0;
    background-color: white;
}

.media-pagination .pagination {
    margin-bottom: 0;
}

.media-pagination .page-link {
    color: var(--primary-color);
    border: 1px solid #e9ecef;
    padding: 10px 15px;
    font-family: 'Mont Regular', sans-serif;
    font-size: 1rem;
}

.media-pagination .page-link:hover {
    background-color: var(--secondary-color);
    color: white;
    border-color: var(--secondary-color);
}

.media-pagination .page-item.active .page-link {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

/* Media Page Responsive */
@media (max-width: 992px) {
    .media-year {
        font-size: 2.2rem;
    }
    
    .media-year-header {
        padding: 30px 0;
    }
    
    .media-image img {
        height: 200px;
    }
    
    .media-content {
        padding: 20px;
    }
    
    .media-title {
        font-size: 1.2rem;
    }
    
    .media-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .media-year {
        font-size: 2rem;
    }
    
    .media-year-header {
        padding: 25px 0;
    }
    
    .media-image img {
        height: 180px;
    }
    
    .media-content {
        padding: 18px;
    }
    
    .media-title {
        font-size: 1.1rem;
    }
    
    .media-date {
        font-size: 0.85rem;
    }
    
    .media-description {
        font-size: 0.9rem;
    }
    
    .media-pagination {
        padding: 30px 0;
    }
}

@media (max-width: 576px) {
    .media-year {
        font-size: 1.8rem;
    }
    
    .media-year-header {
        padding: 20px 0;
    }
    
    .media-image img {
        height: 160px;
    }
    
    .media-content {
        padding: 15px;
    }
    
    .media-title {
        font-size: 1rem;
    }
    
    .media-date {
        font-size: 0.8rem;
    }
    
    .media-description {
        font-size: 0.85rem;
    }
    
    .media-pagination {
        padding: 25px 0;
    }
    
    .media-pagination .page-link {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
}

/* Product Page Section */
.product-page {
    background-color: white;
    padding: 60px 0;
}

.product-image-section {
    position: relative;
}

.product-image-section .carousel {
    overflow: hidden;
}

.product-image-section .carousel-inner {
    border-radius: 10px;
}

.product-image-section .carousel-item img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

/* Custom Carousel Controls */
.product-image-section .carousel-control-prev,
.product-image-section .carousel-control-next {
    width: 80px;
    height: 80px;
    color: var(--secondary-color);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    transition: all 0.3s ease;
}

.product-image-section .carousel-control-prev {
    left: 10px;
}

.product-image-section .carousel-control-next {
    right: 10px;
}

.product-image-section .carousel-control-prev:hover,
.product-image-section .carousel-control-next:hover {
    background-color: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.product-image-section .carousel-control-prev-icon,
.product-image-section .carousel-control-next-icon {
    width: 50px;
    height: 50px;
    background-size: 50px 50px;
}

/* Product Info */
.product-info {
    padding-left: 40px;
}

.product-title {
    font-family: 'Mont Semibold', sans-serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 25px;
    line-height: 1.3;
}

.product-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.product-category {
    flex: 1;
}

.category-label {
    font-family: 'Mont Regular', sans-serif;
    font-size: 1rem;
    color: var(--neutral-color);
    font-weight: 500;
}

.product-cta {
    flex-shrink: 0;
}

.product-offer-btn {
    background-color: var(--secondary-color);
    border: none;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-family: 'Mont Semibold', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.product-offer-btn:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Product Features */
.product-features {
    margin-bottom: 35px;
}

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

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

.feature-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bullet-icon {
    width: 16px;
    height: 16px;
}

.feature-text {
    font-family: 'Mont Regular', sans-serif;
    font-size: 1rem;
    color: var(--neutral-color);
    line-height: 1.5;
    flex: 1;
}

/* Product Description */
.product-description {
    margin-top: 30px;
}

.description-text {
    font-family: 'Mont Regular', sans-serif;
    font-size: 1rem;
    color: var(--neutral-color);
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: justify;
}

.description-text:last-child {
    margin-bottom: 0;
}

/* Product Page Responsive */
@media (max-width: 992px) {
    .product-page {
        padding: 40px 0;
    }
    
    .product-info {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .product-title {
        font-size: 2rem;
    }
    
    .product-image-section .carousel-item img {
        height: 400px;
    }
    
    .product-image-section .carousel-control-prev {
        left: 10px;
    }
    
    .product-image-section .carousel-control-next {
        right: 10px;
    }
}

@media (max-width: 768px) {
    .product-page {
        padding: 30px 0;
    }
    
    .product-title {
        font-size: 1.8rem;
    }
    
    .product-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .product-image-section .carousel-item img {
        height: 300px;
    }
    
    .product-image-section .carousel-control-prev,
    .product-image-section .carousel-control-next {
        width: 50px;
        height: 50px;
    }
    
    .product-image-section .carousel-control-prev {
        left: 5px;
    }
    
    .product-image-section .carousel-control-next {
        right: 5px;
    }
    
    .thumbnail-img {
        height: 60px;
    }
}

@media (max-width: 576px) {
    .product-page {
        padding: 20px 0;
    }
    
    .product-title {
        font-size: 1.6rem;
    }
    
    .product-image-section .carousel-item img {
        height: 250px;
    }
    
    .product-image-section .carousel-control-prev,
    .product-image-section .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    
    .product-image-section .carousel-control-prev-icon,
    .product-image-section .carousel-control-next-icon {
        width: 16px;
        height: 16px;
        background-size: 16px 16px;
    }
    
    .thumbnail-img {
        height: 50px;
    }
    
    .feature-item {
        gap: 10px;
    }
    
    .bullet-icon {
        width: 14px;
        height: 14px;
    }
    
    .feature-text {
        font-size: 0.95rem;
    }
    
    .description-text {
        font-size: 0.95rem;
    }
}

/* Similar Products Section */
.similar-products {
    background-color: white;
    padding: 60px 0;
    border-top: 1px solid #e9ecef;
}

.similar-products-header {
    margin-bottom: 40px;
}

.similar-products-title {
    font-family: 'Mont Semibold', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0;
}

.similar-products-navigation {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.similar-nav-btn {
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.similar-nav-btn:hover {
    background-color: var(--primary-color);
    transform: scale(1.1);
}

.similar-nav-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    transform: none;
}

.similar-products-carousel {
    position: relative;
    overflow: hidden;
}

.similar-products-carousel .row {
    transition: transform 0.3s ease;
    display: flex;
    flex-wrap: nowrap;
}

.similar-products-carousel .col-lg-4 {
    flex: 0 0 calc(100% / 3);
    max-width: calc(100% / 3);
}

@media (max-width: 991.98px) {
    .similar-products-carousel .col-lg-4 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .similar-products-navigation {
        justify-content: center;
        margin-top: 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .similar-products-carousel .col-lg-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.similar-product-card {
    background-color: white;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.similar-product-image {
    position: relative;
    overflow: hidden;
}

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

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

.similar-product-info {
    padding: 20px;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.similar-product-title {
    font-family: 'Mont Semibold', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0;
    line-height: 1.4;
}

/* Similar Products Responsive */
@media (max-width: 992px) {
    .similar-products {
        padding: 40px 0;
    }
    
    .similar-products-title {
        font-size: 1.8rem;
    }
    
    .similar-product-image {
        height: 200px;
    }
    
    .similar-product-info {
        padding: 15px;
    }
    
    .similar-product-title {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .similar-products {
        padding: 30px 0;
    }
    
    .similar-products-header {
        margin-bottom: 30px;
    }
    
    .similar-products-title {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }
    
    .similar-products-navigation {
        justify-content: center;
    }
    
    .similar-product-image {
        height: 180px;
    }
    
    .similar-product-info {
        padding: 12px;
    }
    
    .similar-product-title {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .similar-products {
        padding: 20px 0;
    }
    
    .similar-products-title {
        font-size: 1.4rem;
    }
    
    .similar-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .similar-product-image {
        height: 150px;
    }
    
    .similar-product-info {
        padding: 10px;
    }
    
    .similar-product-title {
        font-size: 0.9rem;
    }
}
