/* ============================================================
   MOBİL CSS - RESPONSIVE DÜZELTMELER
   ============================================================ */

/* 1024px ve altı (Tablet) */
@media (max-width: 1024px) {
    .hero-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 42px;
    }
    
    .form-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .counters-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    nav {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
}

/* 768px ve altı (Tablet Küçük / Büyük Telefon) */
@media (max-width: 768px) {
    .top-bar .container {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .top-bar-right {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-content h3 {
        font-size: 16px;
    }
    
    .hero-services-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .section-title h2 {
        font-size: 28px;
    }

    /* ============================================================
       MOBİL HEADER - PROFESYONEL DÜZEN (768px ve altı)
       ============================================================ */

    .top-bar {
        padding: 12px 0;
    }

    .top-bar .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 8px;
        padding: 0 12px;
        text-align: left;
    }

    .top-bar-left {
        flex: 1;
        min-width: 0;
    }

    .top-bar-left .insta-btn {
        font-size: 14px;
        padding: 6px 6px;
        white-space: nowrap;
    }

    .top-bar-right {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 8px;
        flex-shrink: 0;
        flex-wrap: nowrap;
    }

    .top-bar-right a {
        font-size: 14px;
        padding: 8px 12px;
        white-space: nowrap;
    }

    .top-bar-right .btn-teklif-top {
        font-size: 13px;
        padding: 8px 12px;
    }

    .main-header {
        height: 68px;
        min-height: 68px;
        padding: 0;
    }

    .main-header .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        height: 100%;
        padding: 0 12px;
        gap: 8px;
    }

    .main-header .logo {
        flex: 1;
        min-width: 0;
        display: flex;
        align-items: center;
        overflow: hidden;
    }

    .main-header .logo img {
        height: 52px !important;
        width: auto !important;
        max-width: 180px;
        display: block !important;
        margin-left: 0 !important;
        object-fit: contain;
    }

    .main-header nav {
        display: none !important;
    }

    .main-header .header-phone-box {
        flex-shrink: 0;
        display: flex !important;
        align-items: center;
        gap: 4px;
        padding: 6px 10px;
        border-radius: 8px;
        font-size: 13px;
        font-weight: 600;
        white-space: nowrap;
        background: var(--red);
        color: #fff;
        box-shadow: 0 4px 12px rgba(217, 33, 40, 0.25);
        text-decoration: none;
    }

    .main-header .header-phone-box i {
        font-size: 14px;
    }

    .main-header .menu-toggle {
        display: flex !important;
        flex-shrink: 0;
        width: 42px;
        height: 42px;
        align-items: center;
        justify-content: center;
        background: var(--blue);
        color: #fff;
        border-radius: 8px;
        font-size: 22px;
        cursor: pointer;
        border: none;
        transition: all 0.3s ease;
    }

    .main-header .menu-toggle:hover {
        background: var(--red);
        color: #fff;
    }

    .mobile-menu {
        padding: 80px 25px 40px;
        gap: 18px;
        background: var(--blue);
        height: 75vh !important;
    }

    .mobile-menu a {
        font-size: 20px;
        padding: 12px 15px;
        border-radius: 10px;
        text-align: center;
        width: 100%;
        max-width: 320px;
        color: #fff;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .mobile-menu a:hover {
        background: rgba(255, 255, 255, 0.1);
        color: var(--red);
    }

    .mobile-menu .close-btn {
        top: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 30px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
    }
}

/* 640px ve altı (Telefon) - SLIDER DÜZENİ EKLENDİ */
@media (max-width: 640px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .counters-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .counter-item h3 {
        font-size: 36px;
    }
    
    .hero-content h1 {
        font-size: 28px;
    }
    
    .header-phone-box {
        font-size: 14px;
        padding: 8px 16px;
    }
    
    .logo {
        font-size: 20px;
    }
    
    .logo i {
        font-size: 24px;
    }
    
    .form-wrapper {
        padding: 20px;
    }
    
    .form-section {
        margin-top: -30px;
        padding-bottom: 40px;
    }
    
    .main-header {
        height: 70px;
    }
    
    .floating-whatsapp {
        padding: 10px 16px;
        font-size: 13px;
        bottom: 15px;
        left: 15px;
    }
    
    .floating-whatsapp i {
        font-size: 18px !important;
    }
    
    .floating-call {
        bottom: 15px;
        right: 15px;
    }
    
    .floating-call .text {
        font-size: 10px;
        padding: 4px 10px;
    }
    
    .floating-call .number {
        font-size: 12px;
        padding: 8px 12px;
    }
    
    .scroll-top {
        bottom: 80px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    /* ============================================================
       MOBİL SLIDER - RESİM ÜSTTE, YAZILAR ALTTA
       ============================================================ */

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

    .hero .container {
        width: 100%;
        padding: 0 10px;
    }

    .hero-wrapper {
        width: 100%;
        display: block !important;
    }

    .heroSwiper {
        width: 100% !important;
        overflow: hidden;
    }

    .heroSwiper .swiper-wrapper {
        align-items: flex-start;
    }

    .heroSwiper .swiper-slide {
        width: 100% !important;
        flex-shrink: 0;
        height: auto !important;
    }

    .hero-slide-wrapper {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 20px !important;
        width: 100% !important;
    }

    .hero-image {
        order: 1 !important;
        width: 100% !important;
        min-width: 0 !important;
        flex: none !important;
        text-align: center;
    }

    .hero-image img {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        margin: 0 auto !important;
        object-fit: contain !important;
        border-radius: 10px;
    }

    .hero-content {
        order: 2 !important;
        width: 100% !important;
        min-width: 0 !important;
        flex: none !important;
        text-align: center !important;
        padding: 0 5px 35px !important;
    }

    .hero-content .sub-title {
        font-size: 14px !important;
        margin-bottom: 6px !important;
    }

    .hero-content h1 {
        font-size: 27px !important;
        line-height: 1.2 !important;
        margin-bottom: 8px !important;
    }

    .hero-content h3 {
        font-size: 15px !important;
        line-height: 1.4 !important;
        margin-bottom: 10px !important;
    }

    .hero-content > p {
        font-size: 13px !important;
        line-height: 1.6 !important;
        margin-bottom: 18px !important;
    }

    /* ============================================================
       MOBİLDE 3 HİZMET KUTUSU YAN YANA (EV - OFİS - DEPO)
       ============================================================ */

    .hero-services-grid {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 8px !important;
        width: 100% !important;
    }

    .hero-services-grid .service-card {
        min-width: 0 !important;
        padding: 10px 5px !important;
        box-sizing: border-box !important;
        width: 100% !important;
    }

    .hero-services-grid .service-card h4 {
        font-size: 11px !important;
        line-height: 1.2 !important;
        margin: 5px 0 0 !important;
        white-space: nowrap;
    }

    .hero-services-grid .icon-box {
        width: 38px !important;
        height: 38px !important;
        margin: 0 auto !important;
    }

    .hero-services-grid .icon-box i {
        font-size: 16px !important;
    }

    .heroSwiper .swiper-button-next,
    .heroSwiper .swiper-button-prev {
        width: 30px !important;
        height: 30px !important;
    }

    .heroSwiper .swiper-button-next:after,
    .heroSwiper .swiper-button-prev:after {
        font-size: 16px !important;
    }

    .heroSwiper .swiper-pagination {
        bottom: 5px !important;
    }

    /* ============================================================
       WHAT WE DO - MOBİL DÜZENLEME
       ============================================================ */

    .what-we-do-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .what-we-do-card .card-image .icon-placeholder {
        font-size: 36px;
    }
} /* ⭐ BURASI ÖNEMLİ: 640px medya sorgusu burada kapanıyor */

/* ============================================================
   480px ve altı (Küçük Telefonlar)
   ============================================================ */
@media (max-width: 480px) {
    .top-bar {
        padding: 10px 0;
    }

    .top-bar .container {
        padding: 0 8px;
        gap: 6px;
    }

    .top-bar-left .insta-btn {
        font-size: 13px;
        padding: 5px 6px;
    }

    .top-bar-right a {
        font-size: 13px;
        padding: 7px 12px;
    }

    .top-bar-right .btn-teklif-top {
        font-size: 12px;
        padding: 7px 12px;
    }

    .main-header {
        height: 62px;
        min-height: 62px;
    }

    .main-header .container {
        padding: 0 8px;
        gap: 5px;
    }

    .main-header .logo img {
        height: 46px !important;
        max-width: 140px;
    }

    .main-header .header-phone-box {
        font-size: 11px;
        padding: 5px 8px;
        border-radius: 6px;
    }

    .main-header .header-phone-box i {
        font-size: 12px;
    }

    .main-header .menu-toggle {
        width: 38px;
        height: 38px;
        font-size: 19px;
        border-radius: 6px;
    }

    .mobile-menu {
        height: 70vh !important;
    }

    .mobile-menu a {
        font-size: 18px;
        padding: 10px 12px;
    }

    /* Slider 480px */
    .hero .container {
        padding: 0 8px;
    }

    .hero-slide-wrapper {
        gap: 15px !important;
    }

    .hero-content {
        padding-bottom: 30px !important;
    }

    .hero-content h1 {
        font-size: 24px !important;
    }

    .hero-content h3 {
        font-size: 14px !important;
    }

    .hero-content > p {
        font-size: 12px !important;
    }

    .hero-services-grid {
        gap: 5px !important;
    }

    .hero-services-grid .service-card {
        padding: 8px 3px !important;
    }

    .hero-services-grid .service-card h4 {
        font-size: 10px !important;
    }
}

/* ============================================================
   380px ve altı (Çok Küçük Telefonlar)
   ============================================================ */
@media (max-width: 380px) {
    .top-bar-left .insta-btn {
        font-size: 11px;
        padding: 6px 10px;
    }

    .top-bar-right a:first-child {
        display: none;
    }

    .top-bar-right .btn-teklif-top {
        font-size: 11px;
        padding: 6px 10px;
    }

    .main-header .logo img {
        height: 42px !important;
        max-width: 120px;
    }

    .main-header .header-phone-box {
        font-size: 10px;
        padding: 4px 6px;
    }

    .main-header .menu-toggle {
        width: 34px;
        height: 34px;
        font-size: 17px;
    }

    .mobile-menu {
        height: 65vh !important;
    }

    .hero-content h1 {
        font-size: 20px !important;
    }
}

/* ============================================================
   MOBİL MENÜ (HAMBURGER) - PROFESYONEL TASARIM
   ⭐ EKRANIN %85'İNİ KAPLAR, SAĞDA BOŞLUK BIRAKIR
   ⭐ YAZILAR SOLA HİZALIDIR, İKONLUDUR
   ============================================================ */

.menu-toggle {
    display: none;
    font-size: 28px;
    color: var(--blue);
    cursor: pointer;
    transition: var(--transition);
}

.menu-toggle:hover {
    color: var(--red);
}

/* ============================================================
   ARKA PLAN OVERLAY (KARARTMA)
   ============================================================ */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.mobile-menu-overlay.active {
    display: block;
}

/* ============================================================
   MOBİL MENÜ KUTUSU - EKRANIN %85'İ
   ============================================================ */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 70%; /* ⭐ EKRANIN %85'İ */
    height: 100vh;
    background: var(--blue);
    z-index: 1000;
    padding: 80px 25px 40px; /* ⭐ ÜST PADDING ARTIRILDI */
    flex-direction: column;
    align-items: flex-start; /* ⭐ SOLA HİZALI */
    justify-content: flex-start; /* ⭐ YUKARIDAN BAŞLA */
    gap: 8px; /* ⭐ BOŞLUK AZALTILDI */
    transition: all 0.4s ease;
    box-shadow: 4px 0 30px rgba(0, 0, 0, 0.3); /* ⭐ SAĞDAN GÖLGE */
    overflow-y: auto; /* ⭐ UZUN MENÜLER İÇİN KAYDIRMA */
}

.mobile-menu.active {
    display: flex;
}

/* ============================================================
   MENÜ YAZILARI - SOLA HİZALI, İKONLU
   ============================================================ */
.mobile-menu a {
    width: 100%;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 14px 16px; /* ⭐ GENİŞ TIKLAMA ALANI */
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

/* ⭐ MENÜ İKONLARI */
.mobile-menu a i {
    width: 28px;
    text-align: center;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
    flex-shrink: 0;
}

/* ⭐ HOVER / AKTİF DURUM */
.mobile-menu a:hover {
    background: rgba(255, 255, 255, 0.10);
    color: #fff;
}

.mobile-menu a:hover i {
    color: #fff;
}

/* ⭐ AKTİF SAYFA İÇİN (OPSİYONEL) */
.mobile-menu a.active {
    background: rgba(255, 255, 255, 0.15);
    border-left: 4px solid var(--red);
}

/* ============================================================
   TELEFON BAĞLANTISI (MOBİL MENÜDE)
   ============================================================ */
.mobile-menu .menu-phone {
    margin-top: 15px;
    padding: 14px 16px;
    width: 100%;
    background: var(--red);
    border-radius: 12px;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-menu .menu-phone i {
    width: 28px;
    text-align: center;
    font-size: 20px;
}

.mobile-menu .menu-phone:hover {
    background: #b8171d;
    transform: scale(1.02);
}

/* ============================================================
   KAPATMA BUTONU (X) - YUVARLAK BUTON
   ============================================================ */
.mobile-menu .close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: 2px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1001;
}

.mobile-menu .close-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: rotate(90deg);
    border-color: var(--red);
}

/* ============================================================
   MASAÜSTÜNDE MENÜ GİZLİ
   ============================================================ */
@media (min-width: 1025px) {
    .mobile-menu {
        display: none !important;
    }
    .mobile-menu-overlay {
        display: none !important;
    }
    .mobile-menu .close-btn {
        display: none !important;
    }
}

/* ============================================================
   TABLET İÇİN ÖZEL AYARLAR
   ============================================================ */
@media (max-width: 1024px) and (min-width: 769px) {
    .mobile-menu {
        width: 70%; /* ⭐ TABLETTE BİRAZ DAHA DAR */
        padding: 90px 30px 40px;
    }
    
    .mobile-menu a {
        font-size: 22px;
        padding: 16px 20px;
    }
}

/* ============================================================
   TELEFON İÇİN ÖZEL AYARLAR
   ============================================================ */
@media (max-width: 768px) {
    .mobile-menu {
        width: 75%;
        padding: 80px 20px 30px;
    }
    
    .mobile-menu a {
        font-size: 18px;
        padding: 12px 14px;
        gap: 12px;
    }
    
    .mobile-menu a i {
        width: 24px;
        font-size: 18px;
    }
    
    .mobile-menu .close-btn {
        width: 40px;
        height: 40px;
        font-size: 24px;
        top: 15px;
        right: 15px;
    }
    
    .mobile-menu .menu-phone {
        font-size: 16px;
        padding: 12px 14px;
    }
}

@media (max-width: 480px) {
    .mobile-menu {
        width: 88%;
        padding: 70px 16px 25px;
    }
    
    .mobile-menu a {
        font-size: 16px;
        padding: 10px 12px;
        gap: 10px;
    }
    
    .mobile-menu a i {
        width: 20px;
        font-size: 16px;
    }
    
    .mobile-menu .close-btn {
        width: 36px;
        height: 36px;
        font-size: 20px;
        top: 12px;
        right: 12px;
    }
    
    .mobile-menu .menu-phone {
        font-size: 14px;
        padding: 10px 12px;
    }
}



/* ============================================================
   MOBİL MENÜ - SADECE MOBİL İÇİN (TAM EKRAN DEĞİL)
   ============================================================ */

/* 📱 TELEFON VE TABLET İÇİN MENÜ AYARLARI */
@media (max-width: 1024px) {
    
    /* MENÜ KARTI - SAĞA YANAŞIK, SOLDAN BOŞLUKLU */
    .mobile-menu {
        display: none;
        position: fixed;
        top: 100px;
        right: 100px;
        width: calc(100% - 200px);
        height: calc(100vh - 200px);
        background: var(--blue);
        z-index: 1000;
        padding: 70px 25px 30px;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 12px;
        border-radius: 0 0 30px 30px;
        box-shadow: 0 10px 50px rgba(0, 0, 0, 0.4);
        overflow-y: auto;
        transition: all 0.3s ease;
        box-sizing: border-box;
    }

    /* MENÜ AÇIK DURUMU */
    .mobile-menu.active {
        display: flex;
    }

    /* MENÜ BAĞLANTILARI - SOLA HİZALI, İKONLU */
    .mobile-menu a {
        width: 100%;
        color: #fff;
        font-size: 18px;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 12px 16px;
        border-radius: 12px;
        text-decoration: none;
        transition: all 0.3s ease;
        letter-spacing: 0.3px;
        box-sizing: border-box;
    }

    /* MENÜ İKONLARI */
    .mobile-menu a i {
        width: 24px;
        text-align: center;
        font-size: 18px;
        color: rgba(255, 255, 255, 0.7);
        flex-shrink: 0;
    }

    /* HOVER DURUMU */
    .mobile-menu a:hover {
        background: rgba(255, 255, 255, 0.10);
    }

    .mobile-menu a:hover i {
        color: #fff;
    }

    /* AKTİF SAYFA */
    .mobile-menu a.active {
        background: rgba(255, 255, 255, 0.15);
        border-left: 3px solid var(--red);
    }

    /* TELEFON BUTONU */
    .mobile-menu .menu-phone {
        margin-top: 15px;
        padding: 14px 16px;
        width: 100%;
        background: var(--red);
        border-radius: 12px;
        color: #fff;
        font-size: 17px;
        font-weight: 700;
        display: flex;
        align-items: center;
        gap: 14px;
        text-decoration: none;
        transition: all 0.3s ease;
        box-sizing: border-box;
    }

    .mobile-menu .menu-phone i {
        width: 24px;
        text-align: center;
        font-size: 18px;
    }

    .mobile-menu .menu-phone:hover {
        background: #b8171d;
        transform: scale(1.02);
    }

    /* KAPATMA BUTONU (X) - YUVARLAK */
    .mobile-menu .close-btn {
        position: absolute;
        top: 20px;
        right: 20px;
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.12);
        border: 2px solid rgba(255, 255, 255, 0.15);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 24px;
        cursor: pointer;
        transition: all 0.3s ease;
        z-index: 1001;
    }

    .mobile-menu .close-btn:hover {
        background: rgba(255, 255, 255, 0.25);
        transform: rotate(90deg);
        border-color: var(--red);
    }

    /* ARKA PLAN OVERLAY (KARARTMA) */
    .mobile-menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.4);
        z-index: 999;
    }

    .mobile-menu-overlay.active {
        display: block;
    }
}

/* ============================================================
   📱 SADECE TELEFON İÇİN (768px ve altı)
   ============================================================ */
@media (max-width: 768px) {
    .mobile-menu {
        top: 85px;
        right: 85px;
        width: calc(100% - 170px);
        height: calc(100vh - 170px);
        padding: 65px 20px 25px;
        border-radius: 0 0 25px 25px;
        gap: 10px;
    }

    .mobile-menu a {
        font-size: 17px;
        padding: 11px 14px;
        gap: 12px;
    }

    .mobile-menu a i {
        width: 22px;
        font-size: 17px;
    }

    .mobile-menu .close-btn {
        top: 16px;
        right: 16px;
        width: 38px;
        height: 38px;
        font-size: 22px;
    }

    .mobile-menu .menu-phone {
        font-size: 16px;
        padding: 12px 14px;
        gap: 12px;
    }
}

/* ============================================================
   📱 KÜÇÜK TELEFONLAR İÇİN (480px ve altı)
   ============================================================ */
@media (max-width: 480px) {
    .mobile-menu {
        top: 70px;
        right: 70px;
        width: calc(100% - 140px);
        height: calc(100vh - 140px);
        padding: 58px 16px 20px;
        border-radius: 0 0 20px 20px;
        gap: 8px;
    }

    .mobile-menu a {
        font-size: 15px;
        padding: 10px 12px;
        gap: 10px;
    }

    .mobile-menu a i {
        width: 20px;
        font-size: 15px;
    }

    .mobile-menu .close-btn {
        top: 14px;
        right: 14px;
        width: 34px;
        height: 34px;
        font-size: 18px;
    }

    .mobile-menu .menu-phone {
        font-size: 14px;
        padding: 10px 12px;
        gap: 10px;
    }
}

/* ============================================================
   🖥️ MASAÜSTÜNDE MENÜ TAMAMEN GİZLİ (1025px ve üzeri)
   ============================================================ */
@media (min-width: 1025px) {
    .mobile-menu {
        display: none !important;
    }
    .mobile-menu-overlay {
        display: none !important;
    }
    .mobile-menu .close-btn {
        display: none !important;
    }
}

/* ============================================================
   🍔 HAMBURGER MENÜ BUTONU (MOBİLDE GÖRÜNÜR)
   ============================================================ */
.menu-toggle {
    display: none;
    font-size: 28px;
    color: var(--blue);
    cursor: pointer;
    transition: var(--transition);
}

.menu-toggle:hover {
    color: var(--red);
}

/* Mobilde hamburger göster */
@media (max-width: 1024px) {
    .menu-toggle {
        display: block !important;
    }
}

/* Tablette hamburger düzenle */
@media (max-width: 768px) {
    .menu-toggle {
        font-size: 24px;
    }
}