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

:root {
    --primary-color: #B59556;
    --secondary-color: #2F2E30;
    --accent-color: #B59556;
    --dark-color: #161615;
    --light-color: #f5f5f5;
    --text-dark: #2F2E30;
    --text-light: #666666;
    --white: #ffffff;
    --shadow: rgba(0, 0, 0, 0.15);
    --gradient-primary: #B59556;
}

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

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

/* Header */
.main-header {
    background: var(--white);
    padding: 20px 0;
    box-shadow: 0 2px 10px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
/*
html#sag .main-header .container { flex-direction: row-reverse; }
*/
.header-search {
    width: 300px;
    float: left;
    position: relative;
}

.search-box {
    display: flex;
    align-items: center;
    background: var(--light-color);
    padding: 10px 20px;
    border-radius: 30px;
    width: 100%;
    max-width: 400px;
}

.search-box i {
    color: var(--text-light);
    margin-right: 10px;
}

.search-box input {
    border: none;
    background: transparent;
    outline: none;
    width: 100%;
    font-size: 14px;
}

html#sag .search-box i { margin-left: 10px; margin-right: 0px; }
html#sag .search-box { flex-direction: row-reverse; }
html#sag .search-box input {text-align: right;}
/* Navbar */
.navbar {
    width: auto;
    position: relative;
    float: left;
    display: flex;
    justify-content: flex-end;
}

html#sag .navbar .nav-menu { flex-direction: row-reverse; }

.logo {
    width: 180px;
    height: 60px;
    object-fit: contain;
    float: left;
    position: relative;
}

.logo-link{
    width: 100%;
    height: 60px;
    float: left;
    position: relative;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
    margin-bottom: 10px;
}

.logo-link:hover { opacity: 0.8; }

.logo-image {
    width: 100%;
    height: 60px;
    object-fit: contain;
    float: left;
    position: relative;
    object-position: left;
}

html#sag .logo-image {object-position: right;}

.logo-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
}

.logo-text h1 {
    font-size: 24px;
    color: var(--dark-color);
    font-weight: 700;
    letter-spacing: 1px;
}

.logo-text p {
    font-size: 11px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.navbar .nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    position: relative;
}

.mobile-menu-back {
    display: none;
}

.nav-menu > li > a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
    text-transform: capitalize;
}

.nav-menu a.active {
    color: var(--primary-color);
}

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

.dropdown-toggle {
    cursor: pointer;
}

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

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

.dropdown-menu {
    position: fixed;
    top: 90px;
    left: 0;
    right: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.3s ease;
    z-index: 999;
    padding: 0;
    max-height: calc(100vh - 90px);
    overflow-y: auto;
}

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

.mega-menu-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 50px 60px;
}

.mega-menu-header {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(181, 149, 86, 0.1);
}

.mega-menu-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.mega-menu-header h2::after {
    content: '\f061';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 20px;
    color: var(--primary-color);
}


html#sag .mega-menu-header h2 { flex-direction: row-reverse; }
html#sag .mega-menu-header h2::after {    transform: rotate(180deg);}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 50px;
    margin-bottom: 40px;
}

html#sag .mega-menu-grid { direction: rtl;}

.mega-menu-category {
    display: flex;
    flex-direction: column;
}

.category-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(181, 149, 86, 0.1);
}

.category-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.category-item {
    text-decoration: none;
    color: var(--text-dark);
    padding: 20px;
    border-radius: 10px;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.category-item:hover {
    background: rgba(181, 149, 86, 0.05);
    border-color: rgba(181, 149, 86, 0.15);
    transform: translateX(5px);
}

.category-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 8px;
    line-height: 1.3;
}


.category-item:hover h4 {
    color: var(--primary-color);
}

.category-item p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

html#sag .category-item h4 { text-align: right; }
html#sag .category-item p { text-align: right; }

.mega-menu-footer {
    padding-top: 30px;
    border-top: 2px solid rgba(181, 149, 86, 0.1);
    text-align: right;
}

.mega-menu-all-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.mega-menu-all-link:hover {
    gap: 15px;
    color: var(--secondary-color);
}

.mega-menu-all-link i {
    font-size: 14px;
}

.nav-buttons {
    display: flex;
    gap: 15px;
}

.btn-dealer,
.btn-document {
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

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

.btn-document {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.main-header .mobile-menu-toggle {
    width: 30px;
    height: 30px;
    display: none;
    font-size: 30px;
    cursor: pointer;
    color: var(--dark-color);
    float: right;
    position: relative;
}

.main-header .dil_toggle{
    width: 40px;
    height: 40px;
    position: relative;
    float: right;
    cursor: pointer;
}

.main-header .dil_toggle p{
    width: 40px;
    line-height: 40px;
    height: 40px;
    position: relative;
    font-size: 14px;
    letter-spacing: 1px;
    text-align: center;
    float: right;
}

.main-header .dil_toggle .select{
    width: 100px;
    float: left;
    position: absolute;
    background-color: #fff;
    border-radius: 10px;
    top: 100%;
    padding: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    left: -25px;
    display: none;
}

.main-header .dil_toggle .select a{
    width: 100%;
    float: left;
    position: relative;
    text-decoration: none;
    color: #000;
    font-size: 14px;
    letter-spacing: 1px;
    padding: 3px 0px;
    cursor: pointer;
}

.main-header .dil_toggle .select a:hover{
    color: #b59556;
}



.phone_mockup{
    width: 300px;
    float: left;
    position: relative;
    margin: 50px 0px;
    margin-left: calc(50% - 150px);
}

.phone_mockup .mockup{
    width: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 4;
    pointer-events: none;
}

.phone_mockup .mockup_div{
    width: 268px;
    height: 550px;
    margin-left: 16px;
    margin-top: 43px;
    float: left;
    position: relative;
    border-radius: 0px 0px 35px 35px;
    overflow-y: scroll;
    z-index: 1;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.phone_mockup .mockup_div::-webkit-scrollbar{
    display: none;               /* Chrome, Safari, Opera */
}

.phone_mockup .mockup_div .screenshot{
    width: 100%;
    float: left;
    position: relative;
}

.pdf_modal{
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0px;
    left: 0px;
    background-color: rgba(255,255,255,0.9);
    z-index:9999;
    display:none;
}

.pdf_modal canvas{
    width: calc(100% - 20px);
    height: calc(100% - 60px);
    position: absolute;
    float: left;
    left: 10px;
    top: 10px;
    object-fit: contain;
    z-index: 1;
}

.pdf_modal .pdf_buttons{
    width: 130px;
    bottom: 5px;
    left: calc(50% - 60px);
    position: absolute;
    z-index: 5;
}

.pdf_modal .pdf_buttons button{
    width: 35px;
    height: 35px;
    border-radius: 10px;
    float: left;
    position: relative;
    border:none;
    outline: none;
    background-color: #fff;
    color: #B59556;
    cursor: pointer;
    transition: all 200ms;
    box-sizing: border-box;
    border:1px solid #B59556;
}

.pdf_modal .pdf_buttons button:active{ transform: scale(1.1); }

.pdf_modal .pdf_buttons span{
    width: 60px;
    height: 35px;
    float: left;
    position: relative;
    line-height: 35px;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
}

.pdf_modal .pdf_close{
    width: 35px;
    height: 35px;
    position: absolute;
    top: 10px;
    right: 10px;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
    box-sizing: border-box;
    border:1px solid #B59556;
    cursor: pointer;
}
 
.pdf_modal .pdf_close:before{
    content: ''; 
    width: 16px;
    height: 4px;
    position: absolute;
    background-color: #B59556;
    transform: rotate(-45deg);
    border-radius: 3px;
}

.pdf_modal .pdf_close:after{
    content: ''; 
    width: 16px;
    height: 4px;
    position: absolute;
    background-color: #B59556;
    transform: rotate(45deg);
    border-radius: 3px;
}

/* Slider Section */
.slider-section {
    position: relative;
    width: 100%;
    height: calc(100vh - 100px);
    min-height: 600px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-item.active {
    opacity: 1;
    z-index: 2;
}

.slider-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(22, 22, 21, 0.75);
}

.slider-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    max-width: 700px;
    padding: 0 20px;
}

.slider-badge {
    display: inline-block;
    padding: 5px 14px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
    text-decoration: none;
    letter-spacing: 1px;
}

.slider-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.slider-content p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 1px;
}

.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 4;
    pointer-events: none;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    pointer-events: all;
    backdrop-filter: blur(10px);
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: var(--white);
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 4;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    border: 2px solid transparent;
}

.dot.active {
    background: var(--white);
    border-color: var(--primary-color);
    width: 14px;
    height: 14px;
}

















.as_slider {
    width: 100vw;
    height: calc(100vh - 100px);
    overflow: hidden;
    position: relative;
}

.as_slides {
    display: flex;
    height: 100%;
    transition: transform 0.4s ease;
    touch-action: pan-y; /* Sadece dikey kaydırmaya izin ver, yatayda slider'ı serbest bırak */
    will-change: transform; /* Tarayıcıya bu elementin hareket edeceğini bildir */
}


.as_slide {
    width: 100%;
    min-width: 100%;
    height: 100%;
    flex-shrink: 0;
    position: relative;
}

.as_slide .as_s_cont{
    width: 100%;
    height: 100%;
    float: left;
    position: relative;
    z-index: 1111;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(22, 22, 21, 0.75);
}

.as_slide .as_s_cont .assc_ic{
    width: 660px;
    float: left;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    justify-content: center;
}

.as_slide .as_s_cont h2 {
    width: 100%;
    float: left;
    position: relative;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
    text-align: center;
}

.as_slide .as_s_cont p {
    width: 100%;
    float: left;
    position: relative;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 1px;
    text-align: center;
}

.as_slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 5;
}

/* Oklar */
.as_s_nav {
    position: absolute;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    pointer-events: all;
    z-index: 10;
    
    top: 50%;
    transform: translateY(-50%);
}

.as_s_nav:hover{
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid #fff;
}

.as_sn_prev { left: 30px; }
.as_sn_next { right: 20px; }

/* Dotlar */
.as_s_dots {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
}

.as_s_dots span {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 5px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
}

.as_s_dots .as_active {
    background: #fff;
}



















/* Car Showcase Section */
.car-showcase {
    background: var(--white);
    padding: 40px 0;
    overflow: hidden;
}

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

.car-image-wrapper {
    position: relative;
    width: 1000px;
    height: auto;
    overflow: visible;
    float: right;
    z-index: 1;
}

/* Showcase Info Panel */
.showcase-info-panel {
    width: 400px;
    position: absolute;
    z-index: 5;
}


.info-item {
    position: absolute;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.info-item.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
    position: relative;
}

.info-line {
    width: 20px;
    height: 20px;
    position: absolute;
    left: 20px;
    top: calc(100% + 20px);
    transform: rotate(270deg);
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
    z-index: 1;
}

.info-line::before {
    content: '';
    width: 20px;
    height: 4px;
    top: 8px;
    background-color: var(--primary-color);
    position: absolute;
    transition: opacity 0.3s ease 0.6s;
    opacity: 0;
}

.info-line::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid var(--primary-color);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    opacity: 0;
    transition: opacity 0.3s ease 0.6s;
}

.info-item.active .info-line::before { opacity: 1; }
.info-item.active .info-line::after { opacity: 1; }

.info-content {
    width: 100%;
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    border-left: 3px solid var(--primary-color);
    position: relative;
    transform: translateY(-10px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

.info-item.active .info-content { opacity: 1; }

.info-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 10px;
    line-height: 1.3;
}


.info-content p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

html#sag .info-content h3{ text-align: right;}
html#sag .info-content p{ text-align: right;}

.showcase-car {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;

}

.car-image-wrapper .hotspot {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.car-image-wrapper .hotspot:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(181, 149, 86, 0.4);
}

.car-image-wrapper .hotspot.active {
    background: var(--primary-color);
    box-shadow: 0 6px 25px rgba(181, 149, 86, 0.5);
}

.car-image-wrapper .hotspot.active .hotspot-inner {
    background: var(--white);
    color: var(--primary-color);
    transform: rotate(45deg);
}

.car-image-wrapper .hotspot-inner {
    width: 35px;
    height: 35px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.showcase-logo {
    position: absolute;
    top: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    z-index: 5;
    backdrop-filter: blur(10px);
}

.showcase-logo-icon {
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 22px;
}

.showcase-logo-text h2 {
    font-size: 24px;
    font-weight: 800;
    color: var(--dark-color);
    margin: 0;
    line-height: 1;
    letter-spacing: 1px;
}

.showcase-logo-text p {
    font-size: 11px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0;
    margin-top: 3px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(22, 22, 21, 0.85);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    color: var(--white);
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.brand-name {
    font-size: 64px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 25px;
    line-height: 1.1;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    padding: 12px 28px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    font-size: 14px;
    border: none;
    cursor: pointer;
}

.btn-secondary {
    display: inline-block;
    padding: 18px 40px;
    background: transparent;
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    font-size: 16px;
    border: 2px solid var(--white);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 36px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Features Section */
.features {
    padding: 60px 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
}

.section-description{
    width: 100%;
    line-height: 1.4;
    font-size: 15px;
    letter-spacing: 1px;
}

.section-tag {
    display: inline-block;
    padding: 5px 14px;
    background: rgba(231, 76, 60, 0.1);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 12px;
}

.section-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 12px;
    line-height: 1.3;
}

.section-subtitle {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
}

.features-list {
    max-width: 900px;
    margin: 0 auto;
}

.feature-item {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 25px;
    padding: 25px 0;
    border-bottom: 1px solid var(--light-color);
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-number {
    font-size: 28px;
    font-weight: 700;
    color: rgba(231, 76, 60, 0.15);
    line-height: 1;
}

.feature-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feature-content i {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.feature-content h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 6px;
}

.feature-content p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 13px;
}

/* Products Section */
.products {
    padding: 80px 0;
    background: var(--white);
}

/* Products Page */
.products-page {
    padding: 80px 0;
    background: var(--white);
}

.products-header {
    text-align: center;
    margin-bottom: 50px;
}

.products-header .section-header {
    margin-bottom: 35px;
}

.products-header .section-title {
    margin-bottom: 18px;
}

.product-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 25px;
}

.tab-btn {
    padding: 10px 24px;
    background: var(--white);
    border: 2px solid rgba(181, 149, 86, 0.2);
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 13px;
    transition: all 0.3s ease;
    position: relative;
}

.tab-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.tab-btn.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(181, 149, 86, 0.25);
}

/* Tüm Ürünler butonu için özel stil */
.tab-btn[data-tab="all"] {
    background: var(--secondary-color);
    color: var(--white);
    border-color: var(--secondary-color);
}

.tab-btn[data-tab="all"]:hover {
    background: var(--dark-color);
    border-color: var(--dark-color);
    color: var(--white);
}

.tab-btn[data-tab="all"].active {
    background: var(--secondary-color);
    color: var(--white);
    border-color: var(--secondary-color);
    box-shadow: 0 4px 15px rgba(47, 46, 48, 0.3);
}

/* Product Categories Navigation */
.product-categories-wrapper {
    margin: 25px 0 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(181, 149, 86, 0.06);
}

.product-category-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
}

.product-category-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 14px;
    background: var(--white);
    border: 1px solid rgba(181, 149, 86, 0.1);
    color: var(--text-dark);
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.product-category-btn i {
    font-size: 12px;
    color: var(--primary-color);
}

.product-category-btn:hover {
    border-color: var(--primary-color);
    transform: translateY(-1px);
}

.product-category-btn.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.product-category-btn.active i {
    color: var(--white);
}

/* Tümü butonu için özel stil */
.product-category-btn[data-category="all"] {
    background: var(--white);
    color: var(--text-dark);
    border-color: rgba(231, 76, 60, 0.2);
    font-weight: 500;
}

.product-category-btn[data-category="all"] i {
    color: #e74c3c;
}

.product-category-btn[data-category="all"]:hover {
    border-color: #e74c3c;
    background: rgba(231, 76, 60, 0.05);
    transform: translateY(-1px);
}

.product-category-btn[data-category="all"].active {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: var(--white);
    border-color: #e74c3c;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
}

.product-category-btn[data-category="all"].active i {
    color: var(--white);
}

/* Products Scroll */
.products-scroll {
    position: relative;
    margin-top: 40px;
}

.products-scroll-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
}

.products-scroll-container {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 30px;
    flex: 1;
    padding: 2px 0;
}

.products-scroll-container::-webkit-scrollbar {
    display: none;
}

.products-slider-btn {
    display: flex;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    flex-shrink: 0;
    z-index: 10;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.products-slider-prev {
    left: -20px;
}

.products-slider-next {
    right: -20px;
}

.products-slider-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.products-slider-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}


.products-scroll .product-card {
    width: calc(33.33% - 20px);
    flex-shrink: 0;
    scroll-snap-align: start;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(181, 149, 86, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.products-scroll .product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-color);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.products-scroll .product-card:hover::before {
    opacity: 1;
}

.products-scroll .product-card:hover {
    box-shadow: 0 8px 30px rgba(181, 149, 86, 0.15);
    transform: translateY(-5px);
}

.products-scroll .product-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: var(--primary-color);
    position: relative;
}

.products-scroll .product-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.products-scroll .product-card:hover .product-image::after {
    opacity: 1;
}

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

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

.products-scroll .product-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(181, 149, 86, 0.3);
}

.products-scroll .product-card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.products-scroll .product-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-color);
    line-height: 1.3;
}

html#sag .products-scroll .product-card h3 { text-align: right;}

.products-scroll .product-subtitle {
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.products-scroll .product-description {
    color: var(--text-dark);
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

html#sag .products-scroll .product-description { text-align: right;}

.products-scroll .product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
    padding-top: 15px;
    border-top: 1px solid rgba(181, 149, 86, 0.1);
}

.products-scroll .product-feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    background: rgba(181, 149, 86, 0.08);
    border-radius: 12px;
    font-size: 11px;
    color: var(--primary-color);
    font-weight: 500;
}

.products-scroll .product-feature-tag i {
    font-size: 10px;
}

.products-scroll .btn-details {
    margin-top: auto;
    text-align: center;
    padding: 12px 24px;
    background: var(--dark-color);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.products-scroll .btn-details:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(181, 149, 86, 0.3);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

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

.product-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.product-subtitle {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 14px;
    padding: 0 25px;
}

.product-box {
    width: 100%;
    height: 280px;
    margin-bottom: 0;
}

.product-box-front {
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    position: relative;
}

.product-label {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 15px;
    padding: 10px 20px;
    border-radius: 8px;
    color: var(--white);
}

.product-label.yellow {
    background: rgba(243, 156, 18, 0.9);
}

.product-label.orange {
    background: rgba(230, 126, 34, 0.9);
}

.product-label.green {
    background: rgba(46, 204, 113, 0.9);
}

.product-label.blue {
    background: rgba(52, 152, 219, 0.9);
}

.product-badge {
    background: rgba(0, 0, 0, 0.8);
    color: var(--white);
    padding: 15px 20px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 15px;
}

.product-specs {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 15px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 14px;
    font-weight: 500;
}




/* Product Detail Wrapper */
.product-detail-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 50px;
}

html#sag .product-detail-wrapper {
    direction: rtl;
}



.product-detail-main {
    background: var(--white);
    border-radius: 15px;
    padding: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}


.product-sidebar-widget {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.product-sidebar-widget h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(181, 149, 86, 0.1);
    text-transform: capitalize;
}

html#sag .product-sidebar-widget h3 { text-align: right;}

.related-products-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.related-product-item {
    display: flex;
    gap: 15px;
    text-decoration: none;
    color: var(--text-dark);
    padding: 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

html#sag .related-product-item {flex-direction: row-reverse;}

.related-product-item:hover { background: rgba(181, 149, 86, 0.05); }

.related-product-image {
    width: 100px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

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

.related-product-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.related-product-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 8px;
    line-height: 1.3;
}

html#sag .related-product-content h4 { text-align: right; }

.related-product-category {
    font-size: 12px;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

html#sag .related-product-category { text-align: right; }


.spec {
    font-weight: 700;
    color: var(--white);
}

.btn-details {
    display: block;
    padding: 18px;
    background: var(--dark-color);
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    font-size: 15px;
}

/* Featured Applications Section */
.featured-applications {
    padding: 60px 0;
    background: var(--white);
}

.applications-scroll {
    position: relative;
    margin-top: 30px;
}

.applications-scroll-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0 50px;
}

.applications-scroll-container {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 20px;
    flex: 1;
    padding: 2px 0;
}

.applications-scroll-container::-webkit-scrollbar {
    display: none;
}

.applications-scroll .application-card {
    min-width: 320px;
    max-width: 320px;
    flex-shrink: 0;
    scroll-snap-align: start;
}

.applications-slider-btn {
    display: flex;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    flex-shrink: 0;
    z-index: 10;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.applications-slider-prev {
    left: -20px;
}

.applications-slider-next {
    right: -20px;
}

.applications-slider-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.applications-slider-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.application-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
}

.application-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

.application-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
}

.application-content {
    padding: 18px;
}

.application-content h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 8px;
}

.application-content > p {
    color: var(--text-light);
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.application-meta {
    display: flex;
    gap: 15px;
    padding-top: 12px;
    border-top: 1px solid var(--light-color);
}

.application-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-dark);
    font-size: 11px;
    font-weight: 500;
}

.application-meta i {
    color: var(--primary-color);
}

/* Gallery Section */
.gallery {
    padding: 60px 0;
    background: var(--light-color);
}

.gallery-grid {
    width: 100%;
    float: left;
    position: relative;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 50px;
}

.gallery-item {
    width: calc(20% - 16px);
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4 / 3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-overlay {
    display: none;
}

.gallery-overlay i {
    font-size: 48px;
    color: var(--white);
}

/* Testimonials Section */
.testimonials {
    padding: 60px 0;
    background: var(--light-color);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 22px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.testimonial-stars {
    color: #B59556;
    font-size: 14px;
    margin-bottom: 12px;
}

html#sag .testimonial-stars { display: flex; justify-content: end; }

.testimonial-text {
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 13px;
    margin-bottom: 18px;
    font-style: italic;
}

html#sag .testimonial-text { text-align: right;}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid var(--light-color);
}

html#sag .testimonial-author { flex-direction: row-reverse; }

.author-avatar {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
}

.author-info h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 3px;
}

.author-info span {
    font-size: 12px;
    color: var(--text-light);
}

/* FAQ Section */
.faq {
    padding: 60px 0;
    background: var(--white);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--light-color);
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-question {
    padding: 18px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: var(--white);
}

.faq-question h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark-color);
    margin: 0;
}

.faq-question i {
    color: var(--primary-color);
    font-size: 14px;
}


html#sag .faq-question { flex-direction: row-reverse; }

.faq-answer {
    padding: 0 22px;
    max-height: 0;
    overflow: hidden;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 22px 18px;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
    padding-top: 15px;
    font-size: 13px;
}

/* Process Section */
.process {
    padding: 60px 0;
    background: var(--light-color);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
}

.step-icon {
    width: 70px;
    height: 70px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.step-icon i {
    font-size: 28px;
    color: var(--primary-color);
}

.process-step h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.process-step p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 13px;
}

/* Page Hero Section */
.page-hero {
    background: var(--dark-color);
    padding: 60px 0 50px;
    text-align: center;
    color: var(--white);
    margin-top: 0;
}

.page-hero-content h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
}

.page-hero-content p {
    font-size: 15px;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Page */
.services-page {
    padding: 60px 0;
    background: var(--white);
}

.services-page .container {
    position: relative;
}

/* Service Categories Navigation */
.service-categories-wrapper {
    margin: 25px 0 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(181, 149, 86, 0.06);
}

.service-category-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
}

.category-nav-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 14px;
    background: var(--white);
    border: 1px solid rgba(181, 149, 86, 0.1);
    color: var(--text-dark);
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.category-nav-btn i {
    font-size: 12px;
    color: var(--primary-color);
}

.category-nav-btn:hover {
    border-color: var(--primary-color);
}

.category-nav-btn.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.category-nav-btn.active i {
    color: var(--white);
}

/* Tümü butonu için özel stil (Services) */
.category-nav-btn[data-category="all"] {
    background: var(--white);
    color: var(--text-dark);
    border-color: rgba(231, 76, 60, 0.2);
    font-weight: 500;
}

.category-nav-btn[data-category="all"] i {
    color: #e74c3c;
}

.category-nav-btn[data-category="all"]:hover {
    border-color: #e74c3c;
    background: rgba(231, 76, 60, 0.05);
    transform: translateY(-1px);
}

.category-nav-btn[data-category="all"].active {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: var(--white);
    border-color: #e74c3c;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
}

.category-nav-btn[data-category="all"].active i {
    color: var(--white);
}

.service-category-content {
    display: none;
}

.service-category-content.active {
    display: grid;
    animation: fadeIn 0.3s ease;
}

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

.services-grid {
    position: relative;
    margin-top: 25px;
}

.services-scroll-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

.services-scroll-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    flex: 1;
    padding: 20px;
}

.services-slider-btn {
    display: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    flex-shrink: 0;
    z-index: 10;
}

.services-slider-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.services-slider-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.service-card-large {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(181, 149, 86, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.service-card-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-color);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card-large:hover::before {
    opacity: 1;
}

.service-card-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(181, 149, 86, 0.15);
    border-color: rgba(181, 149, 86, 0.2);
}

.service-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.service-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card-large:hover .service-image::after {
    opacity: 1;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.service-card-large:hover .service-image img {
    transform: scale(1.08);
}

.service-image i {
    display: none;
}

.service-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-wrap: wrap;
}

html#sag .service-content {flex-direction: row-reverse;}

.service-content h3 {
    width: 100%;
    float: left;
    position: relative;
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 12px;
    line-height: 1.3;
}

html#sag .service-content h3 { text-align: right;}

.service-content > p {
    width: 100%;
    float: left;
    position: relative;
    color: var(--text-light);
    line-height: 1.7;
    font-size: 14px;
    margin-bottom: 18px;
    flex-grow: 1;
}

html#sag .service-content > p { text-align: right;}

.service-features {
    width: 100%;
    float: left;
    position: relative;
    list-style: none;
    padding: 0;
    margin-bottom: 5px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.service-features li {
    padding:0px;
    color: var(--text-dark);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.2s ease;
}

html#sag .service-features li {flex-direction: row-reverse;}

.service-features li i {
    color: var(--primary-color);
    font-size: 14px;
    width: 16px;
    flex-shrink: 0;
}

.service-content .btn-primary {
    margin-top: auto;
    display: inline-block;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    align-self: flex-start;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(181, 149, 86, 0.2);
}

html#sag .service-content .btn-primary{ float: right; }

.service-content .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(181, 149, 86, 0.3);
}

.services-process {
    margin-top: 60px;
    padding-top: 50px;
    border-top: 1px solid rgba(181, 149, 86, 0.1);
}

.services-process .section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 24px;
}

.services-cta {
    margin-top: 60px;
    background: var(--dark-color);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    color: var(--white);
}

.cta-content h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--white);
}

.cta-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    padding: 10px 24px;
    font-size: 13px;
    font-weight: 600;
}

.cta-buttons .btn-secondary {
    background: var(--white);
    color: var(--dark-color);
    border: 1px solid var(--white);
    padding: 10px 24px;
    font-size: 13px;
    font-weight: 600;
}

/* Stats Section */
.stats {
    padding: 100px 0;
    background: var(--dark-color);
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.stat-box {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.stat-box .stat-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 10px;
    display: block;
}

.stat-box .stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Contact Section */
.contact {
    padding: 60px 0;
    background: var(--dark-color);
    color: var(--white);
}

.contact .section-title {
    color: var(--white);
}

.contact .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

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

.contact-item i {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.contact-item h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

.contact-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 13px;
}

.contact-item i {
    color: var(--primary-color);
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-family: inherit;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.15);
}

.contact-form button {
    width: 100%;
}

/* Footer */
.footer {
    width: 100%;
    background: #0f0f0f;
    color: var(--white);
    padding: 60px 0 20px;
    float: left;
    position: relative;
}

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--white);
}

html#sag .footer-section h4{ text-align: right;}

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

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

.footer-section ul li a {
    color: var(--light-color);
    text-decoration: none;
}

.footer-section ul li i {    
    height: 26px;
    line-height: 26px;
    margin-right: 10px;
    color: var(--primary-color);
}

html#sag .footer-section ul li {
    display: flex;
    flex-direction: row-reverse;
}

html#sag .footer-section ul li i{
    margin-left: 10px;
    margin-right: 0px;
}

html#sag .ar_tar{ text-align: right; }

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

html#sag .social-icons { justify-content: flex-end; }

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

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




.urunler{
    width: 100%;
    float: left;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}


.urun_str{
    width: calc(33.33% - 20px);
    float: left;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(181, 149, 86, 0.1);
    padding: 10px;
    box-sizing: border-box;
    background-color: #fff;
    border-radius: 10px;
}

.urun_str .kapak{
    width: 100%;
    float: left;
    position: relative;
    padding-top: 70%;
    border-radius: 6px;
    overflow: hidden;
}

.urun_str .kapak img{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    object-fit: cover;
}

.urun_str .btn-primary{
    margin-top: 20px;
}

.urun_content{
    width: 100%;
    float: left;
    position: relative;
}

.urun_content h3{
    width: 100%;
    line-height: 1.4;
    letter-spacing: 1px;
    text-align: center;
    float: left;
    position: relative;
    margin: 10px 0px;
    text-transform: capitalize;
}

.urun_content p{
    width: 100%;
    line-height: 1.4;
    letter-spacing: 0.5px;
    font-size: 14px;
    text-align: center;
    float: left;
    position: relative;
}






/* Responsive Design */
@media (max-width: 968px) {
    .main-header {
        padding: 12px 0;
    }


    /*navbar { display: none; }*/

        
    .slider-controls {
        top: calc(100% - 80px);
        padding: 0 30px;
        display: flex;
    }

    .slider-btn{ margin: 0px 10px;}

    .logo {
        gap: 10px;
    }

    .logo-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .logo-text h1 {
        font-size: 20px;
    }

    .logo-text p {
        font-size: 9px;
    }

    .slider-content h2 {
        font-size: 36px;
    }


    .application-card {
        min-width: 320px;
        max-width: 320px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .service-card-large {
        flex-direction: column;
    }

    .service-image {
        width: 100%;
        height: 250px;
        padding: 0;
    }

    .service-image img {
        width: 100%;
        height: 100%;
    }

    .service-content {
        padding: 25px;
    }

    .service-content h3 {
        font-size: 18px;
    }

    .service-content > p {
        font-size: 13px;
    }

    .service-features li {
        font-size: 11px;
    }

    .category-nav-btn {
        padding: 5px 12px;
        font-size: 11px;
    }

    .product-category-btn {
        padding: 5px 12px;
        font-size: 11px;
    }

    .product-categories-wrapper {
        margin: 20px 0 10px;
        padding-bottom: 10px;
    }

    .product-category-nav {
        gap: 5px;
    }

    .page-hero-content h1 {
        font-size: 36px;
    }

    .page-hero-content p {
        font-size: 18px;
    }

    .services-cta {
        padding: 40px 30px;
    }

    .cta-content h2 {
        font-size: 28px;
    }

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

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .car-showcase {
        padding: 40px 0;
    }

    .showcase-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .showcase-logo {
        top: 20px;
        right: 20px;
        padding: 12px 20px;
    }

    .showcase-logo-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .showcase-logo-text h2 {
        font-size: 20px;
    }

    .showcase-logo-text p {
        font-size: 10px;
    }

    .hero {
        min-height: 70vh;
    }

    .brand-name {
        font-size: 48px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .feature-item {
        grid-template-columns: 60px 1fr;
        gap: 30px;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .main-header {
        padding: 10px 0;
    }

    .logo-icon {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }

    .logo-text h1 {
        font-size: 18px;
    }

    .logo-text p {
        font-size: 8px;
    }

    .main-header .mobile-menu-toggle {
        font-size: 20px;
    }

    .nav-buttons {
        gap: 8px;
    }

    .btn-dealer,
    .btn-document {
        padding: 6px 12px;
        font-size: 11px;
    }

    .navbar .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: left;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 0;
        gap: 0;
        max-height: calc(100vh - 120px);
        overflow-y: auto;
        transition: left 0.3s ease;
        z-index: 1000;
    }

    .navbar .nav-menu.active {
        left: 0;
    }

    .mobile-menu-back {
        display: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        background: var(--white);
        padding: 0;
        margin: 0;
    }

    .dropdown.active .mobile-menu-back {
        display: block;
    }

    .mobile-back-btn {
        width: 100%;
        padding: 18px 20px;
        background: transparent;
        border: none;
        color: var(--dark-color);
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 12px;
        transition: all 0.3s ease;
        text-align: left;
    }

    .mobile-back-btn:hover {
        background: rgba(255, 255, 255, 0.1);
        padding-left: 25px;
    }

    .mobile-back-btn i {
        font-size: 18px;
        transition: transform 0.3s ease;
    }

    .mobile-back-btn:hover i {
        transform: translateX(-5px);
    }

    .mobile-back-btn span {
        font-family: inherit;
    }

    .nav-menu > li {
        width: 100%;
    }

    .nav-menu > li > a {
        padding: 12px 20px;
        display: block;
        width: 100%;
        font-size: 14px;
    }

    .dropdown-menu {
        position: fixed;
        top: 120px;
        left: 0;
        right: 0;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding: 20px 15px;
        background: var(--white);
        display: none;
    }

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

    .mega-menu-content {
        padding: 15px;
    }

    .mega-menu-header {
        margin-bottom: 20px;
        padding-bottom: 15px;
    }

    .mega-menu-header h2 {
        font-size: 20px;
    }

    .mega-menu-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 20px;
    }

    .category-items {
        gap: 12px;
    }

    .category-item {
        padding: 12px;
    }

    .category-item h4 {
        font-size: 15px;
    }

    .category-item p {
        font-size: 12px;
    }

    .mega-menu-footer {
        text-align: center;
    }

    .main-header .mobile-menu-toggle {
        display: block;
    }





    .as_slider {
        height: calc(100vh - 80px);
    }

    .as_slide .as_s_cont .assc_ic{
        width: calc(100% - 50px);
        margin: 0px 25px;
    }


    .as_s_nav{
        bottom: 80px;
        top: auto;
        transform: translateY(0px);
    }
}

/* Blog Page Styles */
.blog-page {
    padding: 60px 0;
    background: var(--light-color);
}

.blog-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
    justify-content: center;
}

.blog-category-btn {
    padding: 12px 24px;
    background: var(--white);
    border: 2px solid rgba(181, 149, 86, 0.1);
    border-radius: 25px;
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.blog-category-btn:hover,
.blog-category-btn.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.blog-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

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

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

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

.blog-category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: var(--white);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

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

.blog-card-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 13px;
    color: var(--text-light);
}

.blog-card-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}


html#sag .blog-card-meta { text-align: right; justify-content: flex-end; }
html#sag .blog-card-title { text-align: right; }
html#sag .blog-card-excerpt { text-align: right; }
html#sag .blog-read-more { float:right; }

.blog-card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-card-excerpt {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-read-more:hover {
    gap: 12px;
    color: var(--secondary-color);
}

.blog-read-more i {
    font-size: 12px;
}

.blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
}

.pagination-btn {
    padding: 10px 18px;
    background: var(--white);
    border: none;
    border-radius: 8px;
    color: var(--text-dark);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.pagination-btn:hover,
.pagination-btn.active {
    background: var(--primary-color);
    color: var(--white);
    border: none;
}

.pagination-btn.next {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pagination-dots {
    padding: 10px 8px;
    color: var(--text-light);
    font-weight: 600;
}

/* Blog Detail Page Styles */
.blog-detail-hero {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.blog-detail-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.blog-detail-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-detail-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.blog-detail-hero-content {
    position: relative;
    height: 100%;
    display: flex;
    align-items: flex-end;
    z-index: 1;
}

.blog-detail-hero-content .container {
    padding-bottom: 60px;
}

.blog-detail-category {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.blog-detail-hero-content h1 {
    font-size: 42px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
    line-height: 1.3;
}

.blog-detail-excerpt {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    line-height: 1.6;
}

.blog-detail-meta {
    display: flex;
    gap: 25px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.blog-detail-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-detail-content {
    padding: 60px 0;
    background: var(--light-color);
}

.blog-detail-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 50px;
}

.blog-detail-main {
    background: var(--white);
    border-radius: 15px;
    padding: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.blog-detail-article {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
}

.blog-detail-article h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-color);
    margin-top: 35px;
    margin-bottom: 15px;
}

.blog-detail-article p {
    margin-bottom: 20px;
}

.blog-detail-article ul {
    margin: 20px 0;
    padding-left: 25px;
}

.blog-detail-article ul li {
    margin-bottom: 12px;
    line-height: 1.7;
}

.blog-share {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid rgba(181, 149, 86, 0.1);
}

.blog-share h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.blog-share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 8px;
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.share-btn.facebook {
    background: #1877f2;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.linkedin {
    background: #0077b5;
}

.share-btn.whatsapp {
    background: #25d366;
}

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

.blog-detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.blog-sidebar-widget {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.blog-sidebar-widget h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(181, 149, 86, 0.1);
}

.related-posts-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.related-post-item {
    display: flex;
    gap: 15px;
    text-decoration: none;
    color: var(--text-dark);
    padding: 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.related-post-item:hover {
    background: rgba(181, 149, 86, 0.05);
}

.related-post-image {
    width: 100px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

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

.related-post-content h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 8px;
    line-height: 1.4;
}

.related-post-date {
    font-size: 12px;
    color: var(--text-light);
}

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

.blog-categories-list li {
    margin-bottom: 12px;
}

.blog-categories-list a {
    display: block;
    padding: 12px 15px;
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.blog-categories-list a:hover {
    background: rgba(181, 149, 86, 0.08);
    color: var(--primary-color);
    padding-left: 20px;
}

@media (max-width: 991px) {
    .blog-detail-wrapper {
        grid-template-columns: 1fr;
    }

    .blog-detail-hero-content h1 {
        font-size: 32px;
    }

    .blog-detail-main {
        padding: 30px;
    }

    .blog-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 20px;
    }

    .product-detail-wrapper {
        grid-template-columns: 1fr 300px;
        gap: 30px;
    }

    .product-detail-main {
        padding: 30px;
    }

        
    .car-image-wrapper {
        width: 100%;
        overflow: visible;
        float: left;
    }

    .showcase-info-panel {
        width: 100%;
        position: relative;
        float: right;
    }

    .info-line {
        top: -50px;
        transform: rotate(90deg);
    }

    .car-image-wrapper .hotspot{
        width: 40px;
        height: 40px;
    }
    
    .car-image-wrapper .hotspot-inner{
        width: 25px;
        height: 25px;
    }
    
    
    .products-scroll .product-card {
        width: 100%;
        margin: 20px 0px;
    }


        
    .gallery-item {
        width: calc(25% - 16px);
        aspect-ratio: 4 / 3;
    }

        
    .related-product-content h4 { font-size: 14px; }
    .related-product-category { font-size: 11px; }
    .related-product-item{padding: 10px;}


        

    .urun_str{ width: calc(33.33% - 20px); }

}

@media (max-width: 640px) {
    
    .gallery-item {
        width: calc(33.33% - 16px);
        aspect-ratio: 4 / 3;
    }

    
    .urun_str{ width: calc(50% - 10px); }
}



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

    .blog-detail-hero {
        height: 400px;
    }

    .blog-detail-hero-content h1 {
        font-size: 28px;
    }

    .product-detail-wrapper{
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .product-detail-main {
        padding: 20px;
    }

 
    .product-videos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .blog-detail-excerpt {
        font-size: 16px;
    }

    .blog-detail-meta {
        flex-direction: column;
        gap: 10px;
    }

    .services-scroll-container{ grid-template-columns: repeat(1, 1fr); }
}

/* About Page Styles */
.about-intro {
    padding: 80px 0;
    background: var(--white);
}

.about-intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-intro-text {
    max-width: 100%;
}

.about-intro-text .section-tag {
    display: inline-block;
    background: rgba(181, 149, 86, 0.1);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.about-intro-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-intro-lead {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-intro-text p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-intro-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    height: 500px;
}

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

/* Vision & Mission Section */
.vision-mission {
    padding: 80px 0;
    background: var(--light-color);
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.vision-card,
.mission-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

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

.vision-icon,
.mission-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--white);
    font-size: 32px;
}

.vision-card h3,
.mission-card h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.vision-card p,
.mission-card p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
}

/* Values Section */
.about-values {
    padding: 80px 0;
    background: var(--white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.value-item {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
}

.value-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
    border-color: rgba(181, 149, 86, 0.2);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--white);
    font-size: 28px;
}

.value-item h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.value-item p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

/* Stats Section */
.about-stats {
    padding: 80px 0;
    background: var(--primary-color);
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--white);
}

.stat-label {
    font-size: 18px;
    font-weight: 600;
    opacity: 0.9;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    background: var(--light-color);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.why-choose-item {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
}

.why-choose-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: rgba(181, 149, 86, 0.2);
}

.why-choose-icon {
    width: 70px;
    height: 70px;
    background: rgba(181, 149, 86, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--primary-color);
    font-size: 28px;
}

.why-choose-item:hover .why-choose-icon {
    background: var(--primary-color);
    color: var(--white);
}

.why-choose-item h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.why-choose-item p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

/* About CTA Section */
.about-cta {
    padding: 80px 0;
    background: var(--white);
}

.about-cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-cta-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.about-cta-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.7;
    display: none;
}

.about-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

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


    .vision-mission-grid {
        grid-template-columns: 1fr;
    }

    .values-grid,
    .why-choose-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

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

@media (max-width: 768px) {
    .about-intro,
    .vision-mission,
    .about-values,
    .about-stats,
    .why-choose-us,
    .about-cta {
        padding: 60px 0;
    }

    .about-intro-text h2 {
        font-size: 28px;
    }

    .vision-card,
    .mission-card {
        padding: 40px 30px;
    }


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

    .stat-number {
        font-size: 42px;
    }

    .about-cta-content h2 {
        font-size: 32px;
    }

    .about-cta-buttons {
        flex-direction: column;
    }

    .about-cta-buttons a {
        width: 100%;
    }
}

/* Policy Page Styles */
.policy-page {
    padding: 80px 0;
    background: var(--white);
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
}

.policy-text {
    background: var(--white);
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    line-height: 1.8;
    color: var(--text-dark);
}

.policy-text h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-color);
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(181, 149, 86, 0.2);
}

.policy-text h2:first-child {
    margin-top: 0;
}

.policy-text h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--dark-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.policy-text p {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.8;
}

.policy-text ul {
    margin: 20px 0;
    padding-left: 30px;
}

.policy-text ul li {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.8;
    list-style-type: disc;
}

.policy-text ul li strong {
    color: var(--primary-color);
    font-weight: 600;
}

.policy-text a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.policy-text a:hover {
    color: var(--dark-color);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .policy-page {
        padding: 40px 0;
    }

    .policy-text {
        padding: 30px 20px;
    }

    .policy-text h2 {
        font-size: 24px;
        margin-top: 30px;
    }

    .policy-text h3 {
        font-size: 20px;
    }

    .policy-text p,
    .policy-text ul li {
        font-size: 15px;
    }
}

/* Gallery Page Styles */
.gallery-page {
    padding: 80px 0;
    background: var(--light-color);
}

.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
    justify-content: center;
}

.gallery-filter-btn {
    padding: 12px 28px;
    background: var(--white);
    border: 2px solid rgba(181, 149, 86, 0.1);
    border-radius: 25px;
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}
/*
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
*/
.gallery-item-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.gallery-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-info {
    margin-top: auto;
}

.gallery-item-info h4 {
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.gallery-item-info p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

.gallery-item-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.gallery-view-btn {
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.gallery-view-btn:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

/* Gallery Modal */
.gallery-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.gallery-modal.active {
    display: flex;
}

.gallery-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(5px);
}

.gallery-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-modal-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.gallery-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10000;
}

.gallery-modal-close:hover {
    background: var(--primary-color);
    transform: rotate(90deg);
}

.gallery-modal-prev,
.gallery-modal-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10000;
}

.gallery-modal-prev {
    left: -70px;
}

.gallery-modal-next {
    right: -70px;
}

.gallery-modal-prev:hover,
.gallery-modal-next:hover {
    background: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.gallery-modal-info {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    text-align: center;
    color: var(--white);
}

.gallery-modal-info h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

.gallery-modal-info p {
    font-size: 14px;
    opacity: 0.9;
}

@media (max-width: 991px) {

    .gallery-modal-prev {
        left: 10px;
    }

    .gallery-modal-next {
        right: 10px;
    }

    .gallery-modal-close {
        top: 10px;
        right: 10px;
    }
}

@media (max-width: 768px) {

    .gallery-item-image {
        height: 250px;
    }

    .gallery-modal-content {
        max-width: 95%;
    }
}

/* Technology Guarantee Page Styles */
.technology-guarantee-page {
    padding: 80px 0;
    background: var(--white);
}

.technology-guarantee-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.technology-guarantee-content .tech-guarantee-image {
    margin-top: 40px;
    text-align: center;
}

.technology-guarantee-content .tech-guarantee-image img {
    width: 60%;
    max-width: 200px;
    display: inline-block;
}

.tech-guarantee-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 30px;
    line-height: 1.3;
}

.tech-guarantee-description {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 50px;
    text-align: left;
    padding: 0 20px;
}

.tech-guarantee-actions {
    margin-bottom: 60px;
}

.btn-pdf-download {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: var(--primary-color);
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(181, 149, 86, 0.3);
    transition: all 0.3s ease;
}

.btn-pdf-download:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(181, 149, 86, 0.4);
}

.btn-pdf-download i {
    font-size: 24px;
}

/* User Profile Section */
.user-profile-section {
    background: var(--light-color);
    border-radius: 20px;
    padding: 50px 40px;
    margin-bottom: 60px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.user-profile-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    justify-content: center;
}

.user-profile-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 36px;
}

.user-profile-info h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.user-profile-info p {
    font-size: 15px;
    color: var(--text-light);
}

.user-profile-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 25px;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 8px;
}

.form-group input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(181, 149, 86, 0.1);
    border-radius: 10px;
    font-size: 16px;
    color: var(--text-dark);
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(181, 149, 86, 0.1);
}

.btn-profile-login {
    width: 100%;
    padding: 18px 30px;
    background: var(--primary-color);
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-profile-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(181, 149, 86, 0.3);
}

/* Profile Results */
.profile-results {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 2px solid rgba(181, 149, 86, 0.1);
}

.profile-guarantee-list h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 25px;
    text-align: left;
}

.guarantee-item {
    background: var(--white);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.guarantee-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    flex-shrink: 0;
}

.guarantee-details {
    flex: 1;
    text-align: left;
}

.guarantee-details h5 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.guarantee-date,
.guarantee-period {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.guarantee-status {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-top: 8px;
}

.guarantee-status.active {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

.guarantee-action {
    flex-shrink: 0;
}

.btn-download-certificate {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(181, 149, 86, 0.1);
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

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

/* Tech Guarantee Features */
.tech-guarantee-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(181, 149, 86, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-color);
    font-size: 28px;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.feature-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .tech-guarantee-title {
        font-size: 32px;
    }

    .tech-guarantee-description {
        font-size: 16px;
        padding: 0;
    }

    .user-profile-section {
        padding: 30px 20px;
    }

    .user-profile-header {
        flex-direction: column;
        text-align: center;
    }

    .guarantee-item {
        flex-direction: column;
        text-align: center;
    }

    .guarantee-details {
        text-align: center;
    }

    .tech-guarantee-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .brand-name {
        font-size: 36px;
    }

    .section-title {
        font-size: 32px;
    }

    .products-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .product-tabs {
        width: 100%;
    }

    .tab-btn {
        flex: 1;
        text-align: center;
    }

    .services-grid {
        position: relative;
    }

    /* Services Slider Mobil */
    .services-scroll-wrapper {
        position: relative;
        padding: 0 15px;
        margin: 0 -15px;
    }

    .services-slider-btn {
        display: flex;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 20;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    }

    .services-slider-prev {
        left: 0;
    }

    .services-slider-next {
        right: 0;
    }

    .products-slider-btn {
        display: flex;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 20;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    }

    .products-slider-prev {
        left: 5px;
    }

    .products-slider-next {
        right: 5px;
    }

    /* Applications Slider Mobil */
    .applications-scroll-wrapper {
        position: relative;
        padding: 0 15px;
        margin: 0 -15px;
    }

    .applications-scroll-container {
        display: flex;
        overflow-x: auto;
        scroll-behavior: smooth;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        gap: 10px;
        padding: 2px 15px;
    }

    .applications-scroll-container::-webkit-scrollbar {
        display: none;
    }

    .applications-scroll .application-card {
        min-width: calc(52% - 6px);
        max-width: calc(52% - 6px);
        flex-shrink: 0;
        scroll-snap-align: start;
        width: calc(52% - 6px);
    }

    .applications-scroll .application-image {
        height: 90px;
    }

    .applications-scroll .application-content {
        padding: 8px;
    }

    .applications-scroll .application-content h3 {
        font-size: 12px;
        margin-bottom: 3px;
        line-height: 1.2;
    }

    .applications-scroll .application-content > p {
        font-size: 9px;
        line-height: 1.25;
        margin-bottom: 6px;
    }

    .applications-scroll .application-meta {
        padding-top: 5px;
        gap: 6px;
    }

    .applications-scroll .application-meta span {
        font-size: 8px;
    }

    .applications-scroll .application-badge {
        font-size: 8px;
        padding: 2px 6px;
        top: 6px;
        left: 6px;
    }

    .applications-slider-btn {
        display: flex;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 20;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    }

    .applications-slider-prev {
        left: 5px;
    }

    .applications-slider-next {
        right: 5px;
    }
}

@media (max-width: 480px) {
    
    .gallery-item {
        width: calc(50% - 16px);
        aspect-ratio: 4 / 3;
    }

    .slider-section {
        height: 500px;
    }

    .slider-content h2 {
        font-size: 28px;
    }

    .values-grid,
    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    .car-image-wrapper .hotspot {
        width: 30px;
        height: 30px;
    }

    .car-image-wrapper .hotspot-inner {
        width: 18px;
        height: 18px;
    }
    .application-card {
        min-width: calc(52% - 6px);
        max-width: calc(52% - 6px);
    }

    .products-slider-btn,
    .applications-slider-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .products-slider-prev {
        left: 5px;
    }

    .products-slider-next {
        right: 5px;
    }

    .applications-slider-prev {
        left: 5px;
    }

    .applications-slider-next {
        right: 5px;
    }

    .services-slider-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .services-slider-prev {
        left: 5px;
    }

    .services-slider-next {
        right: 5px;
    }

    .service-image {
        height: 220px;
    }

    .service-content {
        padding: 20px;
    }

    .service-content h3 {
        font-size: 16px;
    }

    .service-content > p {
        font-size: 12px;
    }

    .service-features li {
        font-size: 12px;
    }

    .service-content .btn-primary {
        padding: 10px 24px;
        font-size: 13px;
    }

    .page-hero {
        padding: 80px 0 60px;
    }

    .page-hero-content h1 {
        font-size: 28px;
    }

    .page-hero-content p {
        font-size: 16px;
    }

    .service-content {
        padding: 25px;
    }

    .service-content h3 {
        font-size: 22px;
    }

    .services-cta {
        padding: 30px 20px;
    }

    .cta-content h2 {
        font-size: 24px;
    }

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

    .cta-buttons a {
        width: 100%;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .process-step {
        padding: 15px;
    }

    .step-icon {
        width: 60px;
        height: 60px;
        margin: 15px auto 10px;
        font-size: 24px;
    }

    .process-step h3 {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .process-step p {
        font-size: 11px;
        line-height: 1.4;
    }

    .step-number {
        width: 35px;
        height: 35px;
        font-size: 14px;
        top: -10px;
    }

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

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

    .faq-question {
        padding: 20px;
    }

    .faq-answer {
        padding: 0 20px;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }

    .car-showcase {
        padding: 30px 0;
    }

    .showcase-container {
        gap: 30px;
    }

    .showcase-logo {
        top: 15px;
        right: 15px;
        padding: 10px 15px;
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .showcase-logo-icon {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }

    .showcase-logo-text h2 {
        font-size: 16px;
    }

    .showcase-logo-text p {
        font-size: 9px;
    }

    .hero {
        min-height: 60vh;
    }

    .brand-name {
        font-size: 32px;
    }

    .section-title {
        font-size: 28px;
    }

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

    .hero-buttons a {
        width: 100%;
        text-align: center;
    }

    .feature-item {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }

    .feature-number {
        display: none;
    }


/* Product Detail Page Styles */
.product-detail-hero {
    background: var(--primary-color);
    padding: 80px 0 60px;
    color: var(--white);
}

.product-detail-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.product-category {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 18px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-detail-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
}

.product-detail-header .product-subtitle {
    font-size: 20px;
    margin-bottom: 20px;
    opacity: 0.95;
    font-weight: 400;
}

.product-detail-header .product-description {
    font-size: 16px;
    line-height: 1.8;
    opacity: 0.95;
}

}

/* Product Main Image Section */
.product-main-image-section {
    padding: 60px 0;
    background: var(--white);
}

/* Büyük ana fotoğraf artık kullanılmıyor - gizle */
.product-main-image {
    display: none;
}

/* Product Features Images Section */
.product-features-images-section {
    padding: 80px 0;
    background: var(--light-color);
}

.feature-images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.feature-image-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-image-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.feature-image-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

/* Product Application Section */
.product-application-section {
    padding: 80px 0;
    background: var(--white);
}

.application-photos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.application-photo-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    cursor: pointer;
}

.application-photo-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.application-photo-item:hover img {
    transform: scale(1.05);
}

.photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(181, 149, 86, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.application-photo-item:hover .photo-overlay {
    opacity: 1;
}

.photo-overlay i {
    color: var(--white);
    font-size: 48px;
}

/* Product Video Section */
.product-video-section {
    padding: 80px 0;
    background: var(--light-color);
}

.product-video-section .video-container {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.product-video-section .video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
}

.product-video-section .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Product Other Products Section */
.product-other-products-section {
    padding: 80px 0;
    background: var(--white);
}

.other-products-list {
    display: grid;
    gap: 15px;
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.other-product-item {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(181, 149, 86, 0.08);
    transition: all 0.3s ease;
}

.other-product-item:hover {
    box-shadow: 0 5px 25px rgba(181, 149, 86, 0.15);
    transform: translateX(5px);
}

.other-product-link {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    text-decoration: none;
    color: inherit;
}

.other-product-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.other-product-icon i {
    color: var(--white);
    font-size: 24px;
}

.other-product-info {
    flex-grow: 1;
}

.other-product-info h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.other-product-category {
    font-size: 13px;
    color: var(--text-light);
}

.other-product-arrow {
    color: var(--primary-color);
    font-size: 20px;
}

/* Product CTA Section */
.product-cta-section {
    padding: 80px 0;
    background: var(--dark-color);
    color: var(--white);
}

.product-cta-section .cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.product-cta-section .cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--white);
}

.product-cta-section .cta-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.product-cta-section .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Service Detail Page Styles */
.service-detail-hero {
    background: var(--dark-color);
    padding: 120px 0 90px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.service-detail-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.service-detail-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.service-detail-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.service-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.25);
    padding: 8px 22px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.service-detail-header h1 {
    font-size: 52px;
    margin-bottom: 18px;
    font-weight: 800;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    line-height: 1.2;
}

.service-subtitle {
    font-size: 26px;
    margin-bottom: 25px;
    opacity: 0.95;
    font-weight: 400;
    color: var(--white);
}

.service-description {
    font-size: 18px;
    line-height: 1.9;
    opacity: 0.92;
    color: var(--white);
    font-weight: 300;
}

/* Service Features Section */
.service-features-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.service-features-section .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 2px 10px var(--shadow);
}

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

.feature-item span {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-color);
}

/* Service Process Section */
.service-process-section {
    padding: 80px 0;
}

.process-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.process-item {
    position: relative;
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow);
}

.process-number {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-color);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    z-index: 2;
}

.process-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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

.process-content {
    padding: 30px;
}

.process-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-color);
}

.process-content p {
    color: var(--light-color);
    line-height: 1.6;
}

/* Service Video Section */
.service-video-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.video-container {
    text-align: center;
}

.video-container .section-title {
    margin-bottom: 15px;
}

.video-container .section-subtitle {
    margin-bottom: 40px;
}

.video-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    background: var(--white);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.video-item.w100{
    width: 100%;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 40px var(--shadow);
    cursor: pointer;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-wrapper:before{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 2;
    background-color: rgba(0,0,0,0.4);
}

.video-wrapper:after{
    content: ''; 
    width: 50px;
    height: 50px;
    position: absolute;
    z-index: 3;
    top: calc(50% - 25px);
    left: calc(50% - 25px);
    background-color: #fff;
    mask: url(/images/play.svg) no-repeat center / contain; 
    -webkit-mask: url(/images/play.svg) no-repeat center / contain;
}

.video-wrapper img{
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
    top: 0px;
    left: 0px;
    z-index: 1;
}

/* Other Services Section */
.other-services-section {
    padding: 80px 0;
}

.other-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.other-service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.other-service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.other-service-icon i {
    font-size: 36px;
    color: var(--white);
}

.other-service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-color);
}

.other-service-card p {
    color: var(--light-color);
    line-height: 1.6;
    margin-bottom: 25px;
}

.other-service-card .btn-primary {
    display: inline-block;
}

/* Service CTA Section */
.service-cta-section {
    padding: 80px 0;
    background: var(--primary-color);
    color: var(--white);
}

.service-cta-section .cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.service-cta-section .cta-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--white);
}

.service-cta-section .cta-content p {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.service-cta-section .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design for Service Detail */
@media (max-width: 968px) {
    .service-detail-header h1 {
        font-size: 38px;
    }

    .service-subtitle {
        font-size: 20px;
    }

    .service-description {
        font-size: 16px;
    }

    .product-main-image-section .section-header {
        margin-bottom: 40px;
    }

    .thumbnail-item img {
        height: 120px;
    }

    .product-videos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .other-services-grid {
        grid-template-columns: 1fr;
    }

    .service-cta-section .cta-content h2 {
        font-size: 28px;
    }

    .service-cta-section .cta-buttons {
        flex-direction: column;
    }

    .service-cta-section .cta-buttons a {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .service-detail-header h1 {
        font-size: 32px;
    }

    .service-subtitle {
        font-size: 18px;
    }

    .product-main-image-section .section-header {
        margin-bottom: 30px;
    }

    .thumbnail-item img {
        height: 150px;
    }

    .product-videos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Products Page Styles */
.products-page {
    padding: 100px 0;
    background: var(--white);
    position: relative;
}

.products-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: rgba(181, 149, 86, 0.03);
    z-index: 0;
}

.products-page .container {
    position: relative;
    z-index: 1;
}

.products-grid-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
    padding: 0;
}

.product-card {
    width: 100%;
    background: var(--white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
    border: 1px solid rgba(181, 149, 86, 0.08);
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--primary-color);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover::before {
    opacity: 1;
}

.product-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: rgba(181, 149, 86, 0.05);
    position: relative;
}

.product-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(181, 149, 86, 0.05);
    pointer-events: none;
}

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

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

.product-content {
    padding: 35px;
    position: relative;
}

.product-content h3 {
    font-size: 26px;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 10px;
    background: var(--primary-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
}

.product-subtitle {
    font-size: 13px;
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: inline-block;
    padding: 5px 12px;
    background: rgba(181, 149, 86, 0.1);
    border-radius: 15px;
}

.product-description {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 15px;
    margin-bottom: 25px;
    font-weight: 400;
}

.btn-details {
    display: inline-block;
    padding: 14px 32px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(181, 149, 86, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-details::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-details:hover::before {
    width: 300px;
    height: 300px;
}

.btn-details:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(181, 149, 86, 0.4);
}

.btn-details span {
    position: relative;
    z-index: 1;
}

/* Product Detail Page Styles */
.product-detail-hero {
    background: var(--dark-color);
    padding: 120px 0 90px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.product-detail-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.product-detail-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.product-detail-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.product-category {
    display: inline-block;
    background: rgba(255, 255, 255, 0.25);
    padding: 8px 22px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.product-detail-header h1 {
    font-size: 52px;
    margin-bottom: 18px;
    font-weight: 800;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    line-height: 1.2;
}

.product-detail-header .product-subtitle {
    font-size: 26px;
    margin-bottom: 25px;
    opacity: 0.95;
    font-weight: 400;
    color: var(--white);
    text-transform: none;
    background: none;
    padding: 0;
}

.product-detail-header .product-description {
    font-size: 18px;
    line-height: 1.9;
    opacity: 0.92;
    color: var(--white);
    font-weight: 300;
}

/* Product Main Image */
.product-main-image-section {
    padding: 100px 0;
    background: var(--white);
}

.product-main-image-section .section-header {
    width: 100%;
    float: left;
    position: relative;
    text-align: center;
    margin-bottom: 50px;
}

.product-main-image-section .section-title {
    margin-bottom: 15px;
}

/* Büyük ana fotoğraf artık kullanılmıyor - gizle */
.product-main-image {
    display: none;
}

/* Product Detail Sidebar */
.product-detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Thumbnails Grid - 3 sütunlu küçük grid */
.product-thumbnails-grid {
    width: 100%;
    float: left;
    position: relative;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* Videos Section */
.product-videos-section {
    width: 100%;
    float: left;
    position: relative;
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.product-videos-section .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.product-videos-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}
 
.thumbnail-item {
    width: calc(33.33% - 10px);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    background: var(--white);
    position: relative;
    box-sizing: border-box;
}

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

.thumbnail-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

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

.image-lightbox-trigger {
    cursor: pointer;
}

/* Image Lightbox Modal */
.image-lightbox-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}

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


.image-lightbox-modal .iframe{
   width: 100%;
   height: 100%;
   float: left;
   position: relative;
}

.image-lightbox-modal .iframe iframe{
   width: 100%;
   height: 100%;
   float: left;
   position: relative;
}


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

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

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

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: var(--white);
    font-size: 48px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    width: 50px;
    height: 50px;
    line-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}


.lightbox-close::before{
    content: '';
    width: 30px;
    height: 6px;
    transform: rotate(45deg);
    background-color: #fff;
    position: absolute;
    border-radius: 3px;
}

.lightbox-close::after{
    content: '';
    width: 30px;
    height: 6px;
    transform: rotate(-45deg);
    background-color: #fff;
    position: absolute;
    border-radius: 3px;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.lightbox-prev,
.lightbox-next {
    pointer-events: all;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 24px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--primary-color);
    transform: scale(1.1);
}

.lightbox-prev:active,
.lightbox-next:active {
    transform: scale(0.95);
}

.thumbnail-video-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background: var(--white);
    position: relative;
}

.thumbnail-video-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.video-thumbnail-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    background: #000;
    border-radius: 15px;
}

.video-thumbnail-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-play-icon {
    display: none;
}

/* Feature Images Section */
.product-features-images-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.feature-images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    margin-top: 60px;
}

.feature-image-item {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    transition: all 0.4s ease;
    position: relative;
    background: var(--white);
}

.feature-image-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(181, 149, 86, 0.05);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.feature-image-item:hover::before {
    opacity: 1;
}

.feature-image-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

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

/* Application Photos Section */
.product-application-section {
    padding: 100px 0;
    background: var(--white);
}

.application-photos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 35px;
    margin-top: 60px;
}

.application-photo-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    background: var(--light-bg);
}

.application-photo-item img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.application-photo-item:hover img {
    transform: scale(1.08);
}

.photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(181, 149, 86, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    backdrop-filter: blur(5px);
}

.application-photo-item:hover .photo-overlay {
    opacity: 1;
}

.photo-overlay i {
    color: var(--white);
    font-size: 56px;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.application-photo-item:hover .photo-overlay i {
    transform: scale(1);
}

/* Product Video Section */
.product-video-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.product-video-section .video-container {
    text-align: center;
}

.product-video-section .section-title {
    margin-bottom: 15px;
}

.product-video-section .section-subtitle {
    margin-bottom: 50px;
}

.product-video-section .video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 1100px;
    margin: 0 auto;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.product-video-section .video-wrapper::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: var(--primary-color);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.2;
}

.product-video-section .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Other Products Section */
.product-other-products-section {
    padding: 100px 0;
    background: var(--white);
}

.other-products-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.other-product-item {
    background: var(--light-bg);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.other-product-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--primary-color);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.other-product-item:hover::before {
    opacity: 1;
}

.other-product-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(181, 149, 86, 0.15);
    border-color: rgba(181, 149, 86, 0.1);
}

.other-product-link {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 30px 35px;
    text-decoration: none;
    color: var(--text-color);
    position: relative;
}

.other-product-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(181, 149, 86, 0.25);
    transition: transform 0.3s ease;
}

.other-product-item:hover .other-product-icon {
    transform: scale(1.1) rotate(5deg);
}

.other-product-icon i {
    color: var(--white);
    font-size: 28px;
}

.other-product-info {
    flex: 1;
}

.other-product-info h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 8px;
}

.other-product-category {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.other-product-arrow {
    color: var(--primary-color);
    font-size: 24px;
    transition: transform 0.3s ease;
}

.other-product-item:hover .other-product-arrow {
    transform: translateX(8px);
}

/* Product CTA Section */
.product-cta-section {
    padding: 100px 0;
    background: var(--primary-color);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.product-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 25s linear infinite;
}

.product-cta-section .cta-content {
    text-align: center;
    max-width: 750px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.product-cta-section .cta-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--white);
    font-weight: 800;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
}

.product-cta-section .cta-content p {
    font-size: 19px;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.8;
}

.product-cta-section .cta-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.product-cta-section .btn-primary {
    padding: 18px 40px;
    font-size: 17px;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.product-cta-section .btn-secondary {
    padding: 18px 40px;
    font-size: 17px;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

/* Responsive Design for Products */
@media (max-width: 968px) {
    .products-grid-list {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }

    .product-detail-header h1 {
        font-size: 38px;
    }

    .product-detail-header .product-subtitle {
        font-size: 20px;
    }

    .product-main-image-section .section-header {
        margin-bottom: 40px;
    }

    .thumbnail-item img {
        height: 120px;
    }

    .product-videos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-images-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }

    .application-photos-grid {
        grid-template-columns: 1fr;
    }

    .other-product-link {
        padding: 25px 20px;
    }

    .product-cta-section .cta-content h2 {
        font-size: 32px;
    }

    .product-cta-section .cta-buttons {
        flex-direction: column;
    }

    .product-cta-section .cta-buttons a {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .products-grid-list {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .product-main-image-section .section-header {
        margin-bottom: 30px;
    }

   
    .product-videos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .thumbnail-item img {
        height: 150px;
    }

    .video-play-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .lightbox-image {
        max-width: 95%;
        max-height: 85%;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .lightbox-nav {
        padding: 0 10px;
    }
}

/* Contact Page Styles */
.contact-page {
    padding: 60px 0;
    background: var(--bg-light);
}

.contact-page-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    margin-bottom: 60px;
}

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

.contact-info-section .section-header h2 {
    font-size: 32px;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.contact-info-section .section-header p {
    font-size: 16px;
    color: var(--text-light);
}

/* Modern Contact Info Design - List Style */
.contact-info-modern {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 40px;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.contact-modern-item {
    display: flex;
    align-items: center;
    padding: 30px 35px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
    background: var(--white);
}

.contact-modern-item:last-child { border-bottom: none; }

.contact-modern-icon-wrapper {
    position: relative;
    margin-right: 25px;
    flex-shrink: 0;
    z-index: 1;
}

.contact-modern-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(181, 149, 86, 0.2);
}

.contact-modern-icon-bg { display: none;}

.contact-modern-content { flex: 1; z-index: 1;}

.contact-modern-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0px;
    text-transform: capitalize;
}

.contact-modern-main {
    font-size: 16px;
    color: var(--text-color);
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 5px;
    display: block;
}

.contact-modern-main a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.contact-modern-main a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.contact-modern-sub {
    display: block;
    font-size: 13px;
    color: var(--text-light);
    font-style: italic;
    margin-top: 5px;
}

.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.contact-info-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border-color: rgba(181, 149, 86, 0.2);
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    background: rgba(181, 149, 86, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 24px;
}

.contact-info-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 12px;
}

.contact-info-card p {
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 8px;
}

.contact-info-card p a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-card p a:hover {
    color: var(--secondary-color);
}

.contact-card-detail {
    font-size: 13px !important;
    color: var(--text-light) !important;
    margin-top: 8px;
}

.contact-social-section {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-social-section h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.contact-social-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    background: var(--bg-light);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

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

.social-link i {
    font-size: 20px;
    width: 24px;
    text-align: center;
}

.social-link span {
    font-size: 15px;
    font-weight: 500;
}

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

.contact-form-section .section-header h2 {
    font-size: 32px;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.contact-form-section .section-header p {
    font-size: 16px;
    color: var(--text-light);
}

.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-page-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

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

.form-group label {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark-color);
}

.form-group label span {
    color: var(--primary-color);
}

.contact-page-form input,
.contact-page-form select,
.contact-page-form textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-family: inherit;
    font-size: 15px;
    background: var(--bg-light);
    color: var(--text-color);
    transition: all 0.3s ease;
}

.contact-page-form input:focus,
.contact-page-form select:focus,
.contact-page-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(181, 149, 86, 0.1);
}

.contact-page-form select {
    cursor: pointer;
}

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

.btn-contact-submit {
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contant_konum_buton {
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    float: left;
    position: relative;
    background-color: #B59556;
    text-decoration: none;
    color: #fff;
    border-radius: 10px;
    letter-spacing: 1px;
}

.contact-map-section {
    margin-top: 60px;
}

.contact-map-section .section-header {
    text-align: center;
    margin-bottom: 30px;
}

.contact-map-section .section-header h2 {
    font-size: 32px;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.contact-map-section .section-header p {
    font-size: 16px;
    color: var(--text-light);
}

.contact-map {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-map iframe {
    width: 100%;
    height: 450px;
    border: none;
}

/* Contact Page Responsive */
@media (max-width: 968px) {
    .contact-page-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info-modern {
        border-radius: 12px;
    }

    .contact-modern-item {
        padding: 25px 20px;
        flex-direction: column;
        text-align: center;
    }

    .contact-modern-icon-wrapper {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .contact-modern-content {
        text-align: center;
    }

    .contact-info-cards {
        grid-template-columns: 1fr;
    }


    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-page {
        padding: 40px 0;
    }

    .contact-info-section .section-header h2,
    .contact-form-section .section-header h2,
    .contact-map-section .section-header h2 {
        font-size: 28px;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }

    .contact-modern-item {
        padding: 20px 15px;
    }

    .contact-modern-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .contact-modern-content h3 {
        font-size: 18px;
    }

    .contact-modern-main {
        font-size: 14px;
    }

    .contact-info-card {
        padding: 25px 20px;
    }

    .contact-social-section {
        padding: 25px 20px;
    }
}

/* Bayilik Page Styles */
.bayilik-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.bayilik-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 50px 0 40px;
    flex-wrap: wrap;
}

.bayilik-tab-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: var(--white);
    border: 2px solid rgba(181, 149, 86, 0.2);
    border-radius: 10px;
    color: var(--text-dark);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.bayilik-tab-btn i {
    font-size: 18px;
    color: var(--primary-color);
}

.bayilik-tab-btn:hover {
    border-color: var(--primary-color);
    background: rgba(181, 149, 86, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(181, 149, 86, 0.15);
}

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

.bayilik-tab-btn.active i {
    color: var(--white);
}

.bayilik-tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

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

/* Locations Tab */
.locations-container {
    margin-top: 40px;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.location-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(181, 149, 86, 0.15);
}

.location-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

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

.location-content {
    padding: 30px;
}

.location-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.location-header h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-color);
    margin: 0;
}

.location-badge {
    padding: 6px 15px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.location-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-dark);
    font-size: 14px;
    text-decoration: none;
}

.location-item i {
    color: var(--primary-color);
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.location-item a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

.location-map {
    margin-top: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.location-map iframe {
    width: 100%;
    height: 200px;
    border: none;
}






.bayi_contact_item {
    display: flex;
    align-items: center;
    padding: 20px 0px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
    background: var(--white);
}

.bayi_contact_item:last-child { border-bottom: none; }

.bayi_contact_icon_wrapper {
    position: relative;
    margin-right: 10px;
    flex-shrink: 0;
    z-index: 1;
}

html#sag .bayi_contact_icon_wrapper{ margin-left: 10px; margin-right: 0px; }

.bayi_contact_icon {
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(181, 149, 86, 0.2);
}

.bayi_contact_content { flex: 1; z-index: 1;}

.bayi_contact_content h3 {
    line-height: 1;
    font-size: 17px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0px;
    text-transform: capitalize;
    padding-bottom: 5px;
    border-bottom: none;
}

.bayi_contact_main {
    font-size: 16px;
    color: var(--text-color);
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 5px;
    display: block;
}

.bayi_contact_main a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.bayi_contact_main a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}






/* Application Form Tab */
.application-form-container {
    margin-top: 40px;
}

.application-form-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.bayilik-form {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--dark-color);
    font-weight: 600;
    font-size: 14px;
}

.form-group .required {
    color: #e74c3c;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(181, 149, 86, 0.2);
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--white);
    color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(181, 149, 86, 0.1);
}

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

.checkbox-group {
    margin-bottom: 30px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.6;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
    cursor: pointer;
}

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

.checkbox-label a:hover {
    text-decoration: underline;
}

.form-submit {
    margin-top: 30px;
}

.form-submit .btn-primary {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.application-benefits {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: fit-content;
}

.application-benefits h4 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(181, 149, 86, 0.2);
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.benefits-list li {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.benefits-list li i {
    color: var(--primary-color);
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.benefits-list li strong {
    display: block;
    color: var(--dark-color);
    font-size: 16px;
    margin-bottom: 5px;
}

.benefits-list li p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Reviews Tab */
.reviews-container {
    margin-top: 40px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.review-card {
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(181, 149, 86, 0.15);
}

.review-header {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(181, 149, 86, 0.1);
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    flex-shrink: 0;
}

.review-info {
    flex-grow: 1;
}

.review-info h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-color);
    margin: 0 0 5px 0;
}

.review-location {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

.review-rating {
    display: flex;
    gap: 3px;
    flex-shrink: 0;
}

.review-rating i {
    color: #ffc107;
    font-size: 16px;
}

.review-content {
    margin-bottom: 20px;
}

.review-content p {
    color: var(--text-dark);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

.review-date {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 13px;
}

.review-date i {
    color: var(--primary-color);
}

/* Bayilik Page Responsive */
@media (max-width: 1200px) {
    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 968px) {
    .bayilik-tabs {
        flex-direction: column;
        gap: 10px;
    }

    .bayilik-tab-btn {
        width: 100%;
        justify-content: center;
    }

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

    .application-form-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .bayilik-section {
        padding: 60px 0;
    }

    .bayilik-form,
    .application-benefits {
        padding: 25px;
    }

    .location-content {
        padding: 20px;
    }

    .review-card {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .bayilik-tab-btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    .bayilik-tab-btn i {
        font-size: 16px;
    }

    .location-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .form-submit .btn-primary {
        padding: 12px;
        font-size: 14px;
    }
}
