/* Tablet Styles */
@media (max-width: 1024px) {
    /* Intro Section */
    .intro-section {
        padding: var(--spacing-xl) 0;
    }
    
    .intro-container {
        padding: 0 var(--spacing-lg);
    }
    
    .intro-headline {
        font-size: var(--font-size-xl);
    }
    
    /* Latest Projects Section - tablet */
    .latest-projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .latest-projects-title {
        font-size: var(--font-size-2xl);
    }
    :root {
        --font-size-4xl: 48px;
        --font-size-3xl: 36px;
        --font-size-2xl: 28px;
        --navbar-height: 64px;
        --navbar-height-scrolled: 64px;
    }
    
    .navbar-container {
        padding: 0 var(--spacing-md);
    }
    
    .hero-home-container {
        gap: var(--spacing-xl);
    }
    
    .hero-home-title-main {
        font-size: var(--font-size-2xl);
    }
    
    .hero-home-title-sub {
        font-size: clamp(1.75rem, 4vw, 2.25rem);
    }
    
    /* Intro Section */
    .intro-section {
        padding: var(--spacing-xl) 0;
    }
    
    .intro-container {
        padding: 0 var(--spacing-lg);
    }
    
    .intro-headline {
        font-size: var(--font-size-xl);
    }
    
    /* Latest Projects Section */
    .latest-projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .latest-projects-header {
        flex-direction: column;
    }
    
    .latest-projects-view-all {
        align-self: flex-start;
    }
    
    
    /* Footer Tablet (<=1024px) - tüm elemanları alt alta göster */
    .footer-container {
        padding: 0 var(--spacing-lg);
    }
    
    .footer-top {
        flex-direction: column;
        gap: var(--spacing-xl);
        justify-content: center;
        align-items: center;
    }
    
    .footer-left {
        align-items: center;
        width: 100%;
    }
    
    .footer-right {
        width: 100%;
        align-items: center;
    }
    
    /* 1 kolon 6 satır: grid yerine flex ile zorla alt alta */
    .footer-contact-grid {
        display: flex;
        flex-direction: column;
        gap: var(--spacing-lg);
        max-width: 100%;
        width: 100%;
    }
    
    .footer-contact-grid .footer-contact-item {
        width: 100%;
        min-width: 0;
        grid-column: unset;
        grid-row: unset;
        align-items: center;
        text-align: center;
    }
    
    .footer-social {
        align-items: center;
    }
    
    .footer-contact {
        flex-direction: column;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .navbar {
        padding: 0 var(--spacing-sm);
    }
    
    .navbar-actions {
        gap: var(--spacing-xs);
    }
    
    .navbar-menu-btn span {
        display: none;
    }
    
    .navbar-lang-btn .lang-text {
        display: none;
    }
    
    .navbar-lang-btn {
        padding: var(--spacing-xs);
        min-width: 36px;
    }
    
    .navbar-call-btn {
        padding: var(--spacing-xs) var(--spacing-sm);
        font-size: 12px;
    }
    
    :root {
        --font-size-4xl: 36px;
        --font-size-3xl: 28px;
        --font-size-2xl: 24px;
        --font-size-xl: 20px;
        --navbar-height: 68px;
        --navbar-height-scrolled: 68px;
        --spacing-xl: 2rem;
        --spacing-2xl: 3rem;
    }
    
    .navbar-container {
        padding: 0 var(--spacing-sm);
    }
    
    .logo-icon {
        width: 52px;
        height: 52px;
    }
    
    .navbar-actions {
        gap: 4px;
    }
    
    .navbar-buttons-group {
        gap: 4px;
    }
    
    .navbar-menu-btn {
        font-size: 13px;
        padding: 8px 10px;
        min-width: 44px;
        min-height: 44px;
        height: 44px;
        display: flex !important;
        align-items: center;
        justify-content: center;
        position: relative;
        z-index: 10001 !important;
        opacity: 1 !important;
        visibility: visible !important;
        border: none !important;
        border-radius: 4px;
        background: transparent !important;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }
    
    .navbar-menu-btn span {
        display: none;
    }
    
    .menu-icon {
        display: flex !important;
        flex-direction: column !important;
        min-width: 24px;
        width: 24px;
        height: 18px !important;
        position: relative;
        z-index: 10002 !important;
        align-items: center;
        justify-content: center;
        gap: 4px;
        pointer-events: none;
    }
    
    .menu-icon span {
        width: 24px;
        height: 3px;
        background-color: var(--text-dark) !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: block !important;
        flex-shrink: 0;
    }
    
    .navbar-lang-btn .lang-text {
        display: none;
    }
    
    .navbar-lang-btn {
        padding: 6px 8px;
        min-width: 36px;
    }
    
    .navbar-call-btn {
        padding: 6px 10px;
        font-size: 12px;
    }
    
    /* Yarım ekran menü - mobil */
    .menu-panel {
        width: min(90%, 320px);
    }
    
    .menu-header {
        padding: var(--spacing-md) var(--spacing-lg);
    }
    
    .menu-brand-name {
        font-size: var(--font-size-lg);
    }
    
    .menu-brand-subtitle {
        font-size: 14px;
    }
    
    .menu-nav {
        padding: var(--spacing-lg);
    }
    
    .menu-item {
        font-size: var(--font-size-base);
        padding: var(--spacing-sm) 0;
    }
    
    .menu-footer {
        padding: var(--spacing-md) var(--spacing-lg);
    }
    
    .menu-footer p {
        font-size: 11px;
    }
    
    .menu-logo-icon {
        width: 60px;
        height: 60px;
    }
    
    .menu-logo-text h2 {
        font-size: var(--font-size-xl);
    }
    
    .hero-home {
        height: auto;
        min-height: 100vh;
        flex-direction: column;
        background-color: #f5f5f5;
    }
    
    .hero-home-container {
        flex-direction: column;
        height: auto;
        min-height: 100vh;
    }
    
    .hero-home-left {
        flex-direction: column;
        position: relative;
        z-index: 1;
        width: 100%;
        max-width: none;
        flex: 1 1 auto;
        padding: calc(var(--navbar-height) + var(--spacing-lg)) var(--spacing-md) var(--spacing-lg);
        background-color: #f5f5f5;
        border-right: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
    
    .hero-home-tagline {
        color: #9ca3af;
    }
    
    .hero-home-title-main,
    .hero-home-title-sub {
        color: #111;
    }
    
    .hero-home-desc {
        color: var(--text-light);
    }
    
    .hero-home-nav-item {
        color: #9ca3af;
    }
    
    .hero-home-nav-item:hover {
        color: #6b7280;
    }
    
    .hero-home-nav-item.active {
        color: #111;
    }
    
    .hero-home-nav-item.active::after {
        background-color: #111;
    }
    
    .hero-home-btn-primary {
        background-color: #111;
        color: #fff;
        border: 2px solid #111;
    }
    
    .hero-home-btn-primary:hover {
        background-color: #333;
        border-color: #333;
        color: #fff;
    }
    
    .hero-home-btn-secondary {
        background-color: transparent;
        color: #6b7280;
        border: 2px solid #d1d5db;
    }
    
    .hero-home-btn-secondary:hover {
        border-color: #6b7280;
        color: #374151;
        background-color: transparent;
    }
    
    .hero-home-nav {
        flex-direction: row;
        gap: var(--spacing-md);
    }
    
    .hero-home-nav-item.active::after {
        left: 50%;
        top: calc(100% + 4px);
        transform: translateX(-50%);
        width: 20px;
        height: 2px;
    }
    
    .hero-home-content {
        min-height: 350px;
    }
    
    .hero-home-text {
        padding-right: 0;
    }
    
    .hero-home-visual {
        position: relative;
        inset: auto;
        z-index: 0;
        width: 100%;
        height: 50vh;
        min-height: 280px;
        flex-shrink: 0;
    }
    
    .hero-home-img-overlay {
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.25) 40%, rgba(0, 0, 0, 0.12) 100%);
    }
    
    .hero-home-title-main {
        font-size: var(--font-size-xl);
    }
    
    .hero-home-title-sub {
        font-size: var(--font-size-lg);
    }
    
    .hero-home-buttons {
        flex-direction: column;
    }
    
    .hero-home-desc {
        font-size: 14px;
    }
    
    .hero-home-img-wrap {
        width: 100%;
        height: 100%;
        padding-bottom: 0;
        background-size: cover;
    }
    
    /* Splash Screen Mobile */
    .splash-screen {
        height: 100vh;
        height: 100dvh;
        min-height: 100vh;
        min-height: -webkit-fill-available;
        width: 100vw;
    }
    
    .splash-sembol {
        width: 90px;
        max-height: 75px;
    }
    
    .splash-yazi {
        width: 180px;
        max-width: 80vw;
    }
    
    /* Footer Mobile */
    .footer-top {
        flex-direction: column;
        gap: var(--spacing-lg);
        justify-content: center;
        align-items: center;
    }
    
    .footer-logo {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-container {
        padding: 0 var(--spacing-md);
    }
    
    .footer-left {
        align-items: center;
        width: 100%;
    }
    
    .footer-logo img {
        width: 80px;
        height: 80px;
    }
    
    .footer-links {
        flex-direction: column;
        width: 100%;
        gap: var(--spacing-lg);
        justify-content: center;
        align-items: center;
    }
    
    .footer-right {
        width: 100%;
        align-items: center;
    }
    
    /* 1 kolon 6 satır - mobil */
    .footer-contact-grid {
        display: flex;
        flex-direction: column;
        gap: var(--spacing-md);
        max-width: 100%;
    }
    
    .footer-contact-grid .footer-contact-item {
        width: 100%;
        min-width: 0;
        grid-column: unset;
        grid-row: unset;
        align-items: center;
        text-align: center;
    }
    
    .footer-contact-title {
        font-size: 0.875rem;
        text-align: center;
    }
    
    .footer-contact-text {
        font-size: 0.8125rem;
        line-height: 1.5;
        text-align: center;
    }
    
    .footer-map-link {
        font-size: 0.8125rem;
    }
    
    .footer-link-list a {
        font-size: 0.8125rem;
    }
    
    .footer-logo-main {
        font-size: var(--font-size-xl);
    }
    
    .footer-logo-sub {
        font-size: 0.875rem;
    }
    
    .footer-social {
        align-items: center;
        width: 100%;
    }
    
    .footer-link-column {
        width: 100%;
    }
    
    .footer-link-title {
        text-align: center;
    }
    
    .footer-middle {
        flex-direction: column;
        gap: var(--spacing-lg);
    }
    
    .footer-contact {
        flex-direction: column;
        gap: var(--spacing-lg);
    }
    
    .footer-contact-item {
        width: 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-sm);
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    :root {
        --font-size-4xl: 28px;
        --font-size-3xl: 24px;
        --font-size-2xl: 20px;
        --font-size-xl: 18px;
        --navbar-height: 64px;
        --navbar-height-scrolled: 64px;
    }
    
    .navbar-logo {
        gap: 6px;
    }
    
    .logo-icon {
        width: 48px;
        height: 48px;
    }
    
    .navbar-logo-text .logo-main {
        font-size: 16px;
    }
    
    .navbar-logo-text .logo-sub {
        font-size: 9px;
    }
    
    .navbar-actions {
        gap: 3px;
    }
    
    .navbar-buttons-group {
        gap: 3px;
    }
    
    .navbar-menu-btn {
        font-size: 12px;
        padding: 6px 8px;
        min-width: 40px;
        min-height: 40px;
        height: 40px;
        display: flex !important;
        align-items: center;
        justify-content: center;
        opacity: 1 !important;
        visibility: visible !important;
        position: relative;
        z-index: 10001 !important;
        border: none !important;
        border-radius: 4px;
        background: transparent !important;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }
    
    .menu-icon {
        display: flex !important;
        flex-direction: column !important;
        min-width: 20px;
        width: 20px;
        height: 15px !important;
        z-index: 10002 !important;
        align-items: center;
        justify-content: center;
        gap: 4px;
        pointer-events: none;
    }
    
    .menu-icon span {
        width: 20px;
        height: 2.5px;
        background-color: var(--text-dark) !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: block !important;
        flex-shrink: 0;
    }
    
    .navbar-lang-btn {
        padding: 6px 8px;
        min-width: 32px;
    }
    
    .navbar-call-btn {
        padding: 6px 10px;
        font-size: 11px;
    }
    
    .menu-panel {
        width: min(92%, 300px);
    }
    
    .menu-header {
        padding: var(--spacing-sm) var(--spacing-md);
    }
    
    .menu-brand-name {
        font-size: var(--font-size-base);
    }
    
    .menu-nav {
        padding: var(--spacing-md);
    }
    
    .menu-item {
        font-size: 15px;
        padding: var(--spacing-xs) 0;
    }
    
    .hero-home-title-main {
        font-size: var(--font-size-lg);
    }
    
    .hero-home-title-sub {
        font-size: var(--font-size-base);
    }
    
    /* Intro Section */
    .intro-section {
        padding: var(--spacing-lg) 0;
    }
    
    .intro-container {
        padding: 0 var(--spacing-md);
    }
    
    .intro-content {
        padding-left: var(--spacing-md);
    }
    
    .intro-dot {
        width: 6px;
        height: 6px;
    }
    
    .intro-headline {
        font-size: var(--font-size-lg);
        margin-bottom: var(--spacing-sm);
    }
    
    .intro-text {
        font-size: 14px;
        margin-bottom: var(--spacing-md);
    }
    
    /* Latest Projects Section - mobile */
    .latest-projects-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
    
    .latest-projects-container {
        padding: 0 var(--spacing-md);
    }
    
    .latest-projects-title {
        font-size: var(--font-size-xl);
    }
    
    .latest-projects-filters {
        gap: var(--spacing-sm);
    }
    
    .latest-projects-filter {
        font-size: 14px;
    }
    
    /* Tanıtım videosu - mobil */
    .home-video-section {
        padding: var(--spacing-lg) var(--spacing-sm);
    }
    
    .home-video-play-btn {
        width: 64px;
        height: 64px;
    }
    
    .home-video-play-btn svg {
        width: 64px;
        height: 64px;
    }
    
    /* Footer Small Mobile */
    .footer-container {
        padding: 0 var(--spacing-sm);
    }
    
    .footer-top {
        flex-direction: column;
        gap: var(--spacing-md);
        justify-content: center;
        align-items: center;
    }
    
    .footer-left {
        align-items: center;
        width: 100%;
    }
    
    .footer-logo img {
        width: 60px;
        height: 60px;
    }
    
    .footer-right {
        width: 100%;
        align-items: center;
    }
    
    /* 1 kolon 6 satır - küçük mobil, yazılar ekrana sığacak */
    .footer-contact-grid {
        display: flex;
        flex-direction: column;
        gap: var(--spacing-sm);
        max-width: 100%;
    }
    
    .footer-contact-grid .footer-contact-item {
        width: 100%;
        min-width: 0;
        grid-column: unset;
        grid-row: unset;
        align-items: center;
        text-align: center;
    }
    
    .footer-contact-title {
        font-size: 0.8125rem;
        text-align: center;
    }
    
    .footer-contact-text {
        font-size: 0.75rem;
        text-align: center;
    }
    
    .footer-map-link {
        font-size: 0.75rem;
    }
    
    .footer-link-list a {
        font-size: 0.75rem;
    }
    
    .footer-logo-main {
        font-size: var(--font-size-lg);
    }
    
    .footer-logo-sub {
        font-size: 0.8125rem;
    }
    
    .footer-social {
        align-items: center;
        width: 100%;
    }
    
    .footer-bottom {
        padding-top: var(--spacing-md);
    }
    
    .footer-link-column {
        flex: 1;
        min-width: 0;
        width: 100%;
    }
    
    .footer-middle {
        flex-direction: column;
        gap: var(--spacing-xl);
    }
    
    .footer-contact {
        flex-direction: column;
        width: 100%;
    }
    
    .footer-contact-item {
        width: 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

