:root {
    --bg-color: #0a0b10;
    --card-bg: #161b22;
    --primary-color: #ff003c;
    --secondary-color: #8b0000;
    --text-color: #e6edf3;
    --accent-color: #ff4d4d;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Michroma Uygulaması */
h1, h2, .logo, .btn-nav, .contact-form button {
    font-family: 'Michroma', sans-serif !important;
    text-transform: uppercase; /* Michroma genellikle büyük harfle daha şık durur */
    letter-spacing: 1px;
}
/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10%;
    background: rgba(10, 11, 16, 0.8);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 0, 60, 0.1);
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 2px;
}

.logo span {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links li a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 0.9rem;
    transition: 0.3s;
}

.nav-links li a:hover {
    color: var(--primary-color);
}

.btn-nav {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    padding: 8px 20px;
    border-radius: 5px;
    color: white !important;
    font-weight: bold;
}

/* Hamburger Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1100;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    transition: 0.3s ease;
    border-radius: 2px;
}

.menu-toggle.open .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.menu-toggle.open .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.open .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 0 20px;
    overflow: hidden;
}

.ascii-car {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: monospace;
    font-size: 1.2rem;
    line-height: 1.2;
    color: rgba(255, 0, 60, 0.63);
    white-space: pre;
    z-index: 1;
    pointer-events: none;
    user-select: none;
    animation: float 6s infinite ease-in-out;
}

.ascii-car.inline {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    font-size: 0.7rem;
    color: rgba(214, 14, 58, 0.15);
    margin: 30px auto;
    animation: float-inline 4s infinite ease-in-out;
}

@keyframes float-inline {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(15px); }
}

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

.ascii-car.background {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: monospace;
    font-size: 1rem;
    line-height: 1.2;
    color: rgba(107, 32, 50, 0.767);
    white-space: pre;
    z-index: -1;
    pointer-events: none;
    user-select: none;
    animation: float-bg 5s infinite ease-in-out;
}

@keyframes float-bg {
    0%, 100% { transform: translate(-50%, -50%); }
    50% { transform: translate(-48%, -52%); }
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.highlight {
    color: var(--primary-color);
    text-shadow: 0 0 20px rgba(255, 0, 60, 0.6);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #8b949e;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btns a {
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: bold;
    margin: 0 10px;
    transition: 0.3s;
    display: inline-block;
}

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

.btn-secondary {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-primary:hover {
    box-shadow: 0 0 20px var(--primary-color);
    transform: translateY(-3px);
}

/* Glow Effect */
.glow-circle {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 0, 60, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    filter: blur(50px);
    animation: float 6s infinite ease-in-out;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, -40px); }
}

/* Features Section */
.features {
    padding: 100px 10%;
    text-align: center;
}

.features h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
}

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

.feature-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
    cursor: pointer;
}

.feature-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.feature-card .icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

/* Page Content Styles */
.page-content {
    padding: 120px 10% 60px;
    text-align: center;
    min-height: 80vh;
}

.page-content h1 {
    font-size: 3rem;
    margin-bottom: 40px;
    color: var(--primary-color);
    text-transform: uppercase;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    color: #8b949e;
}

.contact-container {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: var(--card-bg);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255, 0, 60, 0.2);
}

.contact-form input, .contact-form textarea {
    padding: 15px;
    background: #0a0b10;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 5px;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: 0.3s;
}

.contact-form input:focus, .contact-form textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(255, 0, 60, 0.3);
}

/* Yeni hali */
.contact-form button {
    cursor: pointer;
    border: none;
    font-family: 'Rajdhani', sans-serif;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

footer {
    text-align: center;
    padding: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #8b949e;
    font-size: 0.9rem;
}

/* Chiptuning Section Styling */
.chiptuning-container {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    color: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

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

/* Filtreleme Alanı */
.tuning-filters {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 40px;
    align-items: flex-end;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-group label {
    font-size: 0.9rem;
    color: #ccc;
}

.filter-group select {
    background: #1a1a1a;
    color: #fff;
    border: 1px solid #444;
    padding: 10px;
    border-radius: 5px;
    outline: none;
    transition: border 0.3s;
}

.filter-group select:focus {
    border-color: var(--highlight-color, #00d4ff);
}

/* Tablo Tasarımı */
.table-wrapper {
    overflow-x: auto;
}

.tuning-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    overflow: hidden;
}

.tuning-table th, .tuning-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tuning-table th {
    background: rgba(255, 255, 255, 0.1);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.tuning-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.05);
    transition: 0.3s;
}

.stage-val {
    color: #00d4ff;
    font-weight: bold;
}

/* Responsive Ayar */
@media (max-width: 768px) {
    .tuning-filters {
        grid-template-columns: 1fr 1fr;
    }
}

/* Tam Sayfa Kaydırma (Snap Scroll) Altyapısı */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
}

.full-page {
    height: 100vh;
    width: 100%;
    scroll-snap-align: start;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.tuning-selector-container, .pc-selector-container {
    padding: 0 !important;
}

.selector-card, .pc-card {
    margin: auto;
    max-height: 90vh;
    overflow-y: auto;
}

.hero {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    -ms-overflow-style: none;
    scrollbar-width: none;
    scroll-behavior: smooth;
}

html::-webkit-scrollbar, 
body::-webkit-scrollbar {
    display: none;
}

body {
    scroll-snap-type: y mandatory; 
    overflow-x: hidden; 
}

.full-page {
    height: 100dvh; 
    width: 100%;
    scroll-snap-align: start; 
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.selector-card, .pc-card {
    margin: auto;
    width: 90%;
    max-width: 1100px;
    max-height: 90dvh; 
    overflow-y: auto; 
    padding: 20px;
}

.selector-card::-webkit-scrollbar, 
.pc-card::-webkit-scrollbar {
    display: none;
}

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

.tuning-selector-container, .pc-selector-container {
    padding: 0 !important;
}

/* Mobile Responsive Overrides */
@media (max-width: 768px) {
    nav {
        padding: 15px 5%;
        justify-content: space-between;
        flex-direction: row; 
    }

    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(10, 11, 16, 0.95);
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: center;
        gap: 25px;
        transition: 0.4s ease-in-out;
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 0;
        text-align: center;
    }

    .nav-links li a {
        font-size: 1.1rem;
        display: block;
        width: 100%;
        padding: 10px 0;
    }

    .hero-content h1 {
        font-size: 2.2rem !important;
        line-height: 1.2;
        letter-spacing: 2px;
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 30px;
        padding: 0 10px;
    }

    .hero-btns {
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .hero-btns a {
        margin: 0;
        width: 80%;
        max-width: 280px;
        text-align: center;
    }

    .glow-circle {
        width: 250px;
        height: 250px;
    }

    .full-page {
        overflow-y: auto; 
    }

    .selector-card, .pc-card {
        width: 95%;
        padding: 15px;
        max-height: 95dvh;
    }

    .selector-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .pc-product-container {
        grid-template-columns: 1fr;
        padding: 15px !important;
        margin: 10px auto !important;
        gap: 20px;
    }

    .pc-main-image {
        height: auto;
        max-height: 300px;
    }

    .pc-title {
        font-size: 1.3rem;
    }

    .current-price {
        font-size: 1.6rem;
    }

    .pc-compatibility-box {
        padding: 15px !important;
        width: 100%;
        box-sizing: border-box;
    }

    #pc-compatibility-text {
        font-size: 0.9rem;
        margin-bottom: 10px;
        line-height: 1.4;
    }

    .pc-socket-code {
        font-size: 0.85rem !important;
        margin-bottom: 12px;
    }

    .btn-add-to-cart {
        font-size: 1rem !important;
        padding: 12px 10px !important;
        width: 100% !important;
        white-space: normal;
        line-height: 1.2;
        display: block;
        box-sizing: border-box;
    }

    /* Application Form Grid Mobile Fix */
    .form-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }

    .modal-content {
        width: 95%;
        padding: 20px;
    }

    .pc-setup-card {
        padding: 15px !important;
    }

    .setup-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
        margin-bottom: 12px;
    }

    .setup-val {
        text-align: left;
    }

    .pc-benefits-strip {
        flex-direction: column;
        gap: 25px;
        text-align: center;
        align-items: center;
        padding: 20px 0;
    }

    .benefit-item {
        width: 100%;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px;
        margin-bottom: 10px;
    }

    .benefit-icon {
        font-size: 1.8rem;
    }

    .pc-bottom-btns {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .btn-secondary-pc {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem !important;
    }
    
    .selector-card, .pc-card {
        padding: 10px;
    }
}
.svg-turkiye-haritasi {
  max-width: 1140px;
  margin: 0 auto;
  text-align: center;
}
.svg-turkiye-haritasi svg {
  width: 100%;
  height: auto;
}
.il-isimleri {
  position: absolute;
  z-index: 2;
}
.il-isimleri div {
  font-family: 'Open Sans';
  display: inline-block;
  background: #222;
  color: #fff;
  padding: 8px 16px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

#svg-turkiye-haritasi path {
  cursor: pointer;
}
#svg-turkiye-haritasi path:hover {
  fill: #666;
}
#bolge-1 g path{
  fill:#87cdde
}
#bolge-2 g path{
  fill:#ac93a7
}
#bolge-3 g path{
  fill:#ffb380
}
#bolge-4 g path{
  fill:#cccccc
}
#bolge-5 g path{
  fill:#decd87
}
#bolge-6 g path{
  fill:#de8787
}
#bolge-7 g path{
  fill:#aade87
}

/* Blog Preview Styles */
.blog-preview-section {
    padding: 80px 20px;
    background: var(--bg-dark);
    display: flex;
    justify-content: center;
}
.blog-container {
    width: 100%;
    max-width: 1200px;
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}
.blog-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #333;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}
.blog-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.2);
}
.blog-image-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}
.blog-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}
.blog-card:hover .blog-image-wrapper img {
    transform: scale(1.1);
}
.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent-color);
    color: white;
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
}
.blog-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: left;
    color: var(--text-light);
}
.blog-date {
    font-size: 0.8rem;
    color: var(--text-dim);
    margin-bottom: 10px;
}
.blog-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
    height: 2.8em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.blog-excerpt {
    font-size: 0.9rem;
    color: var(--text-dim);
    margin-bottom: 20px;
    line-height: 1.6;
    height: 3.2em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.btn-blog-detail {
    margin-top: auto;
    background: var(--accent-color);
    color: white;
    text-align: center;
    padding: 12px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
    font-size: 0.9rem;
}
.btn-blog-detail:hover {
    background: #ff1a1a;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.4);
}
.no-blogs {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--text-dim);
    font-style: italic;
}
