/* ===================================
   MOBILE.CSS - Responsive Mobile Styles
   Starting from 300px (smallest devices)
   =================================== */

/* ===================================
   BASE MOBILE STYLES (300px+)
   =================================== */

/* Container adjustments for tiny screens */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
        max-width: 100%;
    }
}

@media (max-width: 360px) {
    .container {
        padding: 0 10px;
    }
}

/* ===================================
   HEADER - MOBILE NAVIGATION
   =================================== */

/* Top Navigation - Hide on mobile */
@media (max-width: 768px) {
    .top-nav {
        display: none;
    }
}

/* Main Navigation - Mobile */
@media (max-width: 768px) {
    .main-nav-content {
        flex-direction: column;
        align-items: center;
        padding: 15px 0;
        gap: 15px;
    }

    /* Logo Container - Yan Yana */
    .logo-container {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 20px;
        width: 100%;
    }

    .logo-image {
        height: 45px;
        transition: all 0.3s ease;
    }

    .logo-image img {
        height: 45px;
        width: auto;
        transition: all 0.3s ease;
    }

    /* Hide desktop nav elements */
    .nav-links,
    .search-btn {
        display: none !important;
    }

    /* Hamburger Menu Button - Alttta Ortalı */
    .hamburger-menu {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 32px;
        height: 24px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
        position: relative;
        transition: all 0.3s ease;
    }

    .hamburger-menu span {
        display: block;
        width: 100%;
        height: 3px;
        background-color: yellow;
        transition: all 0.3s ease;
        border-radius: 2px;
    }

    .hamburger-menu:hover span {
        background-color: #ffffff;
    }

    .hamburger-menu.active span:nth-child(1) {
        transform: rotate(45deg) translate(9px, 9px);
    }

    .hamburger-menu.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(-20px);
    }

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

    /* Mobile Menu Overlay */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: -100%;
        width: 85%;
        max-width: 350px;
        height: 100vh;
        background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
        z-index: 1000;
        transition: left 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        overflow-y: auto;
        box-shadow: 2px 0 30px rgba(0, 0, 0, 0.8);
    }

    .mobile-menu-overlay.active {
        left: 0;
    }

    .mobile-menu-content {
        padding: 90px 35px 40px;
    }

    /* Mobile Search Button */
    .mobile-search-btn {
        width: 100%;
        padding: 16px 24px;
        background: linear-gradient(135deg, rgba(203, 255, 0, 0.15) 0%, rgba(203, 255, 0, 0.05) 100%);
        border: 2px solid yellow;
        color: yellow;
        font-size: 17px;
        font-weight: 600;
        border-radius: 12px;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        margin-bottom: 35px;
        letter-spacing: 0.8px;
        text-transform: uppercase;
    }

    .mobile-search-btn:hover,
    .mobile-search-btn:active {
        background: yellow;
        border-color: yellow;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px yellow;
    }

    .mobile-search-btn svg {
        width: 22px;
        height: 22px;
        stroke: currentColor;
        stroke-width: 2;
        fill: none;
    }

    /* Mobile Menu Links */
    .mobile-menu-links {
        list-style: none;
        padding: 0;
        margin: 0 0 35px 0;
    }

    .mobile-menu-links li {
        margin-bottom: 0;
    }

    .mobile-menu-links a {
        color: #ffffff;
        text-decoration: none;
        font-size: 19px;
        font-weight: 500;
        letter-spacing: 0.6px;
        display: block;
        padding: 16px 0;
        transition: all 0.3s ease;
        border-bottom: 1px solid yellow;
        position: relative;
        overflow: hidden;
    }

    .mobile-menu-links a::before {
        content: '';
        position: absolute;
        left: -100%;
        top: 0;
        width: 4px;
        height: 100%;
        background: yellow;
        transition: left 0.3s ease;
    }

    .mobile-menu-links a:hover,
    .mobile-menu-links a:active {
        color: yellow;
        padding-left: 15px;
        background: rgba(203, 255, 0, 0.05);
    }

    .mobile-menu-links a:hover::before {
        left: 0;
    }

    /* Language Selector */
    .mobile-language {
        margin-bottom: 35px;
        padding-bottom: 35px;
        border-bottom: 1px solid rgba(203, 255, 0, 0.25);
    }

    .mobile-language h4 {
        color: yellow;
        font-size: 13px;
        font-weight: 700;
        margin-bottom: 18px;
        text-transform: uppercase;
        letter-spacing: 1.5px;
    }

    .language-options {
        display: flex;
        gap: 12px;
    }

    .language-btn {
        flex: 1;
        padding: 10px 20px;
        background: rgba(203, 255, 0, 0.08);
        border: 1.5px solid yellow;
        color: #ffffff;
        font-size: 15px;
        font-weight: 600;
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.3s ease;
        letter-spacing: 0.5px;
    }

    .language-btn:hover {
        background: yellow;
        border-color: yellow;
        transform: translateY(-1px);
    }

    .language-btn.active {
        background: yellow;
        color: #000000;
        border-color: yellow;
        font-weight: 700;
    }

    /* Social Media Links */
    .mobile-social {
        margin-top: 35px;
    }

    .mobile-social h4 {
        color: yellow;
        font-size: 13px;
        font-weight: 700;
        margin-bottom: 18px;
        text-transform: uppercase;
        letter-spacing: 1.5px;
    }

    .social-links {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
    }

    .social-link {
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(203, 255, 0, 0.08);
        border: 1.5px solid yellow;
        border-radius: 50%;
        color: yellow;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .social-link:hover,
    .social-link:active {
        background: yellow;
        color: #000000;
        border-color:yellow;
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 6px 20px yellow;
    }

    .social-link svg {
        width: 22px;
        height: 22px;
    }

    /* Menu Backdrop */
    .menu-backdrop {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.75);
        z-index: 999;
        opacity: 0;
        transition: opacity 0.4s ease;
        backdrop-filter: blur(2px);
    }

    .menu-backdrop.active {
        display: block;
        opacity: 1;
    }
}

/* Tablet Size - Logo Adjustments */
@media (max-width: 600px) {
    .logo-container {
        gap: 15px;
    }

    .logo-image {
        height: 38px;
    }

    .logo-image img {
        height: 38px;
    }

    .mobile-menu-content {
        padding: 80px 28px 35px;
    }

    .mobile-search-btn {
        font-size: 16px;
        padding: 14px 20px;
    }

    .mobile-menu-links a {
        font-size: 18px;
        padding: 14px 0;
    }
}

/* Small Mobile - Further Adjustments */
@media (max-width: 480px) {
    .main-nav-content {
        gap: 12px;
        padding: 12px 0;
    }

    .logo-container {
        gap: 12px;
    }

    .logo-image {
        height: 35px;
    }

    .logo-image img {
        height: 35px;
    }

    .hamburger-menu {
        width: 28px;
        height: 22px;
    }

    .mobile-menu-overlay {
        width: 90%;
        max-width: 300px;
    }

    .mobile-menu-content {
        padding: 75px 25px 30px;
    }

    .mobile-search-btn {
        font-size: 15px;
        padding: 13px 18px;
        margin-bottom: 30px;
    }

    .mobile-search-btn svg {
        width: 20px;
        height: 20px;
    }

    .mobile-menu-links a {
        font-size: 17px;
        padding: 13px 0;
    }

    .mobile-language h4,
    .mobile-social h4 {
        font-size: 12px;
    }

    .language-btn {
        font-size: 14px;
        padding: 9px 16px;
    }

    .social-link {
        width: 44px;
        height: 44px;
    }

    .social-link svg {
        width: 20px;
        height: 20px;
    }
}

/* Extra Small - Tiny Screens */
@media (max-width: 360px) {
    .main-nav-content {
        gap: 10px;
        padding: 10px 0;
    }

    .logo-container {
        gap: 10px;
    }

    .logo-image {
        height: 30px;
    }

    .logo-image img {
        height: 30px;
    }

    .hamburger-menu {
        width: 26px;
        height: 20px;
    }

    .hamburger-menu span {
        height: 2.5px;
    }

    .mobile-menu-overlay {
        width: 92%;
        max-width: 280px;
    }

    .mobile-menu-content {
        padding: 70px 20px 25px;
    }

    .mobile-search-btn {
        font-size: 14px;
        padding: 12px 16px;
        gap: 10px;
    }

    .mobile-search-btn svg {
        width: 18px;
        height: 18px;
    }

    .mobile-menu-links a {
        font-size: 16px;
        padding: 12px 0;
    }

    .mobile-language,
    .mobile-social {
        margin-bottom: 30px;
        padding-bottom: 30px;
    }

    .mobile-language h4,
    .mobile-social h4 {
        font-size: 11px;
        margin-bottom: 15px;
    }

    .language-options {
        gap: 10px;
    }

    .language-btn {
        font-size: 13px;
        padding: 8px 14px;
    }

    .social-links {
        gap: 10px;
    }

    .social-link {
        width: 42px;
        height: 42px;
    }

    .social-link svg {
        width: 19px;
        height: 19px;
    }
}

/* ===================================
   SEARCH OVERLAY - MOBILE
   =================================== */

@media (max-width: 768px) {
    .search-overlay {
        padding: 20px 0;
    }

    .search-input {
        font-size: 16px;
        padding: 12px 50px 12px 15px;
    }

    .close-search {
        right: 25px;
        font-size: 28px;
    }
}

@media (max-width: 360px) {
    .search-overlay {
        padding: 15px 0;
    }

    .search-input {
        font-size: 14px;
        padding: 10px 45px 10px 12px;
    }

    .close-search {
        right: 15px;
        font-size: 24px;
        width: 35px;
        height: 35px;
    }
}

/* ===================================
   HERO VIDEO SECTION - MOBILE
   =================================== */

@media (max-width: 768px) {
    .hero-video {
        height: 70vh;
        min-height: 400px;
    }

    .hero-overlay {
        padding: 20px 0;
    }

    .hero-content {
        padding: 0 20px;
    }

    .hero-text {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 20px;
        text-align: left;
    }

    .hero-highlight {
        font-size: 16px;
        margin-top: 25px;
        line-height: 1.5;
    }

    .hero-logo {
        bottom: 20px;
        left: 20px;
    }

    .hero-logo img {
        width: 120px;
    }
}

@media (max-width: 480px) {
    .hero-video {
        height: 60vh;
        min-height: 350px;
    }

    .hero-content {
        padding: 0 15px;
    }

    .hero-text {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .hero-highlight {
        font-size: 15px;
        margin-top: 20px;
    }

    .hero-logo {
        bottom: 15px;
        left: 15px;
    }

    .hero-logo img {
        width: 100px;
    }
}

@media (max-width: 360px) {
    .hero-video {
        height: 55vh;
        min-height: 300px;
    }

    .hero-content {
        padding: 0 10px;
    }

    .hero-text {
        font-size: 12px;
        margin-bottom: 12px;
    }

    .hero-highlight {
        font-size: 14px;
        margin-top: 15px;
    }

    .hero-logo {
        bottom: 10px;
        left: 10px;
    }

    .hero-logo img {
        width: 80px;
    }
}

/* Video Consent - Mobile */
@media (max-width: 768px) {
    .video-consent-content {
        padding: 30px 20px;
        margin: 0 15px;
    }

    .video-consent-content h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .video-consent-content p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .video-actions {
        flex-direction: column;
        gap: 12px;
    }

    .youtube-link,
    .accept-btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 14px;
    }
}

@media (max-width: 360px) {
    .video-consent-content {
        padding: 20px 15px;
        margin: 0 10px;
    }

    .video-consent-content h3 {
        font-size: 18px;
    }

    .video-consent-content p {
        font-size: 13px;
    }
}

/* ===================================
   RESOURCES SECTION - MOBILE
   =================================== */

@media (max-width: 768px) {
    .resources-section {
        padding: 40px 0;
    }

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

    .resource-image img {
        max-width: 100px;
    }

    .resource-title {
        font-size: 14px;
        letter-spacing: 0.5px;
    }
}

@media (max-width: 480px) {
    .resources-section {
        padding: 30px 0;
    }

    .resources-grid {
        gap: 20px;
    }

    .resource-image img {
        max-width: 80px;
    }

    .resource-title {
        font-size: 13px;
    }
}

@media (max-width: 360px) {
    .resources-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        max-width: 200px;
        margin: 0 auto;
    }

    .resource-image img {
        max-width: 100px;
    }

    .resource-title {
        font-size: 14px;
    }
}

/* ===================================
   BUSINESS DIVISIONS - MOBILE
   =================================== */

@media (max-width: 768px) {
    .business-divisions {
        padding: 40px 0;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .divisions-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .division-image {
        height: 200px;
    }

    .division-content {
        padding: 20px;
    }

    .division-title {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .division-description {
        font-size: 14px;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .business-divisions {
        padding: 30px 0;
    }

    .section-title {
        font-size: 22px;
        margin-bottom: 25px;
    }

    .divisions-grid {
        gap: 20px;
    }

    .division-image {
        height: 180px;
    }

    .division-content {
        padding: 15px;
    }

    .division-title {
        font-size: 18px;
    }

    .division-description {
        font-size: 13px;
    }
}

@media (max-width: 360px) {
    .section-title {
        font-size: 20px;
    }

    .division-image {
        height: 160px;
    }

    .division-content {
        padding: 12px;
    }

    .division-title {
        font-size: 16px;
    }

    .division-description {
        font-size: 12px;
    }
}

/* ===================================
   NEWS CAROUSEL - MOBILE
   =================================== */

@media (max-width: 768px) {
    .news-section {
        padding: 40px 0;
    }

    .carousel-content {
        margin: 0 50px;
    }

    .news-card {
        flex-direction: column;
        height: auto;
    }

    .news-image {
        height: 200px;
        width: 100%;
    }

    .news-content {
        padding: 20px;
    }

    .news-title {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .news-subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
    }

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

    .carousel-dots {
        margin-top: 25px;
        gap: 10px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .news-section {
        padding: 30px 0;
    }

    .carousel-content {
        margin: 0 45px;
    }

    .news-image {
        height: 180px;
    }

    .news-content {
        padding: 15px;
    }

    .news-title {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .news-subtitle {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .carousel-btn {
        width: 35px;
        height: 35px;
    }

    .carousel-btn svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 360px) {
    .carousel-content {
        margin: 0 40px;
    }

    .news-image {
        height: 150px;
    }

    .news-content {
        padding: 12px;
    }

    .news-title {
        font-size: 15px;
    }

    .news-subtitle {
        font-size: 12px;
    }

    .carousel-btn {
        width: 30px;
        height: 30px;
    }

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

    .dot {
        width: 8px;
        height: 8px;
    }
}

/* ===================================
   OFFICE SECTION - MOBILE
   =================================== */

@media (max-width: 768px) {
    .office-section {
        padding: 40px 0;
    }

    .office-card {
        padding: 25px;
    }

    .office-card h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .office-card p {
        font-size: 16px;
        margin-bottom: 6px;
    }

    .office-detail {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .office-section {
        padding: 30px 0;
    }

    .office-card {
        padding: 20px;
    }

    .office-card h3 {
        font-size: 18px;
    }

    .office-card p {
        font-size: 15px;
    }

    .office-detail {
        font-size: 13px;
    }
}

@media (max-width: 360px) {
    .office-card {
        padding: 15px;
    }

    .office-card h3 {
        font-size: 16px;
    }

    .office-card p {
        font-size: 14px;
    }

    .office-detail {
        font-size: 12px;
    }
}

/* ===================================
   FOOTER - MOBILE
   =================================== */

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 40px;
    }

    .footer-left {
        align-items: center;
        text-align: center;
    }

    .footer-logo img {
        height: 60px;
    }

    .footer-subtitle {
        font-size: 16px;
    }

    .footer-right {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-section {
        text-align: center;
    }

    .footer-section h4 {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .footer-section a {
        font-size: 13px;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding-top: 20px;
    }

    .footer-copyright {
        font-size: 12px;
    }

    .footer-bottomm {
        padding-top: 20px;
    }

    .footer-bottomm .footer-copyright {
        font-size: 11px;
        margin-bottom: 10px;
    }

    .furkatech-logo {
        height: 16px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 30px 0 15px;
    }

    .footer-top {
        gap: 30px;
        margin-bottom: 30px;
    }

    .footer-logo img {
        height: 50px;
    }

    .footer-subtitle {
        font-size: 14px;
    }

    .footer-right {
        gap: 25px;
    }

    .footer-section h4 {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .footer-section a {
        font-size: 12px;
    }

    .footer-section li {
        margin-bottom: 8px;
    }
}

@media (max-width: 360px) {
    .footer {
        padding: 25px 0 12px;
    }

    .footer-top {
        gap: 25px;
        margin-bottom: 25px;
    }

    .footer-logo img {
        height: 45px;
    }

    .footer-subtitle {
        font-size: 13px;
    }

    .footer-section h4 {
        font-size: 12px;
    }

    .footer-section a {
        font-size: 11px;
    }

    .footer-bottomm .footer-copyright {
        font-size: 10px;
    }

    .furkatech-logo {
        height: 14px;
    }
}

/* ===================================
   PAGE HEADER - MOBILE
   =================================== */

@media (max-width: 768px) {
    .page-header {
        padding: 50px 0;
    }

    .page-header h1 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .page-header p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 40px 0;
    }

    .page-header h1 {
        font-size: 24px;
    }

    .page-header p {
        font-size: 14px;
    }
}

@media (max-width: 360px) {
    .page-header {
        padding: 30px 0;
    }

    .page-header h1 {
        font-size: 22px;
    }

    .page-header p {
        font-size: 13px;
    }
}

/* ===================================
   CONTENT SECTION - MOBILE
   =================================== */

@media (max-width: 768px) {
    .content-section {
        padding: 50px 0;
    }

    .content-section h2 {
        font-size: 26px;
        margin-bottom: 20px;
    }

    .content-section p {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 15px;
    }

    .content-section ul {
        padding-left: 20px;
    }

    .content-section li {
        font-size: 15px;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .content-section {
        padding: 40px 0;
    }

    .content-section h2 {
        font-size: 22px;
    }

    .content-section p {
        font-size: 14px;
    }

    .content-section li {
        font-size: 14px;
    }
}

@media (max-width: 360px) {
    .content-section {
        padding: 30px 0;
    }

    .content-section h2 {
        font-size: 20px;
    }

    .content-section p {
        font-size: 13px;
    }

    .content-section li {
        font-size: 13px;
    }
}

/* ===================================
   PRODUCT GRID - MOBILE
   =================================== */

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 40px !important;
    }

    .product-card {
        padding: 25px;
    }

    .product-card h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .product-card p {
        font-size: 14px;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .product-grid {
        gap: 20px;
        margin-top: 30px !important;
    }

    .product-card {
        padding: 20px;
    }

    .product-card h3 {
        font-size: 18px;
    }

    .product-card p {
        font-size: 13px;
    }
}

@media (max-width: 360px) {
    .product-grid {
        gap: 15px;
    }

    .product-card {
        padding: 15px;
    }

    .product-card h3 {
        font-size: 16px;
    }

    .product-card p {
        font-size: 12px;
    }
}

/* ===================================
   COOKIE BANNER - MOBILE
   =================================== */

@media (max-width: 768px) {
    .cookie-content {
        padding: 25px 20px;
    }

    .cookie-content h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .cookie-content p {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .cookie-toggles {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 20px;
    }

    .cookie-toggle {
        padding: 10px 14px;
    }

    .cookie-toggle span {
        font-size: 13px;
    }

    .toggle {
        width: 45px;
        height: 24px;
    }

    .slider:before {
        height: 16px;
        width: 16px;
    }

    input:checked + .slider:before {
        transform: translateX(21px);
    }

    .cookie-actions {
        flex-direction: column;
        gap: 12px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        padding: 12px 24px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .cookie-content {
        padding: 20px 15px;
    }

    .cookie-content h3 {
        font-size: 18px;
    }

    .cookie-content p {
        font-size: 12px;
    }

    .cookie-toggle {
        padding: 8px 12px;
    }

    .cookie-toggle span {
        font-size: 12px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 10px 20px;
        font-size: 13px;
    }
}

@media (max-width: 360px) {
    .cookie-content {
        padding: 15px 10px;
    }

    .cookie-content h3 {
        font-size: 16px;
    }

    .cookie-content p {
        font-size: 11px;
    }

    .cookie-toggle span {
        font-size: 11px;
    }

    .toggle {
        width: 40px;
        height: 22px;
    }

    .slider:before {
        height: 14px;
        width: 14px;
    }

    input:checked + .slider:before {
        transform: translateX(18px);
    }
}

/* ===================================
   UTILITY CLASSES - MOBILE
   =================================== */

/* Text Alignment Mobile */
@media (max-width: 768px) {
    .text-center-mobile {
        text-align: center !important;
    }

    .text-left-mobile {
        text-align: left !important;
    }
}

/* Hide on Mobile */
@media (max-width: 768px) {
    .hide-mobile {
        display: none !important;
    }
}

/* Show only on Mobile */
.show-mobile {
    display: none !important;
}

@media (max-width: 768px) {
    .show-mobile {
        display: block !important;
    }
}

/* Spacing Utilities Mobile */
@media (max-width: 768px) {
    .mb-mobile-20 {
        margin-bottom: 20px !important;
    }

    .mb-mobile-30 {
        margin-bottom: 30px !important;
    }

    .mt-mobile-20 {
        margin-top: 20px !important;
    }

    .mt-mobile-30 {
        margin-top: 30px !important;
    }

    .p-mobile-15 {
        padding: 15px !important;
    }

    .p-mobile-20 {
        padding: 20px !important;
    }
}

/* ===================================
   TOUCH OPTIMIZATIONS
   =================================== */

@media (max-width: 768px) {
    /* Larger touch targets */
    button,
    a,
    .carousel-btn,
    .hamburger-menu,
    .mobile-search-btn,
    .language-btn,
    .social-link {
        min-height: 44px;
        min-width: 44px;
    }

    /* Prevent text selection on tap */
    .carousel-btn,
    .hamburger-menu,
    .dot,
    .mobile-search-btn,
    .language-btn,
    .social-link {
        -webkit-tap-highlight-color: transparent;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        user-select: none;
    }

    /* Smooth scrolling */
    html {
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }

    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }
}

/* ===================================
   LANDSCAPE MODE FIXES
   =================================== */

@media (max-width: 768px) and (orientation: landscape) {
    .hero-video {
        height: 100vh;
    }

    .hero-content {
        padding: 10px 20px;
    }

    .hero-text {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .hero-highlight {
        font-size: 14px;
        margin-top: 15px;
    }

    .mobile-menu-overlay {
        width: 50%;
        max-width: 400px;
    }

    .mobile-menu-content {
        padding: 60px 30px 30px;
    }
}

/* ===================================
   PERFORMANCE OPTIMIZATIONS
   =================================== */

@media (max-width: 768px) {
    /* Reduce animations on mobile for better performance */
    * {
        animation-duration: 0.3s !important;
        transition-duration: 0.3s !important;
    }

    /* Optimize images */
    img {
        image-rendering: -webkit-optimize-contrast;
    }

    /* GPU acceleration for smooth animations */
    .mobile-menu-overlay,
    .menu-backdrop,
    .hamburger-menu span {
        transform: translateZ(0);
        will-change: transform;
    }
}

/* ===================================
   ACCESSIBILITY - MOBILE
   =================================== */

@media (max-width: 768px) {
    /* Focus visible for keyboard navigation */
    *:focus-visible {
        outline: 3px solid #CBFF00;
        outline-offset: 3px;
    }

    .hamburger-menu:focus-visible,
    .mobile-search-btn:focus-visible,
    .language-btn:focus-visible,
    .social-link:focus-visible {
        outline: 2px solid #CBFF00;
        outline-offset: 2px;
    }

    /* Ensure readable font sizes */
    body {
        font-size: 14px;
        line-height: 1.6;
    }

    /* Better contrast for small screens */
    .hero-text,
    .hero-highlight {
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    }

    /* Minimum touch target size */
    .mobile-menu-links a {
        min-height: 48px;
        display: flex;
        align-items: center;
    }
}

/* ===================================
   ANIMATION KEYFRAMES
   =================================== */

@keyframes slideInFromLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Apply animations when menu opens */
@media (max-width: 768px) {
    .mobile-menu-overlay.active {
        animation: slideInFromLeft 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }

    .menu-backdrop.active {
        animation: fadeIn 0.4s ease;
    }
}

/* ===================================
   PRINT STYLES - MOBILE
   =================================== */

@media print {
    .hamburger-menu,
    .mobile-menu-overlay,
    .menu-backdrop,
    .mobile-search-btn,
    .mobile-social {
        display: none !important;
    }

    .logo-container {
        justify-content: flex-start;
    }
}

/* ===================================
   END OF MOBILE.CSS
   =================================== */

   /* ===================================
   HAMBURGER MENU - TAM EKRAN
   =================================== */

/* Masaüstünde hamburger menü gizli */
.hamburger-menu,
.mobile-menu-overlay {
    display: none;
}

@media (max-width: 768px) {
    /* Desktop top-nav'ı gizle */
    .top-nav {
        display: none !important;
    }

    /* Desktop nav-links ve search-btn gizle */
    .nav-links,
    .search-btn {
        display: none !important;
    }

    /* Main nav düzenlemesi */
    .main-nav-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 15px 0;
        gap: 15px;
    }

    /* Logolar yan yana */
    .logo-container {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 20px;
        width: 100%;
    }

    .logo-image {
        height: 45px;
    }

    .logo-image img {
        height: 45px;
        width: auto;
    }

    /* Hamburger Menu Butonu Göster */
    .hamburger-menu {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 32px;
        height: 24px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 999;
        position: relative;
        margin-top: 5px;
    }

    .hamburger-menu span {
        display: block;
        width: 100%;
        height: 3px;
        background-color: yellow;
        transition: all 0.3s ease;
        border-radius: 2px;
    }

    .hamburger-menu:hover span {
        background-color: #ffffff;
    }

    /* Aktif durumda X şekli */
    .hamburger-menu.active span:nth-child(1) {
        transform: rotate(45deg) translate(9px, 9px);
    }

    .hamburger-menu.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(-20px);
    }

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

    /* Mobile Menu Overlay - TAM EKRAN */
    .mobile-menu-overlay {
        display: block;
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
        z-index: 9999;
        transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        overflow-y: auto;
    }

    .mobile-menu-overlay.active {
        right: 0;
    }

    /* Close Button - Sağ Üstte */
    .mobile-menu-close {
        position: absolute;
        top: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        background: rgba(203, 255, 0, 0.1);
        border: 2px solid rgba(203, 255, 0, 0.3);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        z-index: 10000;
    }

    .mobile-menu-close:hover,
    .mobile-menu-close:active {
        background: rgba(203, 255, 0, 0.2);
        border-color: #CBFF00;
        transform: rotate(90deg) scale(1.1);
    }

    .mobile-menu-close svg {
        stroke: #CBFF00;
    }

    .mobile-menu-content {
        padding: 100px 40px 40px;
        max-width: 500px;
        margin: 0 auto;
    }

    /* Mobile Search Button */
    .mobile-search-btn {
        width: 100%;
        padding: 18px 28px;
        background: linear-gradient(135deg, rgba(203, 255, 0, 0.15) 0%, rgba(203, 255, 0, 0.05) 100%);
        border: 2px solid rgba(203, 255, 0, 0.4);
        color: #CBFF00;
        font-size: 18px;
        font-weight: 600;
        border-radius: 12px;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        margin-bottom: 40px;
        letter-spacing: 0.8px;
        text-transform: uppercase;
    }

    .mobile-search-btn:hover,
    .mobile-search-btn:active {
        background: rgba(203, 255, 0, 0.25);
        border-color: #CBFF00;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(203, 255, 0, 0.3);
    }

    /* Mobile Menu Links */
    .mobile-menu-links {
        list-style: none;
        padding: 0;
        margin: 0 0 40px 0;
    }

    .mobile-menu-links li {
        margin-bottom: 0;
    }

    .mobile-menu-links a {
        color: #ffffff;
        text-decoration: none;
        font-size: 22px;
        font-weight: 500;
        letter-spacing: 0.8px;
        display: block;
        padding: 20px 0;
        transition: all 0.3s ease;
        border-bottom: 1px solid rgba(203, 255, 0, 0.15);
        position: relative;
    }

    .mobile-menu-links a::before {
        content: '';
        position: absolute;
        left: -100%;
        top: 0;
        width: 4px;
        height: 100%;
        background: #CBFF00;
        transition: left 0.3s ease;
    }

    .mobile-menu-links a:hover,
    .mobile-menu-links a:active {
        color: #CBFF00;
        padding-left: 20px;
        background: rgba(203, 255, 0, 0.05);
    }

    .mobile-menu-links a:hover::before {
        left: 0;
    }

    /* Language Selector */
    .mobile-language {
        margin-bottom: 40px;
        padding-bottom: 40px;
        border-bottom: 2px solid rgba(203, 255, 0, 0.25);
    }

    .mobile-language h4 {
        color: #CBFF00;
        font-size: 14px;
        font-weight: 700;
        margin-bottom: 20px;
        text-transform: uppercase;
        letter-spacing: 1.5px;
    }

    .language-options {
        display: flex;
        gap: 15px;
    }

    .language-btn {
        flex: 1;
        padding: 12px 24px;
        background: rgba(203, 255, 0, 0.08);
        border: 2px solid rgba(203, 255, 0, 0.3);
        color: #ffffff;
        font-size: 16px;
        font-weight: 600;
        border-radius: 10px;
        cursor: pointer;
        transition: all 0.3s ease;
        letter-spacing: 0.5px;
    }

    .language-btn:hover {
        background: rgba(203, 255, 0, 0.15);
        border-color: rgba(203, 255, 0, 0.5);
        transform: translateY(-2px);
    }

    .language-btn.active {
        background: #CBFF00;
        color: #000000;
        border-color: #CBFF00;
        font-weight: 700;
    }

    /* Social Media Links */
    .mobile-social {
        margin-top: 40px;
    }

    .mobile-social h4 {
        color: #CBFF00;
        font-size: 14px;
        font-weight: 700;
        margin-bottom: 20px;
        text-transform: uppercase;
        letter-spacing: 1.5px;
    }

    .social-links {
        display: flex;
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .social-link {
        width: 55px;
        height: 55px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(203, 255, 0, 0.08);
        border: 2px solid rgba(203, 255, 0, 0.3);
        border-radius: 50%;
        color: #CBFF00;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .social-link:hover,
    .social-link:active {
        background: #CBFF00;
        color: #000000;
        border-color: #CBFF00;
        transform: translateY(-3px) scale(1.1);
        box-shadow: 0 6px 20px rgba(203, 255, 0, 0.4);
    }

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

/* Küçük ekranlar için ayarlamalar */
@media (max-width: 480px) {
    .logo-image {
        height: 38px;
    }

    .logo-image img {
        height: 38px;
    }

    .mobile-menu-content {
        padding: 90px 30px 30px;
    }

    .mobile-search-btn {
        font-size: 16px;
        padding: 16px 24px;
    }

    .mobile-menu-links a {
        font-size: 20px;
        padding: 18px 0;
    }

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

@media (max-width: 360px) {
    .logo-image {
        height: 32px;
    }

    .logo-image img {
        height: 32px;
    }

    .hamburger-menu {
        width: 28px;
        height: 22px;
    }

    .mobile-menu-content {
        padding: 80px 25px 25px;
    }

    .mobile-search-btn {
        font-size: 15px;
        padding: 14px 20px;
    }

    .mobile-menu-links a {
        font-size: 18px;
        padding: 16px 0;
    }

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

    .social-link {
        width: 50px;
        height: 50px;
    }
}

/* ===================================
   HERO VIDEO SECTION - MOBILE
   =================================== */

@media (max-width: 768px) {
    .hero-video {
        height: 70vh;
        min-height: 400px;
        position: relative;
        width: 100%;
        overflow: hidden;
    }

    .video-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
    }

    .video-embed-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
    }

    .video-embed-bg iframe {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        /* Video boyutlandırma - mobil için optimize */
        width: 100vw;
        height: calc(100vw * 1.778); /* 16:9 aspect ratio */
        min-height: 100%;
        min-width: calc(100vh * 1.778);
        pointer-events: none;
    }

    .hero-overlay {
        padding: 20px 0;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 2;
    }

    .hero-content {
        padding: 0 20px;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .hero-text {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 20px;
        text-align: justify;
    }

    .hero-highlight {
        font-size: 16px;
        margin-top: 25px;
        line-height: 1.5;
    }

    .hero-logo {
        bottom: 20px;
        left: 20px;
        z-index: 10;
    }

    .hero-logo img {
        width: 120px;
    }
}

@media (max-width: 480px) {
    .hero-video {
        height: 65vh;
        min-height: 350px;
    }

    .video-embed-bg iframe {
        width: 100vw;
        height: calc(100vw * 1.778);
        min-height: 100%;
        min-width: calc(100vh * 1.778);
    }

    .hero-content {
        padding: 0 15px;
    }

    .hero-text {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .hero-highlight {
        font-size: 15px;
        margin-top: 20px;
    }

    .hero-logo {
        bottom: 15px;
        left: 15px;
    }

    .hero-logo img {
        width: 100px;
    }
}

@media (max-width: 360px) {
    .hero-video {
        height: 60vh;
        min-height: 300px;
    }

    .video-embed-bg iframe {
        width: 100vw;
        height: calc(100vw * 1.778);
        min-height: 100%;
        min-width: calc(100vh * 1.778);
    }

    .hero-content {
        padding: 0 12px;
    }

    .hero-text {
        font-size: 12px;
        margin-bottom: 12px;
    }

    .hero-highlight {
        font-size: 14px;
        margin-top: 15px;
    }

    .hero-logo {
        bottom: 10px;
        left: 10px;
    }

    .hero-logo img {
        width: 85px;
    }
}

@media (max-width: 300px) {
    .hero-video {
        height: 55vh;
        min-height: 280px;
    }

    .video-embed-bg iframe {
        width: 100vw;
        height: calc(100vw * 1.778);
        min-height: 100%;
        min-width: calc(100vh * 1.778);
    }

    .hero-content {
        padding: 0 10px;
    }

    .hero-text {
        font-size: 11px;
        margin-bottom: 10px;
        line-height: 1.5;
    }

    .hero-highlight {
        font-size: 13px;
        margin-top: 12px;
    }

    .hero-logo {
        bottom: 8px;
        left: 8px;
    }

    .hero-logo img {
        width: 70px;
    }
}

/* ===================================
   DARK MODE FIX - MOBİL TEMA BUTONU
   =================================== */

@media (max-width: 768px) {
    /* Light Mode için tema butonu stili */
    .mobile-theme {
        margin-bottom: 35px;
    }

    .theme-toggle-mobile {
        width: 100%;
        padding: 14px 24px;
        background: rgba(203, 255, 0, 0.08);
        border: 2px solid rgba(203, 255, 0, 0.3);
        color: #ffffff;
        font-size: 16px;
        font-weight: 600;
        border-radius: 10px;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
    }

    .theme-toggle-mobile svg {
        width: 24px;
        height: 24px;
        stroke: yellow;
        fill: none;
    }

    .theme-toggle-mobile span {
        color: #ffffff;
    }

    /* Dark Mode için tema butonu stili - ÖNEMLİ! */
    body.dark-mode .mobile-theme {
        border-bottom: 1px solid #333;
    }

    body.dark-mode .theme-toggle-mobile {
        background: rgba(203, 255, 0, 0.08) !important;
        border: 2px solid rgba(203, 255, 0, 0.3) !important;
        color: #e0e0e0 !important;
    }

    body.dark-mode .theme-toggle-mobile:hover,
    body.dark-mode .theme-toggle-mobile:active {
        background: rgba(203, 255, 0, 0.2) !important;
        border-color: yellow !important;
        transform: translateY(-2px);
    }

    body.dark-mode .theme-toggle-mobile svg {
        stroke: yellow !important;
    }

    body.dark-mode .theme-toggle-mobile span {
        color: #ffffff !important;
    }

    /* Hamburger menü dark mode düzeltmesi */
    body.dark-mode .hamburger-menu span {
        background-color: yellow;
    }

    body.dark-mode .hamburger-menu.active span {
        background-color: yellow;
    }

    /* Mobil arama butonu dark mode */
    body.dark-mode .mobile-search-btn {
        background: linear-gradient(135deg, rgba(203, 255, 0, 0.15) 0%, rgba(203, 255, 0, 0.05) 100%);
        border: 2px solid rgba(203, 255, 0, 0.4);
        color: yellow;
    }

    body.dark-mode .mobile-search-btn:hover,
    body.dark-mode .mobile-search-btn:active {
        background: yellow !important;
        color: #000 !important;
        border-color: yellow !important;
    }

    /* Menü linkleri dark mode */
    body.dark-mode .mobile-menu-links a {
        color: #e0e0e0;
        border-bottom: 1px solid rgba(203, 255, 0, 0.2);
    }

    body.dark-mode .mobile-menu-links a:hover {
        color: yellow;
        background: rgba(203, 255, 0, 0.1);
    }

    /* Dil butonları dark mode */
    body.dark-mode .language-btn.active {
        background: yellow !important;
        color: #000 !important;
        border-color: yellow !important;
        box-shadow: 0 0 15px rgba(203, 255, 0, 0.5);
    }

    /* Sosyal medya linkleri dark mode */
    body.dark-mode .social-link:hover {
        background: yellow !important;
        color: #000 !important;
        border-color: yellow !important;
        box-shadow: 0 6px 20px rgba(203, 255, 0, 0.5);
    }

    /* Menu backdrop dark mode */
    body.dark-mode .menu-backdrop {
        background: rgba(0, 0, 0, 0.9);
    }
}