 /* --- CSS VARIABLES (FROM JSON) --- */
 :root {
     --primary-color: #000000;
     --secondary-color: #333333;
     --accent-color: #f8c513;
     /* Turuncu */
     --highlight-color: #FFC107;
     --bg-color: #FFFFFF;
     --surface-color: #F9F9F9;
     --footer-bg: #1A1A1A;
     --text-light: #FFFFFF;
     --font-main: 'Open Sans', sans-serif;
 }

 /* --- RESET & BASE STYLES --- */
 * {
     box-sizing: border-box;
     margin: 0;
     padding: 0;
 }

 body {
     font-family: var(--font-main);
     color: var(--secondary-color);
     line-height: 1.6;
     background-color: var(--bg-color);
 }
.tx-color-accent{
    color: var(--accent-color) !important;
}
 a {
     text-decoration: none;
     color: inherit;
     transition: 0.3s;
 }

 ul {
     list-style: none;
 }

 img {
     max-width: 100%;
     display: block;
 }

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

 .btn {
     display: inline-block;
     padding: 12px 24px;
     border-radius: 4px;
     font-weight: 600;
     cursor: pointer;
     text-align: center;
     border: 2px solid transparent;
 }

 .btn-primary {
     background-color: var(--accent-color);
     color: var(--text-light) ;
     transition: 0.2s all ease;
 }

 .btn-primary:hover {
     color: var(--text-light) !important;

     background-color: #d66e15;
 }

 .btn-outline {
     border-color: var(--text-light);
     color: var(--text-light);
     background: transparent;
 }

 .btn-outline:hover {
     background: rgba(255, 255, 255, 0.2);
 }

 /* --- HEADER --- */
 header {
     background: var(--bg-color);
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
     position: sticky;
     top: 0;
     z-index: 1000;
 }

 .header-inner {
     display: flex;
     justify-content: space-between;
     align-items: center;
     height: 80px;
     padding: 12px 24px !important;
 }

 .logo img {
     height: 50px;
     /* Logo height adjustment */
     width: auto;
 }

 .nav-menu {
     display: flex;
     gap: 30px;
 }

 .nav-menu a {
     font-weight: 600;
     color: var(--secondary-color);
     font-size: 15px;
 }

 .nav-menu a:hover {
     color: var(--accent-color);
 }

 /* --- HERO SECTION --- */
 .hero {
     position: relative;
     background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
     /* Placeholder mechanic image */
     background-size: cover;
     background-position: center;
     height: 600px;
     display: flex;
     align-items: center;
     color: var(--text-light);
     z-index: 0;
 }
 .hero .overlay{
     position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.24);
    z-index: 1;
 }
 .hero-content .img{
    position: absolute;
    top: 0;
    z-index: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
 }

 .hero-content {
    width: 100%;
    height: 100%;
    margin-inline: auto;
    display: flex !important;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

 .hero h1 {
    z-index: 2;
     font-size: 48px;
     font-weight: 800;
     margin-bottom: 20px;
     line-height: 1.2;
 }
 /* Swiper kontroller */
.hero .swiper-pagination,
.hero .swiper-button-prev,
.hero .swiper-button-next {
    z-index: 3;
    --swiper-theme-color: var(--accent-color);
}
.hero .btn{
    z-index: 2;
}
 .hero p {
    z-index: 2;
    font-size: 20px;
     margin-bottom: 30px;
     opacity: 0.9;
 }

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

 /* --- FEATURES GRID --- */
 .features {
     padding: 80px 0;
     background: var(--bg-color);
 }
 .features .section-header{
    text-align: center;
 }

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

 .feature-item {
     text-align: center;
     padding: 20px;
     transition: transform 0.3s;
 }

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

 .feature-icon {
     font-size: 40px;
     color: var(--accent-color);
     margin-bottom: 20px;
 }

 .feature-item h3 {
     margin-bottom: 15px;
     font-size: 18px;
     font-weight: 700;
 }

 .feature-item p {
     font-size: 14px;
     color: #666;
 }

 /* --- ABOUT SECTION --- */
 .about {
     padding: 80px 0;
     background-color: var(--surface-color);
 }

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

 .about-img img {
     border-radius: 8px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
 }

 .about-text h2 {
     font-size: 32px;
     margin-bottom: 20px;
     color: var(--primary-color);
 }

 .about-text p {
     margin-bottom: 25px;
     color: #555;
 }

 .text-link {
     color: var(--accent-color);
     font-weight: 700;
     display: inline-flex;
     align-items: center;
     gap: 5px;
 }

 /* --- SERVICES TABS --- */
 .services {
     padding: 80px 0;
     text-align: center;
 }

 .section-header {
     margin-bottom: 50px;
 }

 .section-header h2 {
     font-size: 36px;
     margin-bottom: 10px;
 }

 .section-header p {
     color: #666;
     font-size: 18px;
 }

 .tabs-nav {
     display: flex;
     justify-content: center;
     gap: 20px;
     margin-bottom: 40px;
 }

 .tab-btn {
     padding: 12px 30px;
     background: #eee;
     border: none;
     border-radius: 30px;
     font-size: 16px;
     font-weight: 600;
     cursor: pointer;
     transition: 0.3s;
 }

 .tab-btn.active {
     background: var(--accent-color);
     color: white;
 }
 .center{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
 }
 .btn-accent{
        padding: 12px 30px;
     background: var(--accent-color);
     color: white;
     border: none;
     border-radius: 30px;
     font-size: 16px;
     font-weight: 600;
     cursor: pointer;
     transition: 0.3s;
 
 }

 .tab-content {
     display: none;
 }

 .tab-content.active {
     display: grid;
 }

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

 .service-card {
     background: white;
     padding: 30px;
     border: 1px solid #eee;
     border-radius: 8px;
     transition: 0.3s;
 }

 .service-card:hover {
     border-color: var(--accent-color);
     box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
 }

 .service-card i {
     font-size: 35px;
     color: var(--secondary-color);
     margin-bottom: 20px;
 }

 /* --- STATS BAR --- */
 .stats-bar {
     background-color: var(--primary-color);
     color: white;
     padding: 60px 0;
 }

 .stats-grid {
     display: flex;
     justify-content: space-around;
     flex-wrap: wrap;
     text-align: center;
 }

 .stat-item h3 {
     font-size: 48px;
     font-weight: 800;
     color: var(--accent-color);
     margin-bottom: 5px;
 }

 .stat-item p {
     font-size: 16px;
     opacity: 0.8;
 }

 /* --- MAP / DEALERS --- */
 .dealers {
     padding: 80px 0;
     text-align: center;
 }

 .map-placeholder {
     background: #eee;
     height: 400px;
     border-radius: 8px;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-top: 30px;
     position: relative;
     background-image: url('https://images.unsplash.com/photo-1524661135-423995f22d0b?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
     background-size: cover;
 }

 .map-overlay {
     background: rgba(255, 255, 255, 0.9);
     padding: 30px;
     border-radius: 8px;
 }

 /* --- REFERENCES --- */
 .references {
     padding: 50px 0;
     background: var(--surface-color);
     border-top: 1px solid #eee;
 }

 .ref-logos {
     display: flex;
     justify-content: center;
     gap: 50px;
     flex-wrap: wrap;
     align-items: center;
     opacity: 0.6;
 }

 .ref-logos h3 {
     width: 100%;
     text-align: center;
     margin-bottom: 30px;
     color: #999;
     font-size: 16px;
     text-transform: uppercase;
     letter-spacing: 1px;
 }

 /* --- FOOTER --- */
 footer {
     background-color: var(--footer-bg);
     color: #ccc;
     padding: 60px 0 20px;
 }

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

 .footer-col h4 {
     color: white;
     margin-bottom: 20px;
     font-size: 18px;
 }

 .footer-col ul li {
     margin-bottom: 10px;
 }

 .footer-col ul li a:hover {
     color: var(--accent-color);
 }

 .copyright {
     border-top: 1px solid #333;
     padding-top: 20px;
     text-align: center;
     font-size: 14px;
 }
.copyright a{
    font-weight: bold;
}
 .footer-logo {
     max-width: 150px;
     margin-bottom: 20px;
 }
 .page-header{
    height: 200px;
    width: 100%;
    position: relative;
 }
 .page-header .bg{
    position: absolute;
    z-index: 1;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: green;
 }
 .page-header .page-header-content{
    position: absolute;
    z-index: 2;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
 }
 .page-header .page-header-content h2{
    font-size: 2rem;
    color: #fff;
    font-weight: bold;
 
}
.bg-white{
    background-color: #fff;
}
.misyon-vizyon-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    gap: 2rem;
    margin-top: 3rem;
}
.misyon-vizyon-grid .mv-item{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    text-align: center;
    background-color: #F9F9F9;
    padding: 24px;
    border-radius: 12px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.mt-3{
    margin-top: 3rem !important;
}
.misyon-vizyon-grid .mv-item i{
    color: var(--accent-color);
    font-size: 3rem;
}
.misyon-vizyon-grid .mv-item .title{
    font-size: 1.6rem;
    font-weight: bold;
}
.bayilik-form-wrapper {
    max-width: 900px;
    margin: 60px auto;
    padding: 40px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    font-family: 'Open Sans', sans-serif;
}

.bayilik-form-wrapper h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #111;
}

.bayilik-form-wrapper p {
    font-size: 14px;
    margin-bottom: 30px;
    color: #666;
}

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

.bayilik-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 14px;
}

.bayilik-form input,
.bayilik-form textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 14px;
    transition: all 0.3s ease;
}

.bayilik-form input:focus,
.bayilik-form textarea:focus {
    border-color: #d40000;
    outline: none;
    box-shadow: 0 0 0 2px rgba(212,0,0,0.1);
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    background: var(--accent-color);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
}

.submit-btn:hover {
    background: #d7a306;
}

/* Mobil uyum */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .bayilik-form-wrapper {
        padding: 25px;
        margin: 30px 15px;
    }
}
 /* Mobile Responsive */
 @media (max-width: 768px) {
     .header-inner {
         flex-direction: column;
         height: auto;
         padding: 15px 0;
     }

     .nav-menu {
         flex-direction: column;
         gap: 10px;
         text-align: center;
         margin: 15px 0;
     }

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

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

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

     .stat-item {
         width: 50%;
         margin-bottom: 30px;
     }
 }