* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Open Sans", sans-serif;
}

body {
    font-family: 'Arial', sans-serif;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

html {
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

.cms-page__img{
    height: auto;
    object-fit: unset;
    aspect-ratio: unset;
}
.cms-product__bottom-img{
    height: auto !important;
}
.cms-product__item-content{
    overflow: auto;
}
    /* Container Yapısı */
.v2-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
    width: 100%;
}

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

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

/* Header Styles */
.v2-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 24px 0;
    transition: all 0.3s ease;
    height: auto;
    background: rgba(0, 0, 0, 0.8) !important;
}

.v2-header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
}

.v2-logo {
    display: flex;
    align-items: center;
    font-size: 32px;
    font-weight: bold;
    color: white;
    text-decoration: none;
}

.v2-logo img {
    height: 64px;
}

.v2-logo .v2-lift {
    color: white;
}

.v2-nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.v2-nav-menu li {
    position: relative;
}

.v2-nav-menu a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 10px 0;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.v2-nav-menu a:hover {
    color: #e53e3e;
}
.sub-menu a{
    color: #0D0404 !important;
}
.v2-nav-menu a:hover::after {
    width: 100%;
}

.v2-language-selector {
    position: relative;
    padding: 0;
    background: none;
    border: none;
}

.v2-language-selector a {
    color: white !important;
    font-weight: 500;
    text-transform: uppercase;
    position: relative;
    padding-right: 20px;
}

.v2-language-selector a::after {
    content: '▼';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #87CEEB;
    font-size: 12px;
}

/* Hero Section */
.v2-hero {
    height: 100vh;
    min-height: 600px;
    position: relative;
    overflow: hidden;
    width: 100vw;
    margin: 0;
    padding: 0;
    left: 0;
    right: 0;
}

.v2-hero .swiper {
    width: 100vw;
    height: 100%;
    margin: 0;
    padding: 0;
}

.v2-hero .swiper-wrapper {
    width: 100vw;
    height: 100%;
    margin: 0;
    padding: 0;
}

.v2-hero .swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw !important;
    height: 100%;
    margin: 0;
    padding: 0;
    border: unset;
}

.v2-hero .swiper-slide img {
    width: 100vw;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    margin: 0;
    padding: 0;
    display: block;
}

.v2-hero .swiper-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
    rgba(139, 115, 85, 0.1) 0%,
    rgba(61, 61, 61, 0.2) 50%,
    rgba(45, 45, 45, 0.3) 100%);
    z-index: 2;
}

.v2-hero-content {
    text-align: center;
    color: white;
    z-index: 3;
    max-width: 800px;
    padding: 0 20px;
    animation: v2-fadeInUp 1s ease-out;
    position: relative;
}

.v2-hero-title {
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.v2-hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 30px;
    opacity: 0.9;
    font-weight: 300;
    letter-spacing: 1px;
}

.v2-cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #e53e3e, #c53030);
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(229, 62, 62, 0.3);
    text-transform: uppercase;
}

.v2-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(229, 62, 62, 0.4);
    background: linear-gradient(45deg, #c53030, #e53e3e);
}

/* Animations */
@keyframes v2-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes v2-elevatorMove {
    0% { bottom: 20%; }
    100% { bottom: 70%; }
}

/* Products Section */
.v2-products-section {
    padding: 100px 60px;
    background: #ffffff;
    width: 100%;
    overflow: hidden;
}

.v2-products-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 80px;
    gap: 100px;
}

.v2-products-title {
    font-size: 2.3rem;
    font-weight: 400;
    color: #2B2A29;
    line-height: 1.2;
    flex: 1;
}

.v2-products-description {
    flex: 1;
    font-size: 1rem;
    color: #2B2A29;
    line-height: 1.6;
    margin-top: 0;
    font-weight: 300;
}

.v2-products-slider {
    position: relative;
    width: 100%;
}

.swiper {
    overflow: hidden;
    width: 100%;
}

.swiper-slide {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 0;
    box-shadow: none;
    transition: all 0.3s ease;
    height: 500px;
    display: flex;
}

.swiper-slide:hover {
    transform: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.v2-product-image {
    width: 100%;
    height: 350px;
    border-radius: 0;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid #e2e8f0;
}

.v2-category-title {
    font-size: 1.0rem;
    color: #2B2A29;
    writing-mode: vertical-rl;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    justify-content: center;
    border-left: 1px solid #e2e8f0;
    transform: rotate(180deg);
    padding: 0 8px;
    font-weight: 100;
}

.v2-product-description {
    padding: 10px;
}

.v2-product-description-title {
    font-size: 1.4rem;
    font-weight: 500;
    color: #07191C;
    margin-bottom: 10px;
}

.v2-product-description-content {
    font-size: 1rem;
    color: #2B2A29;
    font-weight: 300;
    line-height: 1.5;
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    color: #666;
    margin-top: -25px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 18px;
    font-weight: normal;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: #f8f9fa;
    color: #333;
}

.swiper-button-next {
    right: -3%;
}

.swiper-button-prev {
    left: -3%;
}

/* Swiper Pagination */
.swiper-pagination {
    bottom: -60px;
    text-align: center;
}

.swiper-pagination-fraction {
    font-size: 14px;
    color: #666;
    background: #f0f0f0;
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-block;
}

.swiper-pagination-bullet {
    display: none;
}

/* Why Us Section */
.v2-why-us-section {
    background-image: url("/media/img/bg_why_us.png");
    background-size: cover;
    color: white;
    padding: 100px 0;
    min-height: auto;
    width: 100%;
}

.v2-why-us-content {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
}

.v2-why-us-left {
    flex: 1;
    min-width: 300px;
}

.v2-why-us-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.v2-why-us-badge-text {
    display: inline-block;
}

.v2-why-us-badge-text img {
    height: 48px;
    width: auto;
}

.v2-why-us-badge-subtitle {
    opacity: 0.7;
    font-size: 1.5rem;
    color: white;
}

.v2-why-us-title {
    font-size: 2.3rem;
    margin-bottom: 20px;
    font-weight:100;
}

.v2-why-us-description {
    opacity: 0.8;
    font-size: 1rem;
    line-height: 1.6;
    font-weight:100;
    margin-top: 10px;
}

.v2-why-us-right {
    flex: 1;
    min-width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.v2-why-us-card {
    background: white;
    border-radius: 16px;
    display: grid;
    grid-template-columns: 4fr 6fr;;
    height: 300px;
}

.v2-why-us-card-image{
    display: flex;
    justify-content: center;
    background: #BE1E2D;
    border-top-left-radius: 16px;
    border-bottom-left-radius: 16px;
}

.v2-why-us-card-image img {
    object-fit: cover;
}

.v2-why-us-card-content {
    padding: 40px 20px;
    color: black;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.v2-why-us-card-title {
    font-size: 1rem;
    color: #2B2A29;
    font-weight: 300;
}

.v2-why-us-card-subtitle {
    font-weight: bold;
    font-size: 1.3rem;
    margin: 10px 0;
    color: #07191C;
}

.v2-why-us-card-link {
    color: #e41e2c;
    font-weight: bold;
    font-size: 0.9rem;
    text-decoration: none;
    bottom: 0px;
}

.v2-why-us-info-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 60px;
}

.v2-info-card {
    flex: 1;
    min-width: 250px;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    gap: 15px;
    align-items: center;
    border: 1px solid #314d50;
    color: white !important;
    cursor: pointer;
}

.v2-info-card:hover{
    background: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    .v2-info-card-title {
        color: #333;
        margin: 0 0 5px 0;
        font-size: 1.1rem;
        font-weight: 500;
    }
    .v2-info-card-description {
        color: #666;
        font-size: 0.9rem;
        margin: 0;
    }

}

.v2-info-card img {
    width: 86px;
    height: 72px;
}

.v2-info-card-title {
    color: #fff;
    margin: 0 0 5px 0;
    font-size: 1.1rem;
    font-weight: 500;
}

.v2-color-white {
    color: #fff !important;
}

.v2-info-card-description {
    color: #fff;
    font-size: 0.9rem;
    margin: 0;
}

/* Mobile Menu Toggle */
.v2-mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.v2-mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Stats Section */
.v2-stats-section {
    padding: 100px 0;
    background: #f8f9fa;
    width: 100%;
}

.v2-stats-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 80px;
    gap: 80px;
}

.v2-stats-title {
    flex: 1;
    font-size: 1.8rem;
    font-weight: 400;
    color: #07191C;
    line-height: 1.2;
}

.v2-stats-title strong {
    font-weight: 700;
}

.v2-stats-description {
    flex: 1;
    font-size: 1rem;
    color: #2B2A29;
    line-height: 1.6;
    font-weight: 300;
}

.v2-stats-grid {
    display: flex;
    gap: 85px;
    justify-content: space-between;
}

.v2-stat-item {
    flex: 1;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.v2-stat-icon {
    font-size: 2.6rem;
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 5px;
}

.v2-stat-icon svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.v2-stat-content {
    flex: 1;
}

.v2-stat-content .v2-stat-number {
    font-size: 1.4rem;
    font-weight: 700;
    color: #07191C;
    margin-bottom: 5px;
}

.v2-stat-content .v2-stat-text {
    font-size: 1.4rem;
    color: #07191C;
    line-height: 1.4;
    margin: 0;
    font-weight: 300;
}

/* Global Reach Section */
.v2-global-reach-section {
    background-image: url("/media/img/e_commerce.png");
    background-size: cover;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    color: white;
    height: auto;
}

.v2-global-reach{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px 25% 50% 25%
}

.v2-global-reach-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 80px;
    min-height: 500px;
}

.v2-global-reach-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.v2-global-reach-title {
    font-size: 2.3rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 30px;
    color: white;
    text-align: center;
}

.v2-global-reach-title .v2-highlight {
    color: #4dd0e1;
    font-weight: 500;
}

.v2-global-reach-description {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 40px;
    font-weight: 300;
}

.v2-global-reach-desc {
    padding: 0 130px;
}

.v2-global-reach-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.v2-global-reach-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 100;
    text-transform: uppercase;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.v2-global-reach-link::after {
    content: '→';
    transition: transform 0.3s ease;
    color: #74CFDD;
}

.v2-global-reach-link:hover {
    color: white;
}

.v2-global-reach-link:hover::after {
    transform: translateX(5px);
}

/* Blog Section - YENİ EKLENEN */
.v2-blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.v2-blog-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 620px;
}

.v2-blog-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.v2-blog-card-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
}

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

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

.v2-blog-card-date {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.v2-blog-card-content {
    padding: 30px;
    min-height: 310px;
}

.v2-blog-card-category {
    display: inline-block;
    background: #e53e3e;
    color: white;
    padding: 6px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.v2-blog-card-title {
    font-size: 1.4rem;
    font-weight: 500;
    color: #07191C;
    margin-bottom: 15px;
    line-height: 1.4;
}

.v2-blog-card-excerpt {
    font-size: 1rem;
    color: #2B2A29;
    line-height: 1.6;
    margin-bottom: 20px;
    font-weight: 300;
}

.v2-blog-card-footer {
    display: flex;
    justify-content: end;
    align-items: end;
    padding: 20px;
    border-top: 1px solid #e2e8f0;
}

.v2-blog-card-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.v2-blog-card-author-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #666;
    font-size: 0.9rem;
}

.v2-blog-card-author-name {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.v2-blog-card-read-more {
    color: #e53e3e;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.v2-blog-card-read-more:hover {
    color: #c53030;
    transform: translateX(3px);
}

.v2-blog-view-all {
    text-align: center;
    margin-top: 50px;
}

.v2-blog-view-all-btn {
    display: inline-block;
    background: transparent;
    color: #e53e3e;
    border: 2px solid #e53e3e;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.v2-blog-view-all-btn:hover {
    background: #e53e3e;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(229, 62, 62, 0.3);
}

/* Customer Service Section - YENİ EKLENEN */
.v2-customer-service-section {
    background: #07191C;
    color: white;
    padding: 80px 0;
}

.v2-customer-service-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.v2-customer-service-left {
    flex: 1;
}

.v2-customer-service-title {
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 20px;
}

.v2-customer-service-description {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.8;
    font-weight: 300;
}

.v2-customer-service-right {
    flex: 1;
    display: flex;
    justify-content: center;
}

.v2-customer-service-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    color: #333;
    max-width: 400px;
    text-align: center;
}

.v2-customer-service-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #07191C;
    margin-bottom: 15px;
}

.v2-customer-service-card-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 30px;
}

.v2-customer-service-card-phone {
    font-size: 2rem;
    font-weight: 700;
    color: #e53e3e;
    margin-bottom: 10px;
    display: block;
    text-decoration: none;
}

.v2-customer-service-card-phone:hover {
    color: #c53030;
}

.v2-customer-service-card-hours {
    font-size: 0.9rem;
    color: #666;
}

/* FAQ Section - YENİ EKLENEN */
.v2-faq-section {
    padding: 100px 0;
    background: #F2F9FA;
}

.v2-faq-header {
    text-align: left;
    margin-bottom: 60px;
}

.v2-faq-title {
    font-size: 1rem;
    font-weight: 300;
    color: #000;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.v2-faq-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.v2-faq-left {
    flex: 1;
    max-width: 400px;
}

.v2-faq-left-title {
    font-size: 1.8rem;
    color: #07191C;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 30px;
}

.v2-faq-right {
    flex: 2;
}

.v2-faq-avatars-section {
    margin-bottom: 40px;
}

.v2-faq-avatars {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.v2-faq-avatar-small {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: linear-gradient(45deg, #e53e3e, #c53030);
    border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.v2-faq-avatars-text {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.v2-faq-list {
    list-style: none;
}

.v2-faq-item {
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
    background: white;
}

.v2-faq-question {
    font-size: 1rem;
    color: #07191C;
    font-weight: 400;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    padding: 18px 25px;
    background: white;
}

.v2-faq-question:hover {
    background: #f8f9fa;
}

.v2-faq-question::after {
    content: '+';
    font-size: 1.3rem;
    color: #74CFDD;
    transition: transform 0.3s ease;
    font-weight: 300;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.v2-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: white;
}

.v2-faq-item.v2-active .v2-faq-answer {
    max-height: 300px;
}

.v2-faq-answer p {
    padding: 0 25px 25px 25px;
    margin: 0;
    color: #666;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Contact CTA Section - YENİ EKLENEN */
.v2-contact-cta-section {
    background: linear-gradient(135deg, #07191C 0%, #2B2A29 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.v2-contact-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.v2-contact-cta-title {
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 20px;
}

.v2-contact-cta-description {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 40px;
    font-weight: 300;
}

.v2-contact-cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #e53e3e, #c53030);
    color: white;
    padding: 18px 50px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(229, 62, 62, 0.3);
    text-transform: uppercase;
}

.v2-contact-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(229, 62, 62, 0.4);
    background: linear-gradient(45deg, #c53030, #e53e3e);
}

/* Footer - YENİ EKLENEN */
.v2-footer {
    background: #07191C;
    color: white;
    padding: 80px 0 30px 0;
}

.v2-footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.v2-footer-logo {
    display: flex;
    align-items: center;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
}

.v2-footer-logo img {
    height: 50px;
    margin-right: 10px;
}

.v2-footer-description {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.8;
    margin-bottom: 30px;
    font-weight: 300;
}

.v2-footer-social {
    display: flex;
    gap: 15px;
}

.v2-footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.v2-footer-social a:hover {
    background: #e53e3e;
    transform: translateY(-2px);
}

.v2-footer-column h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.v2-footer-column ul li {
    margin-bottom: 12px;
}

.v2-footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.v2-footer-column ul li a:hover {
    color: white;
    padding-left: 5px;
}

.v2-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.v2-footer-bottom p {
    opacity: 0.6;
    font-size: 0.9rem;
}

/* Mobile Responsive for Global Reach */
@media (max-width: 1024px) {
    .v2-global-reach-section {
        padding: 100px 0;
    }

    .v2-global-reach-content {
        gap: 60px;
    }

    .v2-global-reach-title {
        font-size: 2.4rem;
    }

    /* Blog Tablet */
    .v2-blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    /* Customer Service Tablet */
    .v2-customer-service-content {
        gap: 40px;
    }

    .v2-customer-service-title {
        font-size: 2.2rem;
    }

    /* FAQ Tablet */
    .v2-faq-content {
        gap: 40px;
    }

    .v2-faq-left {
        max-width: 350px;
    }

    .v2-faq-left-title {
        font-size: 1.6rem;
    }

    /* Footer Tablet */
    .v2-footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .v2-global-reach-section {
        padding: 80px 0;
    }

    .v2-global-reach-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .v2-global-reach-left {
        order: 2;
    }

    .v2-global-reach-title {
        font-size: 2rem;
    }

    .v2-global-reach-description {
        font-size: 1rem;
    }

    .v2-global-reach-links {
        justify-content: center;
        gap: 30px;
    }

    .v2-global-reach {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: unset;
        margin: auto;
    }
    .v2-global-reach-desc {
        padding: unset;
        margin: auto;
    }

    /* Blog Mobile Tablet */
    .v2-blog-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 40px;
    }

    .v2-blog-card-image {
        height: 220px;
    }

    .v2-blog-card-content {
        padding: 25px;
    }

    .v2-blog-card-footer {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .v2-blog-view-all {
        margin-top: 40px;
    }

    .v2-blog-view-all-btn {
        width: 100%;
        text-align: center;
        padding: 12px 30px;
    }

    /* Customer Service Mobile */
    .v2-customer-service-section {
        padding: 40px 0;
    }

    .v2-customer-service-content {
        flex-direction: column;
        gap: 30px;
    }

    .v2-customer-service-title {
        font-size: 1.8rem;
    }

    .v2-customer-service-card {
        padding: 30px 20px;
    }

    /* FAQ Mobile */
    .v2-faq-section {
        padding: 40px 0;
    }

    .v2-faq-content {
        flex-direction: column;
        gap: 30px;
    }

    .v2-faq-left {
        max-width: none;
    }

    .v2-faq-left-title {
        font-size: 1.5rem;
    }

    .v2-faq-title {
        font-size: 1.8rem;
    }

    .v2-faq-question {
        font-size: 1rem;
        padding: 15px 20px;
    }

    .v2-faq-answer p {
        padding: 0 20px 20px 20px;
        font-size: 0.9rem;
    }

    /* Contact CTA Mobile */
    .v2-contact-cta-section {
        padding: 40px 0;
    }

    .v2-contact-cta-title {
        font-size: 1.8rem;
    }

    /* Footer Mobile */
    .v2-footer {
        padding: 40px 0 20px 0;
    }

    .v2-footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 30px;
    }

    .v2-footer-logo {
        font-size: 24px;
    }

    .v2-footer-social {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .v2-global-reach-section {
        padding: 60px 0;
    }

    .v2-global-reach-title {
        font-size: 1.8rem;
    }

    .v2-global-reach-links {
        flex-direction: column;
        gap: 20px;
    }

    /* Blog Mobile */
    .v2-blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .v2-blog-card-content {
        padding: 20px;
    }

    .v2-blog-card-title {
        font-size: 1.2rem;
    }

    .v2-blog-card-image {
        height: 200px;
    }
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .v2-header {
        padding: 15px 0;
    }

    .v2-header-container {
        padding: 0 30px;
    }

    .v2-nav-menu {
        gap: 25px;
    }

    .v2-nav-menu a {
        font-size: 10px;
    }

    .v2-hero {
        height: 100vh;
        min-height: 600px;
    }

    .v2-hero-title {
        font-size: 3rem;
    }

    .v2-products-section {
        padding: 80px 0;
    }

    .v2-products-header {
        flex-direction: column;
        gap: 30px;
    }

    .v2-products-title {
        font-size: 2.5rem;
    }

    .swiper {
        padding: 0 20px;
    }

    .swiper-button-next {
        right: 10px;
    }

    .swiper-button-prev {
        left: 10px;
    }

    .v2-why-us-section {
        padding: 80px 0;
    }

    .v2-stats-section {
        padding: 80px 0;
    }

    .v2-stats-header {
        gap: 40px;
        margin-bottom: 60px;
    }

    .v2-stats-title {
        font-size: 1.8rem;
    }

    .v2-stats-grid {
        gap: 40px;
    }
}
.sub-menu ul{
    min-width: 120px !important
}
.sub-menu{
    min-width: 120px !important;
}
@media (max-width: 768px) {

    .menu {
        width: 100%;
        position: absolute;
        padding-bottom: 10px; /* padding-top yerine bottom */
        bottom: 30px;  /* top yerine bottom kullan */
        visibility: hidden;
        opacity: 0;
        transform: translateY(10px); /* Negatif yerine pozitif */
        transition: all .3s ease;
    }

    /* Hover durumu */
    .parent:hover .menu {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }
    .v2-header-container {
        padding: 0 20px;
    }

    .v2-mobile-menu-toggle {
        display: flex;
    }

    .v2-nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        height: 0;
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        padding-top: 30px;
        gap: 30px;
        transition: all 0.3s ease;
        overflow: hidden;
    }
    .v2-nav-menu a {
        font-size: 16px !important;
    }

    .v2-nav-menu.v2-active {
        height: 100vh;
        top: 70px;
    }

    .v2-hero {
        height: 100vh;
        height: 100svh; /* Small viewport height for mobile */
        min-height: 500px;
        max-height: none;
    }

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

    .v2-hero-subtitle {
        font-size: 1.2rem;
    }

    .v2-products-section {
        padding: 40px 0;
    }

    .v2-products-header {
        margin-bottom: 40px;
        gap: 20px;
    }

    .v2-products-title {
        font-size: 2rem;
    }

    .swiper {
        overflow: hidden; /* Taşmayı engelle */
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }
    .swiper-slide {
        margin-right: 20px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }

    .v2-product-content {
        padding: 20px;
    }

    .v2-product-image {
        height: 280px;
    }

    .v2-why-us-section {
        padding: 40px 0;
        min-height: auto;
    }

    .v2-why-us-content {
        flex-direction: column;
        gap: 30px;
    }

    .v2-why-us-left {
        min-width: 100%;
        order: 1;
    }

    .v2-why-us-right {
        min-width: 100%;
        order: 2;
    }

    .v2-why-us-card {
        max-width: 100%;
        margin: 0;
    }

    .v2-why-us-info-cards {
        gap: 15px;
        margin-top: 30px;
    }

    .v2-info-card {
        min-width: 100%;
        margin: 0;
    }

    .v2-stats-section {
        padding: 60px 0;
    }

    .v2-stats-header {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 40px;
    }

    .v2-stats-title {
        font-size: 2rem;
    }

    .v2-stats-grid {
        flex-direction: column;
        gap: 30px;
    }

    .v2-stat-item {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .v2-logo {
        font-size: 24px;
    }

    .v2-logo img {
        height: 48px;
    }

    .v2-hero {
        height: calc(100vh - 60px);
        min-height: 400px;
        max-height: 800px;
    }

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

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

    .v2-cta-button {
        padding: 12px 30px;
        font-size: 14px;
    }

    .v2-why-us-title {
        font-size: 1.5rem;
    }

    .v2-products-title {
        font-size: 1.8rem;
    }

    .v2-why-us-card {
        flex-direction: column;
    }

    .v2-why-us-card-image img {
        width: 100%;
        height: 200px;
    }

    .v2-info-card {
        padding: 15px;
    }

    .v2-info-card img {
        width: 35px;
        height: 35px;
    }

    .v2-stats-section {
        padding: 40px 0;
    }

    .v2-stats-title {
        font-size: 1.8rem;
    }

    .v2-stat-content .v2-stat-number {
        font-size: 1.3rem;
    }

    .v2-stat-content .v2-stat-text {
        font-size: 0.95rem;
    }
}

.mt-50 {
    margin-top: 50px;
}
.mt-80 {
    margin-top: 150px;
}
/* Sadece banner image için yeni CSS - mevcut hiçbir class'a dokunmuyor */
.banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 1;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 2;
}

/* cms-title container'ı için sadece gerekli ayarlar */
.cms-title {
    position: relative;
    min-height: 500px;
    overflow: hidden;
}

.cms-title .cms-title__container {
    position: relative;
    z-index: 3;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.cms-title .cms-title__container h1 {
    color: white;
}

.cms-title .cms-title__container span {
    color: rgba(255,255,255,0.9);
}

/* Responsive için sadece image ve container */
@media (max-width: 1024px) {
    .cms-title {
        min-height: 400px;
    }
}

@media (max-width: 1440px) {
    .v2-nav-menu a {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .banner-image {
        object-position: center top;
    }

    .cms-title {
        min-height: 350px;
    }
}

@media (max-width: 480px) {
    .banner-image {
        object-position: center 30%;
    }

    .cms-title {
        min-height: 280px;
    }
}
.header__lang-active{
    background: unset;
}

@media (max-width: 768px) {
    .hero__slider-item{
        height: 70vh !important;
        min-height: 500px;
    }
    .header__lang {
        position: unset;
        top: unset;
        right:  unset;
        transform: translateY(-50%);
    }

    .header__lang .sub-menu{
        width: 100%;
        position: absolute;
        padding-bottom: 10px; /* padding-top yerine bottom */
        top: unset !important;
        bottom: 30px;  /* top yerine bottom kullan */
        visibility: hidden;
        opacity: 0;
        transform: translateY(10px); /* Negatif yerine pozitif */
        transition: all .3s ease;
    }
}

