/* ========================================
   HAMBURGER MENU - SIFIRDAN YAZILDI
   ======================================== */

/* Hamburger menü varsayılan olarak gizli (desktop) */
.hamburger-menu {
    display: none !important;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 10002;
    width: 45px;
    height: 45px;
    background: #ffffff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    user-select: none;
    transition: all 0.3s ease;
    pointer-events: auto;
    /* Her zaman tıklanabilir */
}

.hamburger-menu:active {
    transform: scale(0.95);
    background: #f0f0f0;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--primary-color, #1a252f);
    border-radius: 3px;
    transition: all 0.3s ease;
    pointer-events: none;
}

/* Hamburger X durumu - Menü açık */
.hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ========================================
   TABLET & MOBILE (992px ve altı)
   ======================================== */

@media (max-width: 992px) {

    /* Mobil performans optimizasyonları */
    * {
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
    }

    /* Horizontal scroll önleme */
    html,
    body {
        overflow-x: hidden !important;
        max-width: 100vw !important;
        width: 100% !important;
        position: relative;
    }

    /* Tüm section'ların genişlik kontrolü */
    section {
        max-width: 100vw;
        overflow-x: hidden;
    }

    /* GPU hızlandırma için */
    .hamburger-menu,
    .nav-menu,
    .mobile-overlay {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        will-change: transform;
    }

    /* Navbar container relative pozisyon için */
    .main-nav {
        position: relative;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        z-index: 10000 !important;
        /* Navbar'ı her zaman üstte tut */
    }

    .main-nav .container {
        position: relative;
        z-index: 10000;
        /* Container'ın da yüksek z-index'i olsun */
    }

    /* Hemen Ara Button - Mobilde logonun solunda */
    .mobile-call-btn {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 50%;
        left: 15px;
        transform: translateY(-50%);
        z-index: 10001;
        background: linear-gradient(135deg, var(--secondary-color) 0%, #d35400 100%);
        color: white;
        width: 40px;
        height: 40px;
        padding: 0;
        border-radius: 50%;
        text-decoration: none;
        box-shadow: 0 4px 12px rgba(230, 126, 34, 0.3);
        transition: all 0.3s ease;
        pointer-events: auto;
        cursor: pointer;
    }

    .mobile-call-btn i {
        font-size: 16px;
    }

    .mobile-call-btn span {
        display: none;
    }

    .mobile-call-btn:active {
        transform: translateY(-50%) scale(0.95);
        box-shadow: 0 2px 8px rgba(230, 126, 34, 0.4);
    }

    /* Hamburger Görünür - Navbar içinde sağda */
    .hamburger-menu {
        display: flex !important;
        position: absolute;
        top: 50%;
        right: 15px;
        transform: translateY(-50%) translateZ(0);
        -webkit-transform: translateY(-50%) translateZ(0);
        z-index: 10002 !important;
        /* Hamburger butonu her zaman en üstte */
        pointer-events: auto !important;
        /* Tıklanabilir olduğundan emin ol */
        cursor: pointer !important;
    }

    /* Menü Paneli - Sağdan açılır - Modern Tasarım */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -320px;
        width: 320px;
        max-width: 85vw;
        height: 100vh;
        height: 100dvh;
        background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
        flex-direction: column;
        padding: 0;
        box-shadow: -10px 0 50px rgba(0, 0, 0, 0.3);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 10000;
        overflow-y: auto;
        overflow-x: hidden !important;
        display: flex;
        -webkit-overflow-scrolling: touch;
        pointer-events: none;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
        box-sizing: border-box !important;
    }

    .nav-menu * {
        box-sizing: border-box !important;
    }

    .nav-menu.active {
        right: 0 !important;
        pointer-events: auto !important;
        z-index: 10001 !important;
        overflow-x: hidden !important;
        position: fixed !important;
    }

    /* Modern Kapatma Butonu - Sadece mobil menü açıkken görünür */
    .mobile-menu-close {
        position: absolute;
        top: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
        background: rgba(26, 37, 47, 0.05);
        border: none;
        border-radius: 12px;
        display: none;
        /* Varsayılan olarak gizli */
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 10003;
        transition: all 0.3s ease;
        color: var(--primary-color);
        pointer-events: auto !important;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }

    /* Mobil menü açıkken kapatma butonunu göster */
    .nav-menu.active .mobile-menu-close {
        display: flex !important;
    }

    .mobile-menu-close:hover {
        background: rgba(26, 37, 47, 0.1);
        transform: rotate(90deg);
    }

    .mobile-menu-close:active {
        transform: rotate(90deg) scale(0.95);
    }

    .mobile-menu-close svg {
        width: 20px;
        height: 20px;
        stroke: currentColor;
    }

    /* Menü İçeriği Container - Padding */
    .nav-menu {
        padding-top: 90px;
        padding-left: 0;
        padding-right: 0;
        padding-bottom: 30px;
    }

    .nav-menu li {
        margin: 0;
        list-style: none;
        pointer-events: auto;
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        position: relative;
        z-index: 1;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    /* Modern Menü Linkleri - Tutarlı Tasarım */
    .nav-menu .nav-link {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 18px 25px;
        font-size: 15px;
        font-weight: 500;
        color: var(--primary-color);
        text-decoration: none;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        pointer-events: auto !important;
        cursor: pointer;
        -webkit-tap-highlight-color: rgba(230, 126, 34, 0.1);
        position: relative;
        z-index: 10002 !important;
        -webkit-user-select: none;
        user-select: none;
        touch-action: manipulation;
        transition: all 0.3s ease;
        background: transparent;
        border-left: 3px solid transparent;
        text-align: center;
    }

    /* Hover Efekti */
    .nav-menu .nav-link:hover {
        background: linear-gradient(135deg, var(--secondary-color) 0%, #d35400 100%) !important;
        color: white !important;
        border-left-color: transparent;
        padding-left: 25px;
        border-radius: 8px;
        margin: 0 15px;
        box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
    }

    /* Active Link - Modern Vurgu */
    .nav-menu .nav-link.active {
        background: linear-gradient(135deg, var(--secondary-color) 0%, #d35400 100%) !important;
        color: white !important;
        border-left-color: transparent;
        font-weight: 600;
        border-radius: 8px;
        margin: 0 15px;
        box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
    }

    /* Nav-menu active olduğunda tüm child element'ler tıklanabilir */
    .nav-menu.active,
    .nav-menu.active * {
        pointer-events: auto !important;
    }

    .nav-menu.active li {
        pointer-events: auto !important;
        z-index: 10002 !important;
    }

    .nav-menu.active .nav-link {
        z-index: 10003 !important;
        pointer-events: auto !important;
    }

    /* Desktop active stilini mobilde override et */
    @media (max-width: 992px) {
        .nav-link.active {
            background: linear-gradient(90deg, rgba(230, 126, 34, 0.1) 0%, rgba(230, 126, 34, 0.05) 100%) !important;
            color: var(--secondary-color) !important;
            border-left-color: var(--secondary-color) !important;
        }
    }

    /* Overlay - Modern Blur Efekti */
    .mobile-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s ease, visibility 0.4s ease;
        z-index: 9999;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
        touch-action: none;
        pointer-events: none;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        will-change: opacity;
    }

    .mobile-overlay.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    /* Nav-menu overlay'in üstünde olmalı ve tıklanabilir */
    .nav-menu.active {
        z-index: 10001 !important;
        pointer-events: auto !important;
    }

    /* Nav-menu içindeki tüm elementler tıklanabilir */
    .nav-menu.active * {
        pointer-events: auto !important;
    }

    .mobile-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    /* Top Bar Mobil */
    .top-bar {
        padding: 5px 0;
        font-size: 11px;
        position: relative;
        z-index: 9998;
        /* Navbar'ın altında ama diğer elementlerin üstünde */
    }

    .top-bar .container {
        flex-direction: row;
        justify-content: center;
    }

    .top-bar-left {
        display: none;
    }

    .top-bar-right {
        justify-content: center;
        gap: 15px;
    }

    /* Nav Kompakt */
    .main-nav .container {
        padding: 12px 15px;
        position: relative;
        max-width: 100%;
        box-sizing: border-box;
    }

    /* Container genişlik kontrolü mobilde */
    .container {
        max-width: 100% !important;
        padding: 0 15px;
        box-sizing: border-box;
    }

    .nav-logo .logo-image {
        max-height: 38px;
    }

    /* Hero Mobil */
    .hero-split {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-cta {
        justify-content: center;
    }

    /* İstatistikleri mobilde gizle */
    .hero-metrics {
        display: none !important;
    }

    /* Hero görsel kartlarını mobilde gizle (Çatı İzolasyonu, Su Yalıtımı, Isı Yalıtımı) */
    .hero-right {
        display: none !important;
    }

    .hero-visual {
        display: none !important;
    }

    .visual-card {
        display: none !important;
    }

    .floating-badge {
        display: none !important;
    }

    /* Hero particles ve shapes mobilde gizle */
    .hero-particles {
        display: none !important;
    }

    .hero-shapes {
        display: none !important;
    }

    /* Sorun kartlarını mobilde göster - responsive düzen */
    .problem-solution {
        display: block !important;
        padding: 40px 0 !important;
    }

    .problems-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        padding: 0 15px;
    }

    .problem-item {
        display: flex !important;
        padding: 20px !important;
        text-align: center;
        flex-direction: column;
        align-items: center;
    }

    .problem-item .problem-icon {
        margin-bottom: 15px;
    }

    .problem-item h4,
    .problem-item .problem-title {
        font-size: 16px !important;
        margin-bottom: 10px;
    }

    .problem-item p,
    .problem-item .problem-desc {
        font-size: 14px !important;
        line-height: 1.5;
    }

    /* Footer Mobil */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .footer-cta-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 0 15px;
        width: 100%;
        box-sizing: border-box;
    }

    .footer-cta-section {
        overflow-x: hidden;
    }

    .footer-cta-section .container {
        padding: 0 15px;
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
        width: 100%;
    }

    .cta-right {
        width: 100%;
        display: flex;
        justify-content: center;
        box-sizing: border-box;
    }

    /* Görseller ve içerik max-width kontrolü */
    img {
        max-width: 100% !important;
        height: auto !important;
        display: block;
    }

    /* Tüm içerik elementlerinin viewport kontrolü */
    section,
    div,
    article,
    header,
    footer,
    main {
        max-width: 100vw;
        box-sizing: border-box;
    }

    /* Fixed/absolute elementlerin viewport dışına çıkmaması */
    .hamburger-menu,
    .mobile-overlay,
    .nav-menu {
        max-width: 100vw;
    }
}

/* ========================================
   KÜÇÜK MOBİL (768px ve altı)
   ======================================== */

@media (max-width: 768px) {
    .hero-main-title {
        font-size: 32px !important;
    }

    .hero-description {
        font-size: 15px !important;
    }

    .hero-cta {
        flex-direction: column;
        gap: 12px;
    }

    .cta-primary,
    .cta-secondary {
        width: 100%;
        justify-content: center;
    }

    .footer-cta-content {
        padding: 0 15px;
    }

    .cta-right {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .footer-cta-btn {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .cta-section {
        padding: 30px 15px !important;
        margin: 30px 0 !important;
    }

    .cta-section .btn-large {
        width: 100%;
        max-width: 100%;
        min-width: auto !important;
        padding: 14px 20px !important;
        font-size: 15px !important;
        box-sizing: border-box;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

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

    /* Sorunlar bölümü başlığı daha küçük */
    .section-intro {
        margin-bottom: 40px !important;
    }

    .section-intro .section-title {
        font-size: 24px !important;
        line-height: 1.3 !important;
        margin-bottom: 0 !important;
    }

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

    /* Footer mobilde tam ortala */
    .footer-col,
    .footer-widget {
        text-align: center !important;
    }

    .footer-links {
        align-items: center !important;
    }

    .footer-links li {
        text-align: center !important;
    }

    /* Footer sosyal ikonları ortala */
    .footer-social,
    .social-links {
        justify-content: center !important;
    }

    /* Footer iletişim bilgileri ortala */
    .footer-contact,
    .contact-item,
    .footer-info-item {
        justify-content: center !important;
        text-align: center !important;
    }

    .contact-item,
    .footer-info-item {
        flex-direction: column !important;
        align-items: center !important;
        gap: 8px !important;
    }

    /* Footer logo ve açıklama ortala */
    .footer-brand,
    .footer-about,
    .footer-logo {
        text-align: center !important;
        align-items: center !important;
    }

    .footer-description,
    .footer-about p {
        text-align: center !important;
    }

    /* Widget başlıkları ortala */
    .footer-title,
    .widget-title {
        text-align: center !important;
    }

    .nav-logo {
        margin-left: 10px;
    }

    .nav-logo .logo-image {
        max-height: 35px;
    }

    .logo-box {
        font-size: 14px;
        padding: 6px 10px;
    }
}

/* ========================================
   ÇOK KÜÇÜK MOBİL (480px ve altı)
   ======================================== */

@media (max-width: 480px) {
    .top-bar {
        padding: 4px 0;
        font-size: 10px;
    }

    /* Sadece telefon göster */
    .top-bar-contact:last-child {
        display: none;
    }

    .main-nav .container {
        padding: 10px 15px;
        position: relative;
    }

    .mobile-call-btn {
        left: 10px;
        width: 38px !important;
        height: 38px !important;
        min-width: 38px !important;
        min-height: 38px !important;
        max-width: 38px !important;
        max-height: 38px !important;
        border-radius: 50% !important;
        padding: 0 !important;
        font-size: 12px;
        gap: 0;
    }

    .mobile-call-btn i {
        font-size: 14px;
    }

    .nav-logo {
        margin-left: 8px;
    }

    .nav-logo .logo-image {
        max-height: 30px;
    }

    /* Küçük mobilde nav-menu padding ayarı */
    .nav-menu {
        width: 300px;
        max-width: 90vw;
        padding-top: 85px;
        padding-bottom: 25px;
    }

    .mobile-menu-close {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
    }

    .mobile-menu-close svg {
        width: 18px;
        height: 18px;
    }

    /* Küçük mobilde nav-link'ler daha büyük tıklanabilir alan */
    .nav-menu .nav-link {
        padding: 16px 20px;
        min-height: 52px;
        display: flex;
        align-items: center;
        font-size: 14px;
    }

    .nav-menu .nav-link:hover {
        padding-left: 23px;
        background: linear-gradient(135deg, var(--secondary-color) 0%, #d35400 100%) !important;
        color: #ffffff !important;
        border-radius: 8px;
        margin: 0 10px;
        box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
    }

    .nav-menu .nav-link.active {
        background: linear-gradient(135deg, var(--secondary-color) 0%, #d35400 100%) !important;
        color: #ffffff !important;
        border-radius: 8px;
        margin: 0 10px;
    }

    .logo-box {
        font-size: 12px;
        padding: 5px 8px;
    }

    .hamburger-menu {
        width: 40px;
        height: 40px;
        right: 10px;
    }

    .hamburger-line {
        width: 20px;
        height: 2px;
    }

    .hero-main-title {
        font-size: 26px !important;
    }

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

    .section-title {
        font-size: 24px !important;
    }

    .problems-grid {
        grid-template-columns: 1fr !important;
    }

    .container {
        padding: 0 12px;
        max-width: 100% !important;
        box-sizing: border-box;
    }

    /* Küçük mobilde görsel kontrolü */
    img {
        max-width: 100% !important;
        height: auto !important;
    }

    .cta-left h3 {
        font-size: 20px !important;
    }

    .footer-cta-btn {
        padding: 12px 16px !important;
        font-size: 13px !important;
        white-space: nowrap !important;
        min-width: auto;
        width: 100%;
        max-width: 100%;
        flex-wrap: nowrap !important;
        display: flex !important;
        justify-content: center;
        align-items: center;
        gap: 6px !important;
        box-sizing: border-box;
        overflow: hidden;
    }

    .footer-cta-btn .btn-text {
        white-space: nowrap !important;
        overflow: hidden;
        text-overflow: ellipsis;
        display: inline-block;
        max-width: 100%;
        flex: 1;
        min-width: 0;
    }

    .footer-cta-btn svg {
        flex-shrink: 0 !important;
        width: 16px !important;
        height: 16px !important;
    }

    /* Galeri CTA Butonu Mobil */
    .btn-cta-large {
        padding: 18px 32px !important;
        font-size: 16px !important;
        gap: 12px !important;
    }

    .btn-cta-large i {
        font-size: 18px !important;
    }
}

/* ========================================
   ÇOK KÜÇÜK MOBİL (360px ve altı)
   ======================================== */

@media (max-width: 360px) {
    .footer-cta-btn {
        padding: 10px 12px !important;
        font-size: 11px !important;
        gap: 5px !important;
        width: 100%;
        max-width: 100%;
    }

    .footer-cta-btn svg {
        width: 14px !important;
        height: 14px !important;
        flex-shrink: 0;
    }

    .footer-cta-btn .btn-text {
        font-size: 11px !important;
    }

    .cta-section .btn-large {
        font-size: 12px !important;
        padding: 10px 14px !important;
    }

    /* Galeri CTA Butonu Küçük Mobil */
    .btn-cta-large {
        padding: 16px 28px !important;
        font-size: 15px !important;
        gap: 10px !important;
    }

    .btn-cta-large i {
        font-size: 16px !important;
    }
}

/* ========================================
   GENEL MOBİL YARDIMCILAR
   ======================================== */

/* Menü açıkken scroll engelle */
body.menu-open {
    overflow: hidden !important;
    position: fixed;
    width: 100%;
    height: 100%;
}

/* Touch hedefleri büyük olsun */
@media (max-width: 992px) {

    a,
    button:not(.hamburger-menu) {
        min-height: 44px;
    }

    .nav-menu .nav-link {
        min-height: 50px;
        display: flex;
        align-items: center;
    }

    /* Hamburger buton için özel z-index - menü açıkken bile üstte kalsın */
    .hamburger-menu {
        z-index: 10002 !important;
        pointer-events: auto !important;
        cursor: pointer !important;
    }

    /* Hamburger hover efekti */
    .hamburger-menu:hover {
        background: #f5f5f5;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    }
}

/* Çok küçük mobil hamburger pozisyonu */
@media (max-width: 480px) {
    .hamburger-menu {
        width: 40px;
        height: 40px;
        right: 10px;
    }

    .hamburger-line {
        width: 20px;
        height: 2px;
    }

    .main-nav .container {
        padding: 10px 15px;
    }
}

/* ========================================
   MOBİL GALERİ MODAL DÜZENLEMELERI
   ======================================== */

@media (max-width: 992px) {

    /* Galeri modal mobil iyileştirmeleri */
    .gallery-modal {
        z-index: 100000 !important;
        padding: 10px;
    }

    .gallery-modal-content {
        max-height: 95vh;
        border-radius: 12px;
    }

    .gallery-modal-header {
        padding: 15px 20px;
    }

    .gallery-modal-header h2 {
        font-size: 16px;
    }

    .gallery-modal-body {
        padding: 15px;
    }

    /* Lightbox mobil z-index */
    .lightbox-modal {
        z-index: 100001 !important;
    }

    .lightbox-close,
    .lightbox-prev,
    .lightbox-next {
        width: 44px;
        height: 44px;
    }

    .lightbox-prev {
        left: 5px;
    }

    .lightbox-next {
        right: 5px;
    }

    /* Portfolio section mobil */
    .portfolio-section {
        padding: 50px 0;
    }

    .portfolio-section .section-title {
        font-size: 26px;
    }

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

    .portfolio-gallery .gallery-item,
    a.gallery-item {
        display: block !important;
        aspect-ratio: 4/3 !important;
        border-radius: 12px !important;
        overflow: hidden !important;
        background: transparent !important;
        line-height: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .portfolio-gallery .gallery-item img,
    a.gallery-item img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        display: block !important;
        line-height: 0 !important;
    }

    .portfolio-view-more {
        margin-top: 25px;
    }

    .btn-view-more {
        padding: 12px 24px;
        font-size: 14px;
        text-decoration: none;
    }

    .btn-view-more span {
        text-decoration: none;
    }
}

@media (max-width: 480px) {
    .portfolio-gallery {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .portfolio-gallery-3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

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

    .gallery-grid-item {
        aspect-ratio: 1/1;
    }

    .lightbox-caption {
        font-size: 12px;
        padding: 0 10px;
    }
}


/* ========================================
   PAGE CTA BANNER MOBİL - DETAY SAYFALARI
   ======================================== */

@media (max-width: 992px) {
    .page-cta-banner {
        padding: 20px 0;
        margin-bottom: 20px;
    }

    .page-cta-banner .banner-cta-btn {
        padding: 12px 24px;
        font-size: 14px;
        gap: 8px;
        white-space: nowrap;
    }

    .page-cta-banner .banner-cta-btn svg {
        width: 18px;
        height: 18px;
    }

    .page-cta-banner .banner-cta-btn span {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .page-cta-banner {
        padding: 18px 10px;
        margin-bottom: 18px;
    }

    .page-cta-banner .banner-cta-btn {
        padding: 11px 20px;
        font-size: 13px;
        gap: 6px;
        white-space: nowrap;
    }

    .page-cta-banner .banner-cta-btn svg {
        width: 16px;
        height: 16px;
    }

    .page-cta-banner .banner-cta-btn span {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .page-cta-banner {
        padding: 15px 10px;
        margin-bottom: 15px;
    }

    .page-cta-banner .banner-cta-btn {
        padding: 10px 16px;
        font-size: 12px;
        gap: 5px;
        white-space: nowrap;
    }

    .page-cta-banner .banner-cta-btn svg {
        width: 15px;
        height: 15px;
    }

    .page-cta-banner .banner-cta-btn span {
        font-size: 12px;
    }
}

@media (max-width: 380px) {
    .page-cta-banner {
        padding: 12px 5px;
        margin-bottom: 12px;
    }

    .page-cta-banner .banner-cta-btn {
        padding: 9px 14px;
        font-size: 11px;
        gap: 4px;
        white-space: nowrap;
    }

    .page-cta-banner .banner-cta-btn svg {
        width: 14px;
        height: 14px;
    }

    .page-cta-banner .banner-cta-btn span {
        font-size: 11px;
    }
}

/* ========================================
   HERO CTA BANNER MOBİL DÜZENLEMELER
   ======================================== */

@media (max-width: 992px) {
    .hero-cta-banner {
        padding: 30px 0;
    }

    .banner-cta-btn {
        padding: 18px 32px;
        font-size: 16px;
        gap: 12px;
    }

    .banner-cta-btn svg {
        width: 24px;
        height: 24px;
    }

    .banner-cta-btn .btn-main-text {
        font-size: 17px;
    }

    .banner-cta-btn .btn-sub-text {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .hero-cta-banner {
        padding: 25px 15px;
    }

    .banner-cta-btn {
        padding: 16px 28px;
        font-size: 15px;
        gap: 10px;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }

    .banner-cta-btn svg {
        width: 22px;
        height: 22px;
    }

    .banner-cta-btn .btn-main-text {
        font-size: 16px;
        flex: 1 1 100%;
    }

    .banner-cta-btn .btn-sub-text {
        font-size: 13px;
        flex: 1 1 100%;
    }
}

@media (max-width: 480px) {
    .hero-cta-banner {
        padding: 20px 10px;
    }

    .banner-cta-btn {
        padding: 14px 24px;
        font-size: 14px;
        gap: 8px;
        width: 95%;
        max-width: 340px;
        margin: 0 auto;
    }

    .banner-cta-btn svg {
        width: 20px;
        height: 20px;
        flex: 0 0 20px;
    }

    .banner-cta-btn .btn-main-text {
        font-size: 15px;
    }

    .banner-cta-btn .btn-sub-text {
        font-size: 12px;
    }
}

@media (max-width: 360px) {
    .hero-cta-banner {
        padding: 18px 8px;
    }

    .banner-cta-btn {
        padding: 12px 20px;
        font-size: 13px;
        gap: 6px;
        width: 98%;
    }

    .banner-cta-btn svg {
        width: 18px;
        height: 18px;
    }

    .banner-cta-btn .btn-main-text {
        font-size: 14px;
    }

    .banner-cta-btn .btn-sub-text {
        font-size: 11px;
    }
}


/* ========================================
   MOBİL MENÜ HOVER FIX - BEYAZ YAZI
   ======================================== */

@media (max-width: 992px) {

    /* Hover durumunda yazı beyaz olsun */
    .nav-menu .nav-link:hover,
    .nav-menu li:hover .nav-link,
    .nav-menu .nav-link:active,
    .nav-menu .nav-link:focus {
        color: #ffffff !important;
        background: linear-gradient(135deg, var(--secondary-color) 0%, #d35400 100%) !important;
    }

    /* Active link beyaz yazı */
    .nav-menu .nav-link.active,
    .nav-menu li .nav-link.active {
        color: #ffffff !important;
        background: linear-gradient(135deg, var(--secondary-color) 0%, #d35400 100%) !important;
    }
}


/* ========================================
   DROPDOWN MENU - MOBILE
   ======================================== */

@media (max-width: 992px) {
    /* Mobilde dropdown'ı accordion tarzı yap */
    .nav-dropdown {
        width: 100% !important;
        max-width: 100% !important;
        position: relative;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        overflow: hidden !important;
        display: block !important;
    }
    
    .nav-dropdown .dropdown-toggle {
        width: 100% !important;
        max-width: 100% !important;
        text-align: center !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        cursor: pointer !important;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1) !important;
        touch-action: manipulation !important;
        user-select: none !important;
        padding: 18px 25px !important;
        font-size: 15px !important;
        font-weight: 500 !important;
        color: var(--primary-color) !important;
        text-transform: uppercase !important;
        letter-spacing: 0.5px !important;
        background: transparent !important;
        border-left: 3px solid transparent !important;
        border-radius: 0 !important;
        margin: 0 !important;
        box-shadow: none !important;
        transform: none !important;
        position: relative !important;
        overflow: hidden !important;
    }
    
    /* Ok işaretini sağa yerleştir */
    .nav-dropdown .dropdown-toggle::after {
        content: '▾';
        position: absolute;
        right: 25px;
        transition: transform 0.3s ease;
    }
    
    .nav-dropdown.active .dropdown-toggle::after {
        transform: rotate(180deg);
    }
    
    .nav-dropdown .dropdown-toggle:hover,
    .nav-dropdown .dropdown-toggle:active {
        background: rgba(230, 126, 34, 0.1) !important;
        color: var(--secondary-color) !important;
        border-left-color: var(--secondary-color) !important;
        border-radius: 0 !important;
        margin: 0 !important;
        padding: 18px 25px !important;
        box-shadow: none !important;
        transform: none !important;
    }
    
    .dropdown-menu {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none !important;
        background: rgba(0, 0, 0, 0.03) !important;
        margin: 0 !important;
        padding: 0 !important;
        max-height: 0;
        overflow: hidden !important;
        transition: max-height 0.4s ease, padding 0.4s ease;
        border-radius: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: auto !important;
    }
    
    .nav-dropdown.active .dropdown-menu {
        max-height: 800px;
        padding: 8px 0 !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
    }
    
    .dropdown-menu li {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        border-bottom: none !important;
        overflow: hidden !important;
    }
    
    .dropdown-menu a {
        padding: 14px 15px 14px 40px !important;
        font-size: 14px !important;
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        text-align: left !important;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1) !important;
        touch-action: manipulation !important;
        color: var(--primary-color) !important;
        font-weight: 400 !important;
        text-transform: none !important;
        letter-spacing: 0.3px !important;
        background: transparent !important;
        border-left: none !important;
        border-radius: 0 !important;
        margin: 0 !important;
        box-shadow: none !important;
        transform: none !important;
        transition: all 0.2s ease !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        white-space: nowrap !important;
        box-sizing: border-box !important;
    }
    
    .dropdown-menu a:hover,
    .dropdown-menu a:active {
        background: linear-gradient(90deg, rgba(230, 126, 34, 0.15) 0%, rgba(230, 126, 34, 0.05) 100%) !important;
        color: var(--secondary-color) !important;
        padding: 14px 15px 14px 45px !important;
        border-radius: 0 !important;
        margin: 0 !important;
        box-shadow: none !important;
        transform: none !important;
    }
    
    /* Aktif durumda dropdown toggle */
    .nav-dropdown.active .dropdown-toggle {
        background: rgba(230, 126, 34, 0.1) !important;
        color: var(--secondary-color) !important;
        border-left-color: var(--secondary-color) !important;
    }
}
