
/* Genel Stiller */
body {
      font-family: 'Inter', sans-serif;


    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased; /* Fontun daha pürüzsüz görünmesini sağlar */
    -moz-osx-font-smoothing: grayscale;
}
a {
      font-family: 'Inter', sans-serif;


}

.header {
    background: #000;
    color: #fff;
    padding: 2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-weight: bold;
    font-size: 1.4rem;
    letter-spacing: 1px;
}

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

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #ccc;
}


.hero {
    background: url(/assets/images/bg2.png);
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
    padding: 80px 10%;
    display: flex;
    align-items: center;
    min-height: 70vh;
}
.hero-content p {
    max-width: 380px;
    width: 100%;
}
.hero-content {
    flex: 1;
    padding-left: 90px;
}
.hero-image {
    flex: 1;
    text-align: right;
}
.hero-image img {
    max-width: 100%;
    border-radius: 12px;
}
.hero h1 {
    font-size: 72px;
    font-weight: 900 !important;
    line-height: 1.2;
    letter-spacing: 4px;
    margin: 20px 0px !important;
}

.btn-outline {
    border: 2px solid #fff;
    color: #fff;
    padding: 10px 25px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    display: inline-block;
    margin-top: 20px;
    transition:
        background 0.3s,
        color 0.3s;
}

.btn-outline:hover {
    background: #fff;
    color: #000;
}
.section-header h2 {
    font-size: 32px;
    font-weight: 900;
}
/* Bölüm Standartları */
section {
    padding: 80px 10%;
}
h2,
p {
    margin: 0px !important;
}

/* Hakkımızda */
.about {
    display: flex;
    gap: 50px;
    align-items: center;
}
.about-text {
    flex: 1;
}
.about-text h2{
    font-size: 32px;
    margin-bottom: 20px !important;
    font-weight: 900;
}
.about-image {
    flex: 1;
}
.about-image img {
    width: 100%;
}

/* Ürünler */
.products {
    background-color: #f9f9f9;
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}


.product-card img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    margin-bottom: 15px;
}

/* İletişim & Footer */
footer {
    background: #000;
    color: #fff;
    padding: 60px 10% 20px;
}
.contact-info h2{

}
.contact-info2{
    display: flex;
    flex-direction: column;
}
.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    font-size: 0.8rem;
    color: #888;
}
@media(min-width:769px){
    .mobile{
        display: none !important;
    }
}
.leftFlex{
    display: flex;
    gap: 20px;
    align-items: center;
}
/* Mobil Uyumluluk */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 15px;
    }
    .desktop{
        display: none !important;
    }
    .news-detail-container{
        grid-template-columns: 1fr !important;
    }
    .hero,
    .about,
    .contact-info {
        flex-direction: column;
        text-align: center;
    }
    .hero-image,
    .about-image {
        order: 1;
    }
    .contact-info {
        grid-template-columns: 1fr;
    }
}

/* Galeri Izgarası */
.gallery-section {
    padding: 50px 10%;
    text-align: center;
}
.gallery-grid {
    display: grid;
    /* Sabit 3 kolon oluşturur */
    grid-template-columns: repeat(3, 1fr); 
    gap: 20px;
    margin-top: 30px;
}

/* Mobilde görsellerin çok küçülmemesi için (Opsiyonel) */
@media (max-width: 768px) {
    .gallery-grid {
        /* Tablet ve mobilde 1 veya 2 kolona düşmesi kullanıcı deneyimi için daha iyidir */
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Görselin bozulmasını önler */
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.1); /* Üzerine gelince büyüme efekti */
}

/* Lightbox Tasarımı */
.lightbox {
    display: none;
    position: fixed;
    z-index: 3000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.lightbox-content {
    max-width: 80%;
    max-height: 80%;
    border-radius: 5px;
    animation: zoomIn 0.3s ease;
}

.close-btn {
    position: absolute;
    top: 30px;
    right: 50px;
    color: white;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
}

@keyframes zoomIn {
    from {
        transform: scale(0.7);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}
.product-slider-slick {
    margin-top: 30px;
}
.product-slider-slick .product-card {
    outline: none;
    margin-right: 30px;
}
.products h3{
    font-size: 32px;
    margin: 5px 0px !important;
}
/* Slick Noktaları (Dots) Özelleştirme */
.slick-dots li button:before {
    font-size: 12px;
    color: #000;
}
.slick-dots li.slick-active button:before {
    color: #000;
}

.news-section {
    padding: 150px 10%;
    background: #fff;
    text-align: center;
}

.news-section h2 {
    font-weight: bold;
    margin-bottom: 30px !important;
    font-size: 32px;
    font-weight: 900;
}

.news-item {
    padding: 0 15px; /* Kartlar arası boşluk */
}

.news-card {
    text-align: left;
    background: #fff;
}

.news-image img {
    width: 100%;
    height: 290px;
    object-fit: cover;
    margin-bottom: 20px;
}

.news-content h3 {
    font-size: 1.5rem;
    margin-top: 0px !important;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px !important;
}
.news-content{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.news-content p {
    font-size: 13px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px !important;
    overflow: hidden;
    text-align: center;
}

.more-info {
    display: inline-block;
    padding: 8px 25px;
    border: 1px solid #333;
    color: #333;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: 0.3s;
}

.more-info:hover {
    background: #000;
    color: #fff;
}

/* Slick Okları Özelleştirme */
.slick-prev:before,
.slick-next:before {
    color: #000; /* Ok rengi siyah */
}

.reference-section {
    background-color: #000;
    color: #fff;
    padding: 80px 10%;
}
.mapbox-style {
    width: 84%; 
    height: 300px;

}


.contactbtn{
    border: 1px solid white;
    padding: 10px 30px;
    border-width: 2px;
    border-style: solid;
    border-color: rgb(255, 255, 255);
    border-image: initial;
    padding: 10px 25px;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s, color 0.3s;
}
.contactbtn:hover{
    background: #fff;
    color: #000;
}
.reference-container {
    display: flex;
    align-items: center;
    gap: 40px;
    margin: 0 auto;
}

.reference-text {
    flex: 0 0 450px;
}

.ref-subtitle {
    color: white;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.reference-text h2 {
    font-size: 2.5rem;
    line-height: 1.1;
    color: #E42128;
    margin-bottom: 20px !important;
}

/* GRID SİSTEMİ: Üstte 4, Altta 2 */
.reference-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Toplam 4 sütun */
    gap: 15px;
}

.logo-box {
    background: #2a2a2a; /* Görseldeki koyu gri kutu rengi */
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px;
    transition: 0.3s;
}

.logo-box img {
    max-width: 100%;
    max-height: 50px;
    filter: brightness(0) invert(1); /* Logoları beyaza çevirir */
    opacity: 0.8;
}

/* Alt sıradaki 2 kutunun her birinin 2 sütun kaplaması (4/2=2) */
.box-wide {
    grid-column: span 2;
}

.logo-box:hover {
    background: #333;
}

/* MOBİL UYUMLULUK */
@media (max-width: 1024px) {
    .reference-container {
        flex-direction: column;
        text-align: center;
    }
    .reference-grid {
        grid-template-columns: repeat(2, 1fr); /* Mobilde 2x3 düzenine döner */
        width: 100%;
    }
    .box-wide {
        grid-column: span 1; /* Mobilde genişliği normale döner */
    }
}

.contact-header{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 40px 0px;
}
.contact-header h2{
    margin-bottom: 20px !important;
}
.contact-btn{
    margin: 20px 0px;
    border: 2px solid #fff;
    color: white;
    padding: 10px 25px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    display: inline-block;
    margin-top: 20px;
    transition: background 0.3s, color 0.3s;
    cursor: pointer;
}
.contact-btn:hover {
    background: white !important;
    color: black !important;
}

/* Genel */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}
/* Hamburger default (kapalı) */
.hamburger span {
    width: 26px;
    height: 2px;
    background: #fff; /* kapalıyken beyaz */
    transition: 0.3s;
}

/* Menü açıkken hamburger siyah olsun */
.hamburger.active span {
    background: #000;
}

/* X animasyonu */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

@media (max-width: 992px) {
    .hamburger {
        display: flex;
    }
    section {
        padding: 30px 10%;
    }
    .hero {
        padding: 0px 10%;
        background-position: top;
    }
    .logo img{
        max-width: 100px;
    }
    .reference-section {
        padding: 30px 10%;
    }
    .news-section {
        padding: 30px 10%;
    }
    .reference-text {
        flex: 0 0 0px;
    }
    footer {
        padding: 10px 10% 20px;
    }
    #map{
        width: 100%;
    }
    .reference-text h2{
        font-size: 20px;
        margin-bottom: 10px !important;
    }
    .header {
        padding: 1rem 5%;
    }
    .hero-image img{
        max-width: 100%;
    }
    .hero-content{
        padding-left: 0px;
        margin-top: 40px;

    }
    .hero h1 {
        font-size: 25px;
        margin: 10px;
        margin: 6px 0px !important;
    }
    .nav {
        position: fixed;
        inset: 0;
        background: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        transform: translateX(100%);
        transition: transform 0.4s ease;
        z-index: 1000;
    }

    .nav.active {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        gap: 32px;
        text-align: center;
    }

    .nav-list a {
        font-size: 24px;
        font-weight: 500;
        color: #000;
    }
}

/* Hamburger → X animasyonu */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}
.contact-info p{
    display: flex;
    align-items: center;
}
.contact-info p img{
    width: 15px;
    height: 15px;
    margin-right: 8px;
}
.contact-info a{
    color: white;
    text-decoration: none;
}


/* ===============================
   CONTACT PAGE
================================ */

/* Hero */
.contact-hero {
    background: black;
    padding: 20px 20px;
    text-align: center;
    color: #fff;
}

.contact-hero-content span {
    display: block;
    color: #9c9c9c;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.contact-hero-content h1 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 20px;
}

.contact-hero-content p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.7;
    color: #cfcfcf;
}

/* Contact Section */
.contact-section {
    padding: 100px 20px;
    background: #fff;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

/* Info */
.contact-info h2 {
    font-size: 32px;
    margin-bottom: 30px;
}

.info-item {
    margin-bottom: 25px;
}

.info-item strong {
    display: block;
    font-size: 14px;
    color: #999;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
#map{
    width: 100%;
}
.info-item p {
    font-size: 16px;
    color: #333;
}

/* Form */
.contact-form h2 {
    font-size: 32px;
    margin-bottom: 30px;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    border: 1px solid #ddd;
    background: #fafafa;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #000;
    background: #fff;
}

/* Button */
.contact-form .btn-outline {
    margin-top: 10px;
    padding: 14px 40px;
    border: 1px solid #000;
    background: transparent;
    color: #000;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form .btn-outline:hover {
    background: #000;
    color: #fff;
}

/* Map */
.map-section {
    width: 100%;
    margin-top: 80px;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contact-hero-content h1 {
        font-size: 38px;
    }
}

@media (max-width: 576px) {
    .contact-hero {
        padding: 80px 20px;
    }

    .contact-hero-content h1 {
        font-size: 30px;
    }
}


/* ===============================
   NEWS DETAIL
================================ */

.news-detail-hero {
    background: #0f0f0f;
    padding: 100px 20px;
    color: #fff;
    text-align: center;
}

.news-detail-hero span {
    display: block;
    font-size: 13px;
    letter-spacing: 2px;
    color: #9c9c9c;
    margin-bottom: 10px;
}

.news-detail-hero h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.news-detail-hero p {
    font-size: 14px;
    color: #cfcfcf;
}

/* Layout */
.news-detail-section {
    padding: 100px 20px;
    background: #fff;
}

.news-detail-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2.5fr 1fr;
    gap: 60px;
}

/* Content */
.news-detail-content img {
    width: 100%;
    margin-bottom: 30px;
}

.news-detail-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

/* Sidebar */
.news-sidebar {
    border-left: 1px solid #eee;
    padding-left: 30px;
}

.news-sidebar h3 {
    font-size: 22px;
    margin-bottom: 20px;
}

.recent-news {
    list-style: none;
    padding: 0;
    margin: 0;
}
/* ===============================
   RECENT NEWS WITH IMAGE
================================ */

.recent-news li {
    margin-bottom: 25px;
}

.recent-news a {
    display: flex;
    gap: 15px;
    text-decoration: none;
    color: #000;
    transition: all 0.3s ease;
}

.recent-thumb {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    overflow: hidden;
    background: #f3f3f3;
}

.recent-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.recent-content span {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
}

.recent-content small {
    display: block;
    font-size: 12px;
    color: #999;
    margin-top: 6px;
}

/* Hover Effect */
.recent-news a:hover .recent-thumb img {
    transform: scale(1.1);
}

.recent-news a:hover span {
    text-decoration: underline;
}
/* ===============================
   MOBILE: HIDE SIDEBAR
================================ */

@media (max-width: 768px) {
    .news-sidebar {
        display: none;
    }
}

/* ===============================
   NEWS DATE
================================ */

.news-date {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 0px;
}


/* ===============================
   NEWS LIST
================================ */

.news-list-hero {
    background: #0f0f0f;
    color: #fff;
    padding: 100px 20px;
    text-align: center;
}

.news-list-hero span {
    font-size: 13px;
    letter-spacing: 2px;
    color: #9c9c9c;
}

.news-list-hero h1 {
    font-size: 42px;
    margin: 15px 0;
}

.news-list-hero p {
    color: #cfcfcf;
}

/* Grid */
.news-list-section {
    padding: 100px 20px;
    background: #fff;
}

.news-list-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* Card */
.news-list-card {
    transition: all 0.3s ease;
}

.news-list-card a {
    text-decoration: none;
    color: #000;
    display: block;
    height: 100%;
}

.news-list-image {
    height: 220px;
    overflow: hidden;
}

.news-list-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.news-list-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.news-list-content small {
    font-size: 12px;
    color: #999;
}

.news-list-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-top: 0px !important;
    margin-bottom: 10px !important;
}

.news-list-content p {
    font-size: 13px;
    color: rgb(85, 85, 85);
    line-height: 1.6;
    text-align: center;
    margin-bottom: 30px !important;
    overflow: hidden;
}

.read-more {
    display: inline-block;
    margin-top: 15px;
    font-size: 14px;
    font-weight: 500;
}



.news-list-card:hover img {
    transform: scale(1.08);
}

/* Responsive */
@media (max-width: 992px) {
    .news-list-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .news-list-container {
        grid-template-columns: 1fr;
    }

    .news-list-hero h1 {
        font-size: 30px;
    }
}


/* =========================
   PRODUCT GALLERY
========================= */

.product-gallery {
    width: 100%;
    max-width: 620px;
}

/* Ana Görsel */
.main-image {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    background: #f4f4f4;
    border: 1px solid #eee;
}

.main-image img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

/* Hover Zoom */
.main-image:hover img {
    transform: scale(1.05);
}

/* Thumbnail Alanı */
.thumbnails {
    display: flex;
    gap: 14px;
    margin-top: 18px;
}

/* Thumbnail Görseller */
.thumbnails img {
    width: 100px;
    height: 75px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    opacity: 0.55;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

/* Hover */
.thumbnails img:hover {
    opacity: 1;
}

/* Aktif Thumbnail */
.thumbnails img.active {
    opacity: 1;
    border-color: #e30613;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {
    .product-gallery {
        max-width: 100%;
    }
    .product-detail-container {

        flex-direction: column-reverse;
    }
    .main-image img {
        height: 260px;
    }

    .thumbnails img {
        width: 80px;
        height: 60px;
    }
}

.product-detail-container{
    display: flex;
    margin-bottom: 50px;
    gap:50px
}


/* TAB ALANI */
.product-tabs {
    margin-top: 50px;
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

/* TAB BUTONLARI */
.tab-buttons {
    display: flex;
    gap: 10px;
    border-bottom: 2px solid #eee;
    margin-bottom: 25px;
}

.tab-btn {
    background: none;
    border: none;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    color: #666;
    position: relative;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    color: #111;
}

.tab-btn.active {
    color: #E42128;
    font-weight: 600;
}

.tab-btn.active::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #E42128;
    border-radius: 3px 3px 0 0;
}

/* TAB İÇERİK */
.tab-content {
    display: none;
    animation: fadeIn 0.3s e
}
.tab-content {
    display: none;
}

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

/* GENEL ALAN */
.grade-tables {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 50px 0;
}

/* KART */
.grade-table {
    background: linear-gradient(180deg, #ffffff, #f9fbfd);
    border-radius: 16px;
    padding: 24px 22px;
    box-shadow:
        0 10px 25px rgba(0,0,0,0.06),
        inset 0 1px 0 rgba(255,255,255,0.7);
    transition: transform .25s ease, box-shadow .25s ease;
}

.grade-table:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

/* BAŞLIK */
.grade-table h3 {
    font-size: 18px;
    font-weight: 600;
    color: #E42128;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e6edf3;
    letter-spacing: 0.3px;
}

/* TABLO */
.grade-table table {
    width: 100%;
    border-collapse: collapse;
}

/* SATIRLAR */
.grade-table td {
    padding: 10px 6px;
    font-size: 14.5px;
    color: #333;
    border-bottom: 1px dashed #e2e8f0;
}

.grade-table tr:last-child td {
    border-bottom: none;
}

/* SOL / SAĞ */
.grade-table td:first-child {
    color: #555;
}

.grade-table td:last-child {
    text-align: right;
    font-weight: 600;
    color: #111;
}

/* NOT SATIRI */
.grade-table .note {
    font-size: 13px;
    line-height: 1.6;
    color: #666;
    padding-top: 14px;
    text-align: left;
}

/* VURGU */
.grade-table strong {
    color: #E42128;
}

/* MOBİL */
@media (max-width: 1024px) {
    .grade-tables {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .grade-table {
        padding: 20px;
    }
}

/* DROPDOWN */
.has-dropdown {
    position: relative;
}



/* Menü */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 186px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all .25s ease;
    z-index: 999;
    display: block;
}

/* Açılma */
.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Item */
.dropdown li a {
    display: block;
    padding: 10px 18px;
    font-size: 14px;
    color: #333;
    transition: background .2s ease;
}

.dropdown li a:hover {
    background: #f2f6fa;
    color: #0a3d62;
}

/* MOBİL */
@media (max-width: 900px) {
    .dropdown {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        padding-left: 15px;
    }

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

    .has-dropdown > a::after {
        float: right;
    }
}

.lang-switch {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: 20px;
    font-weight: 500;
}

.lang-switch a {
    text-decoration: none;
    color: white;
    font-size: 14px;
}

.lang-switch a.active {
    color: white;
    font-weight: 600;
}

.lang-switch span {
    color: #ccc;
}
.section-header span{
    color:#E42128
}
