/* Container Genişlik Override */
.container {
    max-width: 1400px !important; /* Varsayılan 1320px yerine 1400px */
}

/* Alternatif olarak tüm breakpoint'leri özelleştirmek için: */
/*
@media (min-width: 576px) {
    .container { max-width: 600px !important; }
}
@media (min-width: 768px) {
    .container { max-width: 800px !important; }
}
@media (min-width: 992px) {
    .container { max-width: 1100px !important; }
}
@media (min-width: 1200px) {
    .container { max-width: 1400px !important; }
}
@media (min-width: 1400px) {
    .container { max-width: 1600px !important; }
}
*/

/* CSS Değişkenleri */
:root {
    /* Ana Renkler */
    --primary-color: #DB2428;
    --primary-hover: #b91c1f;
    --red-dark: #C51519;

    /* Metin Renkleri */
    --text-dark: #333;
    --text-black: #000;
    --text-gray: #93969F;
    --text-white-80: rgba(255, 255, 255, 0.8);

    /* Arka Plan Renkleri */
    --white: #fff;
    --light-gray: #f8f9fa;
    --light-blue: #F2F5FF;
    --about-bg: #E8F2FF;
    --dark-blue: #1F3D8A;
    --dark-blue-hover: #162f6b;
    --green: #38A138;

    /* Gradyan Renkleri */
    --gradient-start: #002A5C;
    --gradient-end: #004AA1;

    /* Arayüz Bileşen Renkleri */
    --top-bar-bg: rgba(255, 255, 255, 0.05);
    --nav-bg: rgba(255, 255, 255, 0.15);
    --mobile-menu-btn-bg: rgba(255, 255, 255, 0.1);
    --mobile-menu-btn-hover-bg: rgba(255, 255, 255, 0.2);
    --mobile-menu-btn-border: rgba(255, 255, 255, 0.2);
    --hero-tab-bg: rgba(255, 255, 255, 0.1);
    --hero-tab-hover-bg: rgba(255, 255, 255, 0.2);
    --values-box-bg: rgba(0, 42, 92, 0.75);

    /* Kenarlık, Gölge ve Katman Renkleri */
    --border-light: #eee;
    --gray-light: #9D9D9D;
    --gray-medium: #728080;
    --sidebar-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.15);
    --form-focus-shadow: 0 0 0 0.2rem rgba(219, 36, 40, 0.25);
    --overlay-bg: rgba(0, 0, 0, 0.5);
    --overlay-dark: rgba(0, 0, 0, 0.6);
}

/* Köşe Kesim Stilleri */
.corner-cut-left-bottom-sm {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 20px 100%, 0 calc(100% - 20px));
}

.corner-cut-right-bottom-sm {
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
}

/* Ortak Stiller */
body {
    overflow-x: hidden;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

header {
    position: fixed;
    width: 100%;
    height: auto;
    z-index: 1000;
    overflow: visible;
}

/* Header */
.main-header {
    display: flex;
    background-color: transparent;
    justify-content: space-between;
    overflow: visible;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
}

.logo-section {
    width: 203px;
    height: 103px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
}

.logo-image {
    width: 131.5px;
    height: 100%;
    object-fit: cover;
}

.nav-section {
    display: flex;
    flex-direction: column;
    overflow: visible;
}

.top-bar {
    background-color: var(--top-bar-bg);
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 30px;
    backdrop-filter: blur(50px);
}

.header-contact-info {
    display: flex;
    gap: 20px;
}

.header-contact-email,
.header-contact-phone {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.header-contact-email:hover,
.header-contact-phone:hover {
    color: var(--primary-color);
}

.main-nav {
    flex: 1;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-links {
    display: flex;
    list-style: none;
    border-top: 1px solid var(--primary-color);
    margin: 0;
    padding: 0 129px 0 50px;
    height: 65px;
    align-items: center;
    gap: 50px;
    background-color: var(--nav-bg);
}

.nav-link {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: var(--white);
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

/* Desktop Dropdown */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
}

.dropdown-toggle::after {
    display: none !important;
}

.dropdown-toggle i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

/* Mega Menu (Header Dışında) */
.mega-menu {
    position: absolute;
    top: 103px;
    left: 0;
    right: 0;
    width: 100%;
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 50px 0;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    transition: all 0.3s ease;
    pointer-events: none;
}

.mega-menu.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

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

.mega-menu-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(6, auto);
    row-gap: 10px;
    column-gap: 50px;
    grid-auto-flow: column;
    align-items: start;
}

.mega-menu-item {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s ease;
    white-space: nowrap;
    padding: 5px 0;
}

.mega-menu-item:hover {
    opacity: 0.7;
    color: var(--white);
}

/* Responsive Grid */
@media (max-width: 768px) {
    .mega-menu-content {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(6, auto);
        row-gap: 10px;
        column-gap: 30px;
        grid-auto-flow: column;
    }
}

@media (max-width: 480px) {
    .mega-menu-content {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        row-gap: 10px;
        column-gap: 0;
        grid-auto-flow: row;
    }
}

/* Home Hero Swiper Styles */
.home-hero-swiper {
    position: relative;
    overflow: visible;
    
}

.home-hero-next {
    right: -140px;
}

.home-hero-prev {
    left: -140px;
}

.home-hero-swiper .swiper-slide {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.home-hero-swiper .swiper-slide-active {
    opacity: 1;
}

/* Custom Navigation Buttons */
.home-hero-next,
.home-hero-prev {
    width: 50px;
    height: 50px;
    color: var(--white);
    font-size: 42px;

    transition: all 0.3s ease;
}

.home-hero-next::after,
.home-hero-prev::after {
    font-size: 42px;
}

/* Custom Pagination - Hidden on Desktop */
.home-hero-pagination {
    bottom: 20px !important;
    text-align: center;
    display: none;
    position: relative;
}

.home-hero-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    transition: all 0.3s ease;
    margin: 0 4px;
}

/* Limit pagination bullets to actual slide count */
.home-hero-pagination .swiper-pagination-bullet:nth-child(n+4) {
    display: none;
}

.home-hero-pagination .swiper-pagination-bullet-active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* Mobile Responsive Hero Swiper */
@media (max-width: 768px) {
    .home-hero-swiper {
        padding: 0 20px;
    }
    
    /* Hide navigation buttons on mobile */
    .home-hero-next,
    .home-hero-prev {
        display: none;
    }
    
    /* Show pagination on mobile */
    .home-hero-pagination {
        display: block;
        position: static;
        bottom: auto !important;
        padding-top: 20px;
        margin-top: 20px;
    }
}

.action-buttons {
    display: flex;
    height: 65px;
    gap: 0;
    background-color: var(--nav-bg);
}

.btn-damage {
    background-color: var(--white);
    color: var(--text-black);
    height: 65px;
    width: 185px;
    border: none;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-damage:hover {
    background-color: var(--light-gray);
    color: var(--primary-color);
}

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

.btn-offer {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    height: 65px;
    width: 185px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

/* Mobil Menü */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 1001;
    position: relative;
    width: 40px;
    height: 40px;
    background-color: var(--mobile-menu-btn-bg);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid var(--mobile-menu-btn-border);
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    background-color: var(--mobile-menu-btn-hover-bg);
    transform: scale(1.05);
}

.mobile-menu-btn span {
    width: 20px;
    height: 2px;
    background-color: var(--white);
    margin: 2px 0;
    transition: all 0.3s ease;
    border-radius: 1px;
    display: block;
}

.mobile-menu-btn.active {
    display: none;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay-bg);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.mobile-menu-sidebar {
    position: fixed;
    top: 0;
    right: 100%;
    width: 100%;
    height: 100vh;
    background-color: var(--white);
    z-index: 1000;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.mobile-menu-sidebar.active {
    right: unset;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--border-light);
    background-color: var(--primary-color);
}

.mobile-logo {
    width: 100px;
    height: auto;
    filter: brightness(0) invert(1);
}

.mobile-menu-close {
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    width: 30px;
    height: 30px;
}

.mobile-menu-close span {
    position: absolute;
    width: 20px;
    height: 2px;
    background-color: var(--white);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.mobile-menu-close span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-menu-close span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-menu-content {
    padding: 20px;
}

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

.mobile-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: var(--text-gray);
}

.mobile-contact-item i {
    color: var(--primary-color);
    width: 16px;
}

.mobile-contact-item a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.mobile-nav-link {
    display: block;
    padding: 15px 0;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
    text-decoration: none;
    text-transform: uppercase;
    border-bottom: 1px solid var(--border-light);
    transition: color 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--primary-color);
}

/* Mobile Dropdown */
.mobile-dropdown {
    position: relative;
}

.mobile-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.mobile-dropdown-toggle i {
    font-size: 12px;
    transition: transform 0.3s ease;
    margin-left: auto;
}

.mobile-dropdown.active .mobile-dropdown-toggle i {
    transform: rotate(180deg);
}

.mobile-submenu {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: var(--light-gray);
    border-radius: 8px;
    margin-top: 10px;
}

.mobile-dropdown.active .mobile-submenu {
    max-height: 1000px;
    padding: 15px 0;
}

.mobile-submenu-category {
    margin-bottom: 20px;
}

.mobile-submenu-category:last-child {
    margin-bottom: 0;
}

.mobile-submenu-category h6 {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0 0 10px 0;
    padding: 0 20px;
    text-transform: uppercase;
    border-bottom: 1px solid var(--primary-color);
    padding-bottom: 5px;
}

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

.mobile-submenu-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-submenu-link:hover {
    background-color: var(--white);
    color: var(--primary-color);
    padding-left: 25px;
}

.mobile-submenu-link i {
    font-size: 12px;
    color: var(--primary-color);
    width: 14px;
    flex-shrink: 0;
}

.mobile-action-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-btn-damage,
.mobile-btn-offer {
    width: 100%;
    padding: 15px;
    border: none;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

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

.mobile-btn-offer:hover {
    background-color: var(--primary-hover);
}

/* İletişim Harita Bölümü */
.contact-map-section {
    padding: 100px 0;
}

.contact-page-container {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-page-item {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.contact-page-icon-container {
    width: 100px;
    height: 100px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 40px;
}

.contact-page-icon {
    width: 50px !important;
    height: 50px !important;
}

.contact-page-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}

.contact-page-title {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-white-80);
    margin: 0 0 17px 0;
}

.contact-page-description {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: var(--white);
    margin: 0;
    line-height: 1.5;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.contact-page-item:first-child .contact-page-description {
    font-size: 16px;
}

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

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

/* Hero Bölümü */
.hero-section {
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
    display: flex;
    align-items: center;
}

.hero-section-product {
    display: inline-block;
    width: 100%;
}

.hero-content {
    padding: 262px 0 100px 0;
    text-align: left;
}

.hero-content-left-right {
    display: flex;
    justify-content: space-between;
    padding: 262px 0 342px 0;
}

.hero-content-left-right .breadcrumbs {
    margin-top: -11px;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.breadcrumb-center {
    justify-content: center;
    text-align: center;
}

.breadcrumb-item {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item:hover {
    color: var(--white);
}

.breadcrumb-item.active {
    color: var(--white);
}

.breadcrumb-separator {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: var(--white);
}

/* Ürün Detay Bölümü */
.product-detail-section {
    padding: 0 0 200px 0;
    background-color: var(--light-blue);
    margin-top: -276px;
}

.product-detail-section .row {
    margin: 0;
}

.product-detail-section .col-lg-8 {
    padding-right: 44.5px;
}

.product-detail-section .col-lg-4 {
    padding-left: 44.5px;
}

.product-content {
    display: flex;
    flex-direction: column;
}

.product-image {
    margin-bottom: 50px;
}

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

.product-info {
    margin-bottom: 50px;
}

.product-title {
    font-family: 'Poppins', sans-serif;
    font-size: 34px;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.product-description {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: var(--gray-medium);
    line-height: 1.6;
    margin: 0;
}

.product-description li {
    margin-bottom: 10px;
    list-style-type: disc;
}

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

.product-advantages {
    margin-bottom: 50px;
}

.advantages-title {
    font-family: 'Poppins', sans-serif;
    font-size: 34px;
    font-weight: 300;
    color: var(--text-black);
    margin-bottom: 30px;
}

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

.advantage-card {
    background-color: var(--white);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.advantage-icon {
    width: 25px;
    height: 25px;
    object-fit: contain;
    flex-shrink: 0;
}

.advantage-text {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-black);
}

/* Ürün Sidebar */
.product-sidebar {
    min-height: 400px;
    position: static;
    max-width: 375px;
}

/* Sidebar'ı sağa yaslamak için parent col'a stil ekleme */
.product-detail-section .col-lg-4 {
    display: flex;
    justify-content: flex-end;
    padding-right: 0 !important;
}

/* Sticky sidebar after scroll */
.product-sidebar.sticky {
    position: fixed;
    top: 120px;
    z-index: 100;
}

.sidebar-card {
    background-color: var(--white);
    overflow: hidden;
    box-shadow: var(--sidebar-shadow);
}

.sidebar-header {
    background-color: var(--red-dark);
    padding: 20px 40px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.sidebar-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
    flex-shrink: 0;
}

.sidebar-title {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
}

.sidebar-content {
    padding: 24px 40px 50px 40px;
}

.sidebar-description {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--gray-light);
    line-height: 1.6;
    margin-bottom: 28px;
}

.sidebar-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sidebar-input {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    border: 1.5px solid var(--red-dark);
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    color: var(--text-dark);
    background-color: var(--white);
}

.sidebar-input::placeholder {
    color: var(--gray-light);
}

.sidebar-input:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Select elementleri için özel stiller */

/* Custom Select Styles */
.custom-select-wrapper {
    position: relative;
    width: 100%;
}

.custom-select {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--white);
    user-select: none;
    transition: all 0.2s ease;
}

.custom-select:hover {
    border-color: var(--primary-color);
}

.custom-select.active {
    border-color: var(--primary-color) !important;
    border-radius: 4px 4px 0 0 !important;
    border-bottom: none !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.custom-select-text {
    flex: 1;
    color: var(--gray-light);
    font-size: 12px;
}

.custom-select.has-selection .custom-select-text {
    color: var(--text-dark);
}

.custom-select-arrow {
    width: 16px;
    height: 16px;
    margin-left: 10px;
    transition: transform 0.2s ease;
}

.custom-select.active .custom-select-arrow {
    transform: rotate(180deg);
}

.custom-select-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1.5px solid var(--primary-color);
    border-top: none;
    border-radius: 0 0 8px 8px;
    z-index: 1000;
    display: none;
    max-height: 200px;
    overflow-y: auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    margin-top: 0;
}

/* Index sayfasındaki custom-select'ler için yukarıya açılma */
.home-hero-tab-content .custom-select-wrapper .custom-select-options,
.home-hero-tab-content .custom-select-options {
    top: auto;
    bottom: 100%;
    border-top: 1.5px solid var(--primary-color);
    border-bottom: none;
    border-radius: 8px 8px 0 0;
    margin-bottom: 0;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

.home-hero-tab-content .custom-select.active {
    border-bottom: 1.5px solid var(--primary-color) !important;
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
    border-top: none;
}

.custom-select.active + .custom-select-options {
    display: block;
    animation: slideDown 0.2s ease-out;
}

/* Hero tab content'teki select'ler için yukarıya slide animasyonu - daha spesifik selector */
.home-hero-tab-content .custom-select.active + .custom-select-options {
    display: block;
    animation: slideUp 0.2s ease-out;
}

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

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.custom-select-option {
    padding: 14px 15px;
    cursor: pointer;
    font-size: 12px;
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    transition: all 0.2s ease;
    border-bottom: 1px solid #f0f0f0;
    background-color: white;
}

.custom-select-option:hover {
    background-color: #f8f9fa;
    color: var(--red-dark);
    padding-left: 18px;
}

.custom-select-option:last-child {
    border-radius: 0 0 8px 8px;
    border-bottom: none;
}

.custom-select-option:first-child {
    margin-top: 2px;
}

/* Gerçek bir seçim yapıldığında rengi değiştir */
.sidebar-input[name="owner"].has-selection, .form-control[name="owner"].has-selection {
    color: var(--text-dark);
}

/* Number input spinner oklarını gizle */
.sidebar-input[type="number"]::-webkit-outer-spin-button,
.sidebar-input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.sidebar-input[type="number"] {
    -moz-appearance: textfield;
    appearance: textfield;
}

.sidebar-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 10px;
}

.sidebar-checkbox-input {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    background-color: var(--white);
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 2px;
}

.sidebar-checkbox-input:checked {
    background-color: var(--primary-color);
    position: relative;
}

.sidebar-checkbox-input:checked::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--white);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 10px;
}

.sidebar-checkbox-label {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    color: var(--gray-light);
    line-height: 1.4;
    cursor: pointer;
    margin-top: 3.15px;
}

.sidebar-checkbox-label .kvkk-link {
    color: var(--primary-color);
    text-decoration: none;
}

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

.sidebar-submit-btn {
    background-color: var(--dark-blue);
    color: var(--white);
    border: none;
    padding: 28px 0;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 50px;
}

.sidebar-success-btn {
    background-color: var(--green);
    color: var(--white);
    border: none;
    padding: 28px 0;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    pointer-events: none;
    transition: background-color 0.3s ease;
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.sidebar-submit-btn:hover {
    background-color: var(--dark-blue-hover);
}

/* Hero Sekmeleri */
.hero-tabs {
    display: flex;
    margin-top: 50px;
    gap: 5px;
}

.hero-tab-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 30px 90px;
    background-color: var(--hero-tab-bg);
    backdrop-filter: blur(50px);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-tab-item span {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    text-align: center;
}

.hero-tab-item.active {
    background-color: var(--white);
    border-color: var(--primary-color);
}

.hero-tab-item.active img {
    filter: brightness(0) saturate(100%) invert(27%) sepia(51%) saturate(2878%) hue-rotate(346deg) brightness(104%) contrast(97%);
}

.hero-tab-item.active span {
    color: var(--primary-color);
}

.hero-tab-item:hover:not(.active) {
    background-color: var(--hero-tab-hover-bg);
}

/* Hero Sekme İçerikleri */
.hero-tab-contents {
    background-color: var(--white);
    font-size: 14px;
    color: var(--text-gray);
}

.hero-tab-content {
    display: none;
}

.hero-tab-content.active {
    display: block;
}

.tab-content-wrapper {
    display: flex;
    gap: 50px;
}

.tab-content-text {
    flex: 0.8;
    text-align: left;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tab-content-image {
    flex: 1.2;
    text-align: center;
    align-self: stretch;
    position: relative;
    overflow: hidden;
}

.tab-content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-tab-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.hero-tab-content p {
    font-family: 'Urbanist', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: var(--text-gray);
}

.tab-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Urbanist', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
}

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

/* Teklif Formu */

.tab-content-wrapper .sidebar-form input {
    border: 1.5px solid var(--red-dark);
    border-radius: 8px;
    padding: 15px;
    font-family: 'Urbanist', sans-serif;
    font-size: 12px;
    transition: border-color 0.3s ease;
    color: var(--gray-light);
}

.tab-content-wrapper .sidebar-form input::placeholder {
    color: var(--gray-light);
    font-size: 12px;
}

.tab-content-wrapper .sidebar-form input:focus {
    border-color: var(--primary-color);
    box-shadow: var(--form-focus-shadow);
    outline: none;
}

.tab-content-wrapper .sidebar-form .sidebar-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tab-content-wrapper .sidebar-form .sidebar-checkox-input {
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    cursor: pointer;
    appearance: none;
    background-color: var(--white);
    flex-shrink: 0;
    position: relative;
}

.tab-content-wrapper .sidebar-form .sidebar-checkox-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.tab-content-wrapper .sidebar-form .sidebar-checkox-input:checked::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    font-size: 10px;
}

.tab-content-wrapper .sidebar-form .sidebar-checkbox-label {
    font-family: 'Urbanist', sans-serif;
    font-size: 14px;
    color: var(--gray-light);
    line-height: 1.4;
    cursor: pointer;
    margin-top: 6px;
}

.tab-content-wrapper .sidebar-form .kvkk-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    padding-right: 2px;
}

.tab-content-wrapper .sidebar-form .kvkk-link:hover {
    text-decoration: underline;
}

.tab-content-wrapper .sidebar-form .btn-primary {
    background-color: var(--primary-color);
    border: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    padding: 28px 100px;
    border-radius: 0;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    cursor: pointer;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 15px 100%, 0 calc(100% - 15px));
}

.tab-content-wrapper .sidebar-form .btn-primary.success {
    background-color: var(--green);
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.tab-content-wrapper .sidebar-form .btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

/* Hakkımızda Bilgi Bölümü */
.about-info-section {
    background-color: var(--light-blue);
    padding: 100px 0;
}

.about-info-container {
    position: relative;
    height: 537px;
}

.about-info-image {
    width: 75%;
    height: 100%;
    margin-left: 0;
    display: flex;
    justify-content: flex-start;
}

.about-info-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.about-info-content {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: var(--light-blue);
    padding: 50px 45px;
    max-width: 590px;
    z-index: 2;
}

.about-info-title {
    font-family: 'Poppins', sans-serif;
    font-size: 34px;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-info-description {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--gray-medium);
    line-height: 1.6;
    margin-bottom: 15px;
}

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

/* Hakkımızda Kartlar Bölümü */
.about-cards-section {
    background-color: var(--about-bg);
    padding: 100px 0;
}

.about-cards-container {
    display: flex;
    gap: 24px;
    justify-content: space-between;
}

.about-card {
    flex: 1;
    background-color: var(--primary-color);
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.about-card-icon-container {
    background-color: var(--dark-blue);
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    margin-bottom: 47px;
}

.about-card-icon {
    width: 50px;
    height: 50px;
    object-fit: cover;
}

.about-card-content {
    flex: 1;
}

.about-card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.about-card-description {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: var(--white);
    line-height: 1.5;
}

/* Misyon Vizyon Bölümü */
.mission-vision-section {
    background-image: url('../images/hakkimizda/misyon-vizyon.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 536px;
    display: flex;
    align-items: center;
    position: relative;
}

.mission-vision-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    width: 100%;
}

.mission-content {
    flex: 1;
    text-align: left;
    color: var(--white);
    max-width: 40%;
}

.vision-content {
    flex: 1;
    text-align: right;
    color: var(--white);
    max-width: 40%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.mission-vision-title {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white);
}

.mission-vision-description {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.4;
    color: var(--white);
    max-width: 325px;
}

/* SSS Bölümü */
.faq-section {
    background-color: var(--light-blue);
    padding: 60px 0;
}

.faq-section-product {
    padding: 0 !important;
}

.faq-container {
    width: 100%;
    margin: 0;
}

.faq-container-product {
    padding: 0 !important;
}

.faq-item {
    margin-bottom: 20px;
}

.faq-question {
    background-color: var(--white);
    padding: 0 40px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 100px;
    display: flex;
    align-items: center;
}

.faq-question-product {
    padding: 0 30px !important;
    height: 65px !important;
}

.faq-question.active {
    background-color: var(--primary-color);
}

.question-text {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
    padding-right: 90px;
}

.faq-question.active .question-text {
    color: var(--white);
}

.faq-toggle-btn {
    position: absolute;
    right: 0;
    top: 0;
    width: 90px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

.faq-question.active .faq-toggle-btn {
    background-color: var(--dark-blue);
}

.faq-icon {
    width: 24px;
    height: 24px;
    transition: all 0.3s ease;
}

.faq-icon-remove {
    display: none;
}

.faq-question.active .faq-icon-add {
    display: none;
}

.faq-question.active .faq-icon-remove {
    display: block;
}

.faq-answer {
    background-color: var(--white);
    padding: 40px 40px 55px 40px;
    display: none;
}

.faq-answer-product {
    padding: 40px 30px !important;
}

.faq-answer.active {
    display: block;
}

.faq-answer p {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: var(--gray-medium);
    line-height: 1.6;
    margin: 0;
}

/* Alfin Mobil Bölümü */
.alfin-mobile-section {
    background-color: var(--primary-color);
    height: 371px;
    position: relative;
    overflow: hidden;
}

.alfin-mobile-section .container {
    height: 100%;
    display: flex;
    align-items: center;
}

.mobile-content {
    text-align: left;
    width: 378px;
    z-index: 2;
    position: relative;
    margin-left: 222px;
}

.mobile-title {
    font-family: 'Poppins', sans-serif;
    font-size: 34px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 17px;
}

.mobile-description {
    font-family: 'Urbanist', sans-serif;
    font-size: 16px;
    color: var(--white);
    line-height: 1.6;
    margin: 0;
}

.mobile-image-container {
    margin-left: 60px;
    margin-top: 160px;
    rotate: -20deg;
    z-index: 1;
}

.mobile-phone-image {
    max-width: 305px;
    width: 100%;
    height: auto;
}

/* Partnerler Bölümü */
.partners-section {
    padding: 80px 0;
    background-color: var(--white);
}

.partners-title {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 37px;
}

.partners-logos {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.partner-logo {
    max-width: 160px;;
    object-fit: contain;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* Değerler Bölümü */
.values-section {
    height: 552px;
    background-image: url('../images/deger-verdikleriniz.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.values-content {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
}

.values-box {
    background-color: var(--values-box-bg);
    backdrop-filter: blur(20px);
    padding: 50px 132px;
    max-width: 700px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.values-title {
    font-family: 'Poppins', sans-serif;
    font-size: 34px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.3;
}

.values-description {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--white);
    line-height: 1.6;
    margin-bottom: 65px;
    opacity: 0.9;
}

.values-button {
    display: inline-block;
    align-self: flex-start;
    padding: 18px 60px;
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
    cursor: pointer;
    position: relative;
}

.values-button::before {
    content: '';
    position: absolute;
    bottom: -12px;
    left: -16px;
    width: 30px;
    height: 26px;
    transform: rotate(45deg);
    background-color: transparent;
    border-top: 2px solid var(--white);
}

.values-button:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.values-button:hover::before {
    opacity: 0;
}

/* Footer */
footer {
    padding-top: 50px;
    position: relative;
}

.footer-company-text {
    font-family: 'Urbanist', sans-serif;
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

.footer-heading {
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
    font-size: 20px;
    min-height: 20px;
    color: var(--text-dark);
    margin-bottom: 20px;
}

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

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

.footer-link {
    font-family: 'Urbanist', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.contact-info {
    margin-top: 0;
}

.contact-item {
    margin-bottom: 12px;
}

.contact-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.contact-text {
    font-family: 'Urbanist', sans-serif;
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.5;
    margin: 0;
}

.contact-link {
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid var(--primary-color) !important;
    margin-top: 90px !important;
}

.copyright-text {
    font-family: 'Urbanist', sans-serif;
    font-size: 14px;
    color: var(--text-black);
    margin: 0;
}

.social-media {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

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

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

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

.mb-4 {
    margin-bottom: 35px !important;
}

/* En İyi Ürünler Bölümü */
.best-product-section {
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-color) 33.33%, var(--light-blue) 33.33%, var(--light-blue) 100%);
    padding: 75px 0 62px 0;
    overflow-x: hidden;
}

.best-product-info {
    padding-right: 83px;
    color: var(--white);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.best-product-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.best-product-title {
    font-family: 'Poppins', sans-serif;
    font-size: 34px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 40px;
}

.best-product-button {
    display: inline-block;
    align-self: flex-start;
    padding: 18px 40px;
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    cursor: pointer;
    position: relative;
}

.best-product-button::before {
    content: '';
    position: absolute;
    bottom: -12px;
    left: -16px;
    width: 30px;
    height: 26px;
    transform: rotate(45deg);
    background-color: transparent;
    border-top: 2px solid var(--white);
}

.best-product-button:hover {
    background-color: var(--white);
    border-color: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.best-product-button:hover::before {
    opacity: 0;
}

.best-product-section .col-lg-8 {
    
    margin-right: -15px;
    padding-right: 0;
    padding-left: 85px;
}

.best-product-slider {
    padding: 0 50px 0 0;
    margin-right: -500px;
}

.best-product-card {
    background-color: var(--white);
    overflow: hidden;
    transition: transform 0.3s ease;
    height: 100%;
}

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

.best-product-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

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

.best-product-content {
    padding: 30px;
}

.best-product-card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.best-product-card-description {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: var(--gray-medium);
    line-height: 1.6;
    margin-bottom: 29px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.best-product-card-link {
    color: var(--primary-color);
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.best-product-card-link:hover {
    color: var(--primary-hover);
}

.best-product-card-link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.best-product-card-link:hover i {
    transform: translateX(3px);
}

/* Yeni Alan Bölümü */
.new-section {
    background-color: var(--about-bg);
    padding: 100px 0;
}

.new-section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 34px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 38px;
}

.feature-boxes {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-box {
    background-color: var(--white);
    padding: 20px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    width:85%;
}

.feature-box.auto-hover {
    background-color: var(--primary-color);
    transform: translateX(-25px);
    width: calc(85% + 50px);
}

.feature-icon {
    width: 25px;
    height: 25px;
    margin-right: 20px;
    transition: all 0.3s ease;
}

.feature-text {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.feature-box.auto-hover .feature-text {
    color: var(--white);
}

.feature-box.auto-hover .feature-icon {
    content: url('../images/icons/urunler/basvur-light.png');
}

.new-section-image {
    height: 537px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.full-width-height {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Ana Sayfa Hero Bölümü */
.home-hero-section {
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
    padding:202px 0 50px 0;
}
.home-hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 50px;
}
.home-hero-image {
    text-align: right;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.home-hero-image dotlottie-wc {
    margin-left: auto;
}
.home-hero-button {
    display: inline-block;
    align-self: flex-start;
    padding: 28px 70px;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
}
.home-hero-button:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

/* Ana Sayfa Hero Sekmeleri */
.home-hero-tabs {
    display: flex;
    gap: 2px;
}

.home-hero-tab-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px 36px;
    background-color: var(--hero-tab-bg);
    cursor: pointer;
    transition: all 0.3s ease;
}
.home-hero-tab-item:hover {
    background-color: var(--hero-tab-hover-bg);
}

.home-hero-tab-item span {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    text-align: center;
}

.home-hero-tab-item.active {
    background-color: var(--white);
}

.home-hero-tab-item.active img {
    filter: brightness(0) saturate(100%) invert(27%) sepia(51%) saturate(2878%) hue-rotate(346deg) brightness(104%) contrast(97%);
}

.home-hero-tab-item.active span {
    color: var(--primary-color);
}

/* Ana Sayfa Hero Sekme İçerikleri */
.home-hero-tab-contents {
    background-color: var(--white);
    padding: 23px 16px 23px 36px;
}

.home-hero-tab-content {
    display: none;
}

.home-hero-tab-content.active {
    display: block;
}

/* Ana Sayfa Teklif Formu */
.home-quote-form {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    width: 100%;
}

.home-form-inputs {
    display: flex;
    gap: 15px;
    flex: 1;
}

.home-form-button {
    flex-shrink: 0;
}

.home-form-button .btn-primary.success {
    background-color: var(--green);
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.home-quote-form .form-control {
    border: 1.5px solid var(--red-dark);
    border-radius: 8px;
    padding: 15px;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    transition: border-color 0.3s ease;
    color: var(--gray-light);
    max-width: 262px;
    width: 100%;
}

.home-quote-form .form-control::placeholder {
    color: var(--gray-light);
    font-size: 12px;
}

.home-quote-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: var(--form-focus-shadow);
    outline: none;
}

.home-quote-form .btn-primary {
    background-color: var(--primary-color);
    border: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    padding: 28px 70px !important;
    border-radius: 0;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    cursor: pointer;
    color: var(--white);
}

.home-quote-form .btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}


/* ==========================================================================
   Responsive Stilleri (Media Queries)
   ========================================================================== */

@media (max-width: 1200px) {
    .nav-section {
        display: none;
    }

    .best-product-section .col-lg-8 {
        padding-left: 135px;
    }
    
    .mobile-menu-btn {
        display: flex;
        align-self: center;
    }
    
    .main-header {
        padding: 0 20px 0 0;
        align-items: center;
    }
    
    .logo-section {
        width: 150px;
    }
    
    .logo-image {
        width: 100px;
    }
    
    .hero-content-left-right {
        flex-direction: column;
        gap: 20px;
        padding: 200px 20px 300px 20px;
    }
    
    .hero-tabs {
        flex-direction: column;
        gap: 5px;
    }
    
    .hero-tab-item {
        width: 100%;
        padding: 20px;
        flex-direction: row;
        justify-content: flex-start;
        gap: 15px;
    }
    
    .hero-tab-item img {
        width: 25px;
        height: 25px;
    }
    
    .hero-tab-item span {
        font-size: 14px;
    }
    
    .mobile-content {
        margin-left: 150px;
    }
    
    .home-hero-tabs {
        gap: 3px;
    }
    
    .home-hero-tab-item {
        padding: 25px 60px;
    }
    
    .home-hero-tab-item img {
        width: 30px;
        height: 30px;
    }
    
    .home-hero-tab-item span {
        font-size: 12px;
    }    
    .product-sidebar {
        max-width: 100%;
        position: static;
    }}

@media (max-width: 992px) {
    .contact-page-icon-container {
        width: 80px;
        height: 80px;
        margin-right: 20px;
    }
    
    .contact-page-icon {
        width: 40px;
        height: 40px;
    }
    
    .map-container {
        height: 400px;
    }
    
    .product-detail-section .col-lg-8 {
        padding-right: 20px;
        order: 2;
    }
    
    .product-detail-section .col-lg-4 {
        padding-left: 20px;
        order: 1;
        margin-bottom: 50px;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .product-img {
        height: 350px;
    }
    
    .product-title,
    .advantages-title {
        font-size: 28px;
    }
    
    .about-cards-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .about-card {
        padding: 30px;
    }
    
    .about-card-icon-container {
        margin-bottom: 30px;
    }
    
    .about-info-container {
        height: auto;
        min-height: 400px;
    }
    
    .about-info-content {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        max-width: 100%;
        padding: 40px 30px;
        margin-top: 30px;
    }
    
    .about-info-title {
        font-size: 28px;
    }
    
    .mobile-content {
        margin-left: 100px;
    }
    
    .mobile-image-container {
        display: none;
    }

    .best-product-section {
        background: var(--primary-color);
    }
    
    .best-product-slider {
        padding: 0 20px;
        margin-right: 0;
    }
    
    .best-product-section .col-lg-8 {
        margin-right: 0;
        padding-right: 15px;
    }
    
    .best-product-section .col-lg-8 {
        margin-left: 0;
        margin-right: 0;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .best-product-slider {
        padding: 0 20px;
        margin-right: 0;
    }
    
    .best-product-info {
        text-align: center;
        padding: 40px 20px;
        padding-right: 20px;
        padding-left: 20px;
    }
    
    .best-product-title {
        font-size: 32px;
    }
    
    .best-product-slider {
        padding: 20px;
    }

    .new-section {
        padding: 60px 0;
    }
    
    .new-section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .new-section-image {
        height: 400px;
        margin-top: 40px;
    }
    
    .home-hero-title {
        font-size: 36px;
    }
    
    .home-hero-image {
        display: none;
    }
    
    .home-hero-image dotlottie-wc {
        width: 100% !important;
        height: auto !important;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .home-tab-section {
        padding: 50px 0;
    }
    
    .home-hero-tabs {
        flex-direction: column;
        gap: 5px;
        width: 100%;
        margin-top: 50px;
    }
    
    .home-hero-tab-item {
        padding: 20px 30px;
        width: 100%;
        justify-content: center;
    }
    
    .home-hero-tab-item img {
        width: 25px;
        height: 25px;
    }
    
    .home-hero-tab-item span {
        font-size: 11px;
    }
    
    .home-tab-content-wrapper {
        flex-direction: column;
        gap: 30px;
    }
    
    .home-tab-content-text {
        padding: 30px;
    }
    
    .home-tab-content-image {
        order: -1;
    }
    
    .home-hero-tab-content h3 {
        font-size: 24px;
    }

    .home-hero-tab-content h3 {
        font-size: 20px;
    }
    
    .home-hero-tab-content p {
        font-size: 14px;
    }
    
    .home-quote-form {
        flex-direction: column;
        gap: 20px;
    }
    
    .home-form-inputs {
        flex-direction: column;
        width: 100%;
    }
    
    .home-form-button {
        width: 100%;
    }
    
    .home-quote-form .form-control {
        max-width: 100%;
    }
    
    .home-quote-form .btn-primary {
        width: 100%;
        padding: 15px 20px;
    }
}

@media (max-width: 768px) {
    header {
        position: relative;
    }
    .faq-question-product {
        height: 100px !important;
    }
    
    .partners-section {
        padding: 60px 0;
    }
    
    .partners-title {
        font-size: 20px;
        margin-bottom: 30px;
    }
    
    .partners-logos {
        flex-direction: column;
        gap: 30px;
    }
    
    .partner-logo {
        height: 40px;
    }
    
    .values-section {
        height: auto;
        min-height: 400px;
        padding: 60px 0;
    }
    
    .values-content {
        justify-content: center;
        padding-right: 20px;
        padding-left: 20px;
    }
    
    .values-box {
        padding: 40px 30px;
        max-width: 100%;
        text-align: center;
    }
    
    .values-title {
        font-size: 28px;
    }
    
    .values-description {
        font-size: 13px;
        margin-bottom: 40px;
    }
    
    .values-button {
        padding: 18px 30px;
        font-size: 13px;
        align-self: stretch;
        text-align: center;
    }
    
    .contact-page-container {
        padding: 30px 20px;
    }
    
    .contact-page-icon-container {
        width: 70px;
        height: 70px;
        margin-right: 15px;
    }
    
    .contact-page-icon {
        width: 35px;
        height: 35px;
    }
    
    .contact-page-title {
        font-size: 13px;
        margin-bottom: 15px;
    }
    
    .contact-page-description {
        font-size: 15px;
    }
    
    .product-detail-section {
        padding: 40px 0;
    }
    
    .product-detail-section .col-lg-8 {
        padding-right: 15px;
    }
    
    .product-detail-section .col-lg-4 {
        padding-left: 15px;
    }
    
    .product-img {
        height: 300px;
    }
    
    .product-title,
    .advantages-title {
        font-size: 24px;
    }
    
    .advantage-card {
        padding: 15px;
        gap: 15px;
    }
    
    .advantage-text {
        font-size: 14px;
    }
    
    .about-cards-section {
        padding: 60px 0;
    }
    
    .about-card {
        padding: 25px;
    }
    
    .about-card-title {
        font-size: 20px;
    }
    
    .about-card-description {
        font-size: 13px;
    }
    
    .about-info-section {
        padding: 60px 0;
    }
    
    .about-info-image {
        width: 100%;
    }
    
    .about-info-img {
        height: 400px;
    }
    
    .about-info-content {
        padding: 30px 20px;
    }
    
    .about-info-title {
        font-size: 24px;
    }
    
    .about-info-description {
        font-size: 13px;
    }
    
    .mission-vision-section {
        height: auto;
        padding: 60px 0;
    }
    
    .mission-vision-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: var(--overlay-dark);
        z-index: 1;
    }
    
    .mission-vision-container {
        flex-direction: column;
        gap: 40px;
        position: relative;
        z-index: 2;
    }
    
    .mission-content,
    .vision-content {
        max-width: 100%;
        text-align: center;
        align-items: center;
    }
    
    .mission-vision-description {
        max-width: 100%;
    }
    
    .mission-vision-title {
        font-size: 20px;
    }
    
    .mission-vision-description {
        font-size: 14px;
    }
    
    .hero-tab-item {
        padding: 15px;
        gap: 10px;
    }
    
    .hero-tab-item img {
        width: 20px;
        height: 20px;
    }
    
    .hero-tab-item span {
        font-size: 12px;
    }
    
    .tab-content-image {
        display: none;
    }
    
    .tab-content-text {
        flex: 1;
        padding: 20px;
    }
    
    .tab-content-wrapper {
        gap: 0;
    }
    
    .mobile-content {
        margin-left: 50px;
        width: 100%;
    }
    
    .social-media {
        justify-content: center;
    }
    
    .copyright-text {
        text-align: center;
    }
    
    .best-product-section {
        padding: 60px 0;
    }
    
    .best-product-info {
        padding: 40px 20px;
        margin-bottom: 30px;
        padding-right: 20px;
        text-align: center;
    }
    
    .best-product-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .best-product-subtitle {
        font-size: 14px;
    }
    
    .best-product-button {
        padding: 16px 35px;
        font-size: 14px;
        margin-left: 25px;
    }
    
    .best-product-slider {
        padding: 10px;
    }
    
    .best-product-card-title {
        font-size: 18px;
    }
    
    .best-product-card-description {
        font-size: 13px;
    }

    .new-section {
        padding: 40px 0;
    }
    
    .new-section-title {
        font-size: 24px;
        margin-bottom: 25px;
    }
    
    .feature-box {
        padding: 15px;
        width: 100%;
    }
    
    .feature-box.auto-hover {
        width: 100%;
        transform: translateX(0);
    }
    
    .feature-text {
        font-size: 14px;
    }
    
    .new-section-image {
        display: none;
    }
}

@media (max-width: 576px) {
    .mobile-content {
        margin-left: 20px;
    }
}

@media (max-width: 480px) {
    .mobile-content {
        margin-left: 0;
    }
}

/* WhatsApp Fixed Button */
.whatsapp-fixed {
    position: fixed;
    bottom: 120px;
    right: 25px;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 9999;
    text-decoration: none;
}

.whatsapp-fixed:hover {
    transform: scale(1.1);
}

.whatsapp-fixed img {
    width: 64px;
    height: 64px;
}

.whatsapp-fixed:hover img {
    transform: scale(1.1);
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .whatsapp-fixed {
        bottom: 25px;
        right: 15px;
        top: unset;
    }
    
    .whatsapp-fixed img {
        width: 48px;
        height: 48px;
    }
}