/* ===== MOBİL UYUMLULUK CSS ===== */
/* Tüm cihazlar için responsive tasarım */

/* ===== GENEL MOBİL AYARLAR ===== */
@media screen and (max-width: 1200px) {
    :root {
        --section-padding: 4rem 0;
        --container-padding: 0 1.5rem;
    }
    
    .container {
        max-width: 100%;
        padding: 0 1.5rem;
    }
}

/* ===== TABLET VE KÜÇÜK EKRANLAR (1024px ve altı) ===== */
@media screen and (max-width: 1024px) {
    :root {
        --section-padding: 3.5rem 0;
    }
    
    /* Header */
    .nav-container {
        padding: 0.9rem 1.5rem;
    }
    
    .nav-menu {
        gap: 0.5rem;
    }
    
    .nav-link {
        font-size: 0.8rem;
        padding: 0.35rem 0.5rem;
    }
    
    .phone-btn {
        padding: 0.55rem 1rem;
        font-size: 0.8rem;
    }
    
    /* Hero Section */
    .hero-title {
        font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    /* Services */
    .services-main-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    /* About */
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    /* Contact */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    /* Products */
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }
    
    .category-products {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

/* ===== MOBİL CİHAZLAR (768px ve altı) ===== */
@media screen and (max-width: 768px) {
    :root {
        --section-padding: 3rem 0;
        --container-padding: 0 1rem;
        font-size: 15px;
    }
    
    html {
        font-size: 15px;
    }
    
    body {
        font-size: 0.95rem;
    }
    
    /* Menü açıkken sayfa scroll'unu engelle */
    body.menu-open {
        overflow: hidden !important;
        position: fixed;
        width: 100%;
        height: 100%;
    }
    
    /* ===== HEADER MOBİL ===== */
    .header {
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    .nav-container {
        padding: 0.8rem 1rem;
        flex-wrap: wrap;
    }
    
    .logo {
        font-size: 1.3rem;
        flex-shrink: 0;
    }
    
    .logo i {
        font-size: 1.5rem;
    }
    
    .logo span {
        font-size: 1.2rem;
    }
    
    .logo img,
    .logo-img {
        height: 40px;
        max-width: 180px;
        width: auto;
        object-fit: contain;
        background: transparent !important;
        mix-blend-mode: multiply;
    }
    
    /* Mobil Menü Toggle */
    .mobile-menu-toggle {
        display: flex !important;
        order: 3;
    }
    
    /* Navigasyon Menüsü - Mobil */
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 1.5rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        gap: 0;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-link {
        display: block;
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
        text-align: left;
        border-radius: 8px;
        margin-bottom: 0.25rem;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .nav-link:hover,
    .nav-link.active {
        background: var(--bg-secondary);
        color: var(--primary-color);
    }
    
    /* Phone Button - Mobil */
    .phone-btn {
        padding: 0.5rem 0.9rem;
        font-size: 0.75rem;
        order: 2;
    }
    
    .phone-btn span {
        display: none;
    }
    
    .phone-btn i {
        margin: 0;
    }
    
    /* ===== HERO SECTION MOBİL ===== */
    .hero {
        min-height: 90vh;
        padding-top: 80px;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .title-line {
        display: block;
        margin-bottom: 0.5rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 2rem;
        line-height: 1.6;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
        margin-bottom: 2rem;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .stat-item {
        padding: 1rem;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        backdrop-filter: blur(10px);
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    .scroll-indicator {
        bottom: 1rem;
        font-size: 0.8rem;
    }
    
    /* ===== SECTIONS MOBİL ===== */
    .section-header {
        margin-bottom: 2.5rem;
        padding: 0 1rem;
    }
    
    .section-subtitle {
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
    }
    
    .section-title {
        font-size: clamp(1.8rem, 5vw, 2.2rem);
        margin-bottom: 0.75rem;
        line-height: 1.3;
    }
    
    .section-description {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    /* ===== SERVICES SECTION MOBİL ===== */
    .services {
        padding: 3rem 0;
    }
    
    .services-main-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
    }
    
    .main-service-card {
        padding: 2rem 1.5rem;
        border-radius: 15px;
    }
    
    .service-header {
        margin-bottom: 1.5rem;
    }
    
    .machine-icon {
        width: 90px;
        height: 60px;
    }
    
    .service-category {
        font-size: 0.75rem;
    }
    
    .service-main-title {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }
    
    .service-works h4 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    
    .works-list li {
        font-size: 0.9rem;
        padding: 0.4rem;
        margin-bottom: 0.5rem;
    }
    
    .service-cta-btn {
        width: 100%;
        justify-content: center;
        padding: 0.9rem 1.5rem;
        font-size: 0.85rem;
    }
    
    /* ===== ABOUT SECTION MOBİL ===== */
    .about {
        padding: 3rem 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-text {
        text-align: center !important;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .about-text .section-subtitle {
        text-align: center !important;
        display: block;
        margin: 0 auto 0.75rem;
        width: auto;
    }
    
    .about-text .section-title {
        text-align: center !important;
        font-size: clamp(1.8rem, 5vw, 2rem);
        margin-left: auto;
        margin-right: auto;
        width: 100%;
    }
    
    .about-description {
        font-size: 0.95rem;
        text-align: center !important;
        margin-bottom: 1.5rem;
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
    }
    
    .about-features {
        margin-bottom: 1.5rem;
        text-align: center;
        width: 100%;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center !important;
        margin-bottom: 1.25rem;
        align-items: center;
        width: 100%;
    }
    
    .feature-item > div {
        text-align: center !important;
        width: 100%;
    }
    
    .feature-item i {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        margin: 0 auto 0.75rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .feature-item h4 {
        font-size: 1rem;
        margin-bottom: 0.25rem;
        text-align: center !important;
    }
    
    .feature-item p {
        font-size: 0.85rem;
        text-align: center !important;
        margin: 0 auto;
    }
    
    .about-actions {
        justify-content: center;
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
        width: 100%;
    }
    
    .about-actions .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .image-placeholder {
        height: 300px;
        font-size: 1rem;
    }
    
    .image-placeholder i {
        font-size: 3rem;
    }
    
    .about-badge {
        bottom: -15px;
        right: -15px;
        padding: 1rem;
    }
    
    .badge-number {
        font-size: 1.5rem;
    }
    
    .badge-text {
        font-size: 0.8rem;
    }
    
    /* ===== PORTFOLIO SECTION MOBİL ===== */
    .portfolio {
        padding: 3rem 0;
    }
    
    .portfolio-filter {
        flex-wrap: wrap;
        gap: 0.5rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    .filter-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .portfolio-item {
        border-radius: 15px;
    }
    
    .portfolio-image {
        height: 180px;
        font-size: 2.5rem;
    }
    
    .portfolio-content {
        padding: 1.25rem;
    }
    
    .portfolio-content h3 {
        font-size: 1.1rem;
    }
    
    .portfolio-content p {
        font-size: 0.85rem;
    }
    
    /* ===== CONTACT SECTION MOBİL ===== */
    .contact {
        padding: 3rem 0;
    }
    
    .contact .section-header {
        text-align: center !important;
    }
    
    .contact .section-subtitle {
        text-align: center !important;
        display: block;
        margin: 0 auto 0.75rem;
    }
    
    .contact .section-title {
        text-align: center !important;
        margin-left: auto;
        margin-right: auto;
    }
    
    .contact .section-description {
        text-align: center !important;
        margin-left: auto;
        margin-right: auto;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        width: 100%;
    }
    
    .contact-info {
        width: 100%;
        text-align: center;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center !important;
        margin-bottom: 1.5rem;
        align-items: center;
        width: 100%;
        justify-content: center;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin: 0 auto 0.75rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .contact-details {
        text-align: center !important;
        width: 100%;
    }
    
    .contact-details h4 {
        font-size: 1rem;
        margin-bottom: 0.4rem;
        text-align: center !important;
    }
    
    .contact-details p {
        font-size: 0.9rem;
        text-align: center !important;
        margin: 0 auto;
    }
    
    .contact-map-item {
        width: 100%;
        text-align: center;
    }
    
    .map-container {
        text-align: center;
        width: 100%;
        margin: 0 auto;
    }
    
    /* Map Container - Mobil */
    .map-wrapper {
        border-radius: 10px;
    }
    
    .map-wrapper iframe {
        height: 250px;
    }
    
    .map-overlay {
        bottom: 10px;
        right: 10px;
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
    
    .map-overlay span {
        font-size: 0.8rem;
    }
    
    /* Contact Form - Mobil */
    .contact-form-container {
        padding: 1.25rem;
        border-radius: 15px;
        width: 100%;
        margin: 0 auto;
    }
    
    .contact-form {
        width: 100%;
    }
    
    .contact-form h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
        text-align: center !important;
    }
    
    .contact-form .form-group {
        text-align: left;
        width: 100%;
    }
    
    .contact-form .form-group label {
        text-align: left;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        margin-bottom: 0.5rem;
    }
    
    .form-group {
        margin-bottom: 0.75rem;
    }
    
    .form-group label {
        font-size: 0.85rem;
        margin-bottom: 0.35rem;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.7rem;
        font-size: 0.9rem;
        border-radius: 8px;
    }
    
    .form-group textarea {
        min-height: 120px;
    }
    
    /* ===== FOOTER MOBİL - YENİ TASARIM ===== */
    .footer {
        background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
        padding: 0;
        position: relative;
        overflow: hidden;
    }
    
    .footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, #C1121F, #D41B2A, #C1121F);
        background-size: 200% 100%;
        animation: gradientShift 3s ease-in-out infinite;
    }
    
    .footer .container {
        padding: 2rem 1rem 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 0;
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    /* Logo ve Açıklama - Üst Bölüm */
    .footer-section:first-child {
        padding-bottom: 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        margin-bottom: 2rem;
    }
    
    .footer-logo {
        justify-content: center;
        font-size: 1.5rem;
        margin-bottom: 1rem;
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .footer-logo i {
        font-size: 2.5rem;
        color: #C1121F;
        text-shadow: 0 0 20px rgba(193, 18, 31, 0.5);
        animation: pulse 2s ease-in-out infinite;
    }
    
    .footer-logo span {
        font-size: 1.4rem;
        font-weight: 800;
        letter-spacing: 1px;
        color: #C1121F;
        text-shadow: 0 0 10px rgba(193, 18, 31, 0.3);
    }
    
    .footer-logo img,
    .footer-logo-img {
        height: 50px;
        max-width: 200px;
        width: auto;
        background: transparent !important;
        mix-blend-mode: multiply;
        object-fit: contain;
        display: block;
    }
    
    .footer-section:first-child p {
        font-size: 0.9rem;
        color: #b0b0b0;
        line-height: 1.6;
        max-width: 100%;
        margin: 0 auto 1.5rem;
        padding: 0 0.5rem;
    }
    
    /* Sosyal Medya - Büyük ve Belirgin */
    .social-links {
        justify-content: center;
        gap: 1rem;
        margin-top: 1.5rem;
        flex-wrap: wrap;
    }
    
    .social-links a {
        width: 50px;
        height: 50px;
        background: rgba(255, 255, 255, 0.05);
        border: 2px solid rgba(193, 18, 31, 0.3);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #C1121F;
        font-size: 1.2rem;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }
    
    .social-links a::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: linear-gradient(135deg, #C1121F, #D41B2A);
        transform: translate(-50%, -50%);
        transition: width 0.3s ease, height 0.3s ease;
        z-index: -1;
    }
    
    .social-links a:hover {
        border-color: #C1121F;
        transform: translateY(-3px) scale(1.1);
        box-shadow: 0 5px 20px rgba(193, 18, 31, 0.4);
    }
    
    .social-links a:hover::before {
        width: 100%;
        height: 100%;
    }
    
    .social-links a:hover i {
        color: white;
    }
    
    /* Diğer Bölümler - Accordion Tarzı */
    .footer-section:not(:first-child) {
        margin-bottom: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding: 1rem 0;
    }
    
    .footer-section:not(:first-child) h4 {
        font-size: 0.95rem;
        margin-bottom: 0;
        color: #C1121F;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        padding: 0.75rem 0;
        cursor: pointer;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .footer-section:not(:first-child) h4::after {
        content: '+';
        font-size: 1.2rem;
        color: #C1121F;
        transition: transform 0.3s ease;
        pointer-events: none; /* Tıklamayı engellemesin */
        user-select: none;
    }
    
    .footer-section:not(:first-child) h4.active::after {
        transform: rotate(45deg);
    }
    
    /* Accordion içerikleri - başlangıçta kapalı */
    .footer-section:not(:first-child) ul,
    .footer-section:not(:first-child) .contact-info-footer {
        max-height: 0 !important;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        padding: 0 !important;
        margin: 0;
        opacity: 0;
        display: block;
    }
    
    /* Accordion açık olduğunda */
    .footer-section:not(:first-child) h4.active + ul,
    .footer-section:not(:first-child) h4.active + .contact-info-footer {
        max-height: 1000px !important;
        padding: 0.75rem 0 0.5rem !important;
        opacity: 1 !important;
    }
    
    /* İletişim bilgileri için özel (h4'ten sonra direkt gelmiyor) */
    .footer-section:not(:first-child) h4.active ~ .contact-info-footer {
        max-height: 1000px !important;
        padding: 0.75rem 0 0.5rem !important;
        opacity: 1 !important;
    }
    
    .footer-section ul li {
        margin-bottom: 0.6rem;
        opacity: 0.8;
    }
    
    .footer-section ul li a {
        color: #d0d0d0;
        font-size: 0.85rem;
        display: block;
        padding: 0.4rem 0;
        transition: all 0.2s ease;
        position: relative;
        padding-left: 1rem;
    }
    
    .footer-section ul li a::before {
        content: '→';
        position: absolute;
        left: 0;
        color: #C1121F;
        opacity: 0;
        transition: all 0.2s ease;
    }
    
    .footer-section ul li a:hover {
        color: #C1121F;
        padding-left: 1.2rem;
    }
    
    .footer-section ul li a:hover::before {
        opacity: 1;
        left: 0.2rem;
    }
    
    /* İletişim Bilgileri - Özel Tasarım */
    .contact-info-footer {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .contact-info-footer p {
        font-size: 0.85rem; 
        color: #d0d0d0;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
        padding: 0.5rem;
        background: rgba(255, 255, 255, 0.03);
        border-radius: 8px;
        transition: all 0.2s ease;
    }
    
    .contact-info-footer p:hover {
        background: rgba(193, 18, 31, 0.1);
        transform: translateX(5px);
    }
    
    .contact-info-footer i {
        color: #C1121F;
        width: 20px;
        font-size: 1rem;
        text-align: center;
    }
    
    /* Footer Bottom - Minimal */
    .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 1.5rem;
        padding-bottom: 1rem;
        font-size: 0.8rem;
        color: #888;
        text-align: center;
        background: rgba(0, 0, 0, 0.3);
        margin-top: 1.5rem;
        border-radius: 15px 15px 0 0;
    }
    
    .footer-bottom p {
        margin-bottom: 0.4rem;
        line-height: 1.5;
    }
    
    .footer-bottom p:last-child {
        margin-bottom: 0;
        font-size: 0.75rem;
        opacity: 0.7;
    }
    
    /* Animasyonlar */
    @keyframes pulse {
        0%, 100% {
            transform: scale(1);
            opacity: 1;
        }
        50% {
            transform: scale(1.1);
            opacity: 0.8;
        }
    }
    
    @keyframes gradientShift {
        0%, 100% {
            background-position: 0% 50%;
        }
        50% {
            background-position: 100% 50%;
        }
    }
}

/* ===== KÜÇÜK MOBİL CİHAZLAR (480px ve altı) - FOOTER ===== */
@media screen and (max-width: 480px) {
    .footer {
        padding: 0;
    }
    
    .footer .container {
        padding: 1.5rem 0.75rem 0.75rem;
    }
    
    .footer-logo {
        font-size: 1.3rem;
        gap: 0.5rem;
    }
    
    .footer-logo i {
        font-size: 2rem;
    }
    
    .footer-logo span {
        font-size: 1.2rem;
    }
    
    .footer-logo img,
    .footer-logo-img {
        height: 45px;
        max-width: 180px;
        width: auto;
        background: transparent !important;
        mix-blend-mode: multiply;
        object-fit: contain;
        display: block;
    }
    
    .footer-section:first-child p {
        font-size: 0.85rem;
        padding: 0;
    }
    
    .social-links {
        gap: 0.75rem;
    }
    
    .social-links a {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .footer-section:not(:first-child) h4 {
        font-size: 0.9rem;
        padding: 0.65rem 0;
    }
    
    .footer-section ul li a {
        font-size: 0.8rem;
        padding: 0.35rem 0;
    }
    
    .contact-info-footer p {
        font-size: 0.8rem;
        padding: 0.4rem;
        gap: 0.5rem;
    }
    
    .contact-info-footer i {
        width: 18px;
        font-size: 0.9rem;
    }
    
    .footer-bottom {
        padding-top: 1.25rem;
        padding-bottom: 0.75rem;
        font-size: 0.75rem;
        margin-top: 1rem;
    }
    
    .footer-bottom p:last-child {
        font-size: 0.7rem;
    }
    
    /* ===== FIXED CONTACT BUTTONS MOBİL ===== */
    .fixed-contact-buttons {
        left: 1rem;
        bottom: 1.5rem;
        top: auto;
        transform: none;
        flex-direction: row;
        gap: 0.5rem;
        z-index: 998;
    }
    
    .contact-btn {
        min-width: 50px;
        width: 50px;
        height: 50px;
        padding: 0.5rem;
        border-radius: 50%;
    }
    
    .contact-btn:hover {
        transform: translateY(-3px);
    }
    
    .btn-icon {
        width: 35px;
        height: 35px;
    }
    
    .btn-icon i {
        font-size: 1rem;
    }
    
    .contact-btn .btn-text {
        display: none !important;
    }
    
    /* ===== PRODUCT PAGES MOBİL ===== */
    .manufacturing-hero,
    .metalwork-hero {
        min-height: 50vh;
        padding-top: 80px;
    }
    
    /* Manufacturing ve Metalwork sayfaları için özel kurallar */
    .category-section {
        margin-bottom: 2rem !important;
    }
    
    .category-title-main {
        font-size: 1.3rem !important;
        margin-bottom: 1rem !important;
        padding-left: 0.75rem !important;
        border-left-width: 3px !important;
    }
    
    .subcategory-section {
        margin-left: 0.75rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .subcategory-title {
        font-size: 1.1rem !important;
        margin-bottom: 0.75rem !important;
        padding-left: 0.5rem !important;
        border-left-width: 2px !important;
    }
    
    /* Product slider mobil */
    .product-slider {
        height: 200px !important;
    }
    
    .slider-prev,
    .slider-next {
        width: 30px !important;
        height: 30px !important;
        font-size: 14px !important;
    }
    
    .slider-dots {
        bottom: 8px !important;
    }
    
    .slider-dots .dot {
        width: 6px !important;
        height: 6px !important;
    }
    
    .products-section {
        padding: 3rem 0;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .product-card {
        padding: 1.5rem;
        border-radius: 15px;
    }
    
    .product-slider {
        margin-bottom: 1rem;
        border-radius: 12px;
    }
    
    .slider-container {
        border-radius: 12px;
    }
    
    .slider-btn {
        width: 35px;
        height: 35px;
    }
    
    .slider-btn.prev-btn {
        left: 8px;
    }
    
    .slider-btn.next-btn {
        right: 8px;
    }
    
    .slider-btn i {
        font-size: 0.85rem;
    }
    
    .slider-dots {
        bottom: 10px;
        gap: 6px;
    }
    
    .slider-dots .dot {
        width: 8px;
        height: 8px;
    }
    
    .product-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        margin-bottom: 1.25rem;
    }
    
    .product-card h3 {
        font-size: 1.3rem;
        margin-bottom: 0.75rem;
    }
    
    .product-description {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
        line-height: 1.5;
    }
    
    .product-features {
        margin-bottom: 1.25rem;
    }
    
    .product-features li {
        font-size: 0.85rem;
        padding: 0.4rem;
        margin-bottom: 0.5rem;
    }
    
    .product-contact-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    /* Main Category - Mobil */
    .main-category {
        margin-bottom: 3rem;
        padding-bottom: 2rem;
    }
    
    .main-category-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
        padding-bottom: 1rem;
        letter-spacing: 1px;
    }
    
    .category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 1.5rem;
        padding-bottom: 0.75rem;
    }
    
    .category-title {
        font-size: 1.5rem;
    }
    
    .view-all-btn {
        width: 100%;
        justify-content: center;
        padding: 0.7rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .category-products {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Tech Specs - Mobil */
    .tech-specs {
        padding: 3rem 0;
    }
    
    .specs-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .spec-item {
        padding: 1.5rem;
        border-radius: 12px;
    }
    
    .spec-item i {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .spec-item h4 {
        font-size: 1.1rem;
    }
    
    .spec-item p {
        font-size: 0.85rem;
    }
    
    /* ===== BACK TO TOP BUTTON MOBİL ===== */
    .back-to-top {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 45px;
        height: 45px;
    }
    
    .back-to-top i {
        font-size: 1rem;
    }
    
    /* ===== LOADING SCREEN MOBİL ===== */
    .logo-loader {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .loading-spinner {
        width: 40px;
        height: 40px;
    }
}

/* ===== KÜÇÜK MOBİL CİHAZLAR (480px ve altı) ===== */
@media screen and (max-width: 480px) {
    :root {
        --section-padding: 2.5rem 0;
        --container-padding: 0 0.75rem;
        font-size: 14px;
    }
    
    html {
        font-size: 14px;
    }
    
    /* Header */
    .nav-container {
        padding: 0.7rem 0.75rem;
    }
    
    .logo {
        font-size: 1.1rem;
    }
    
    .logo i {
        font-size: 1.3rem;
    }
    
    .logo span {
        font-size: 1rem;
    }
    
    .phone-btn {
        padding: 0.45rem 0.75rem;
        min-width: 40px;
        height: 40px;
    }
    
    .mobile-menu-toggle {
        padding: 0.4rem;
    }
    
    .mobile-menu-toggle span {
        width: 22px;
        height: 2.5px;
    }
    
    .nav-menu {
        top: 65px;
        padding: 1rem;
    }
    
    .nav-link {
        padding: 0.85rem;
        font-size: 0.95rem;
    }
    
    /* Hero */
    .hero {
        min-height: 85vh;
        padding-top: 70px;
    }
    
    .hero-title {
        font-size: 1.6rem;
        margin-bottom: 0.75rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .btn {
        padding: 0.8rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .hero-stats {
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .stat-item {
        padding: 0.85rem;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    /* Sections */
    .section-title {
        font-size: 1.6rem;
    }
    
    .section-description {
        font-size: 0.9rem;
    }
    
    /* Services */
    .main-service-card {
        padding: 1.5rem 1rem;
    }
    
    .machine-icon {
        width: 80px;
        height: 50px;
    }
    
    .service-main-title {
        font-size: 1.3rem;
    }
    
    .service-cta-btn {
        padding: 0.8rem 1.25rem;
        font-size: 0.8rem;
    }
    
    /* About */
    .image-placeholder {
        height: 250px;
        font-size: 0.9rem;
    }
    
    .image-placeholder i {
        font-size: 2.5rem;
    }
    
    .about-badge {
        bottom: -10px;
        right: -10px;
        padding: 0.85rem;
    }
    
    .badge-number {
        font-size: 1.3rem;
    }
    
    .badge-text {
        font-size: 0.75rem;
    }
    
    /* Portfolio */
    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .portfolio-image {
        height: 160px;
        font-size: 2rem;
    }
    
    /* Contact */
    .contact-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .map-wrapper iframe {
        height: 200px;
    }
    
    .map-overlay {
        bottom: 8px;
        right: 8px;
        padding: 0.5rem 0.85rem;
        font-size: 0.8rem;
    }
    
    .contact-form-container {
        padding: 1rem;
    }
    
    .contact-form h3 {
        font-size: 1.2rem;
    }
    
    /* Footer */
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-logo {
        font-size: 1.2rem;
    }
    
    .social-links a {
        width: 35px;
        height: 35px;
    }
    
    /* Products */
    .product-card {
        padding: 1.25rem;
    }
    
    .product-icon {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
    }
    
    .product-card h3 {
        font-size: 1.2rem;
    }
    
    .main-category-title {
        font-size: 1.6rem;
    }
    
    .category-title {
        font-size: 1.3rem;
    }
    
    /* Manufacturing ve Metalwork sayfaları için küçük ekranlar */
    .category-title-main {
        font-size: 1.2rem !important;
    }
    
    .subcategory-title {
        font-size: 1rem !important;
    }
    
    .category-section {
        margin-bottom: 1.5rem !important;
    }
    
    .subcategory-section {
        margin-bottom: 1.25rem !important;
        margin-left: 0.5rem !important;
    }
    
    .product-slider {
        height: 180px !important;
    }
    
    /* Fixed Buttons */
    .fixed-contact-buttons {
        left: 0.75rem;
        bottom: 1rem;
        gap: 0.4rem;
    }
    
    .contact-btn {
        min-width: 45px;
        width: 45px;
        height: 45px;
    }
    
    .btn-icon {
        width: 32px;
        height: 32px;
    }
    
    .btn-icon i {
        font-size: 0.9rem;
    }
    
    .back-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
    }
    
    .back-to-top i {
        font-size: 0.9rem;
    }
}

/* ===== YATAY ORIENTATION (LANDSCAPE) MOBİL ===== */
@media screen and (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .nav-menu {
        max-height: calc(100vh - 70px);
    }
}

/* ===== YÜKSEK ÇÖZÜNÜRLÜKLÜ MOBİL CİHAZLAR ===== */
@media screen and (min-width: 481px) and (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .category-products {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    }
}

/* ===== TOUCH DEVICE OPTIMIZATIONS ===== */
@media (hover: none) and (pointer: coarse) {
    /* Touch cihazlar için daha büyük tıklanabilir alanlar */
    .btn,
    .nav-link,
    .filter-btn,
    .contact-btn {
        min-height: 44px;
        min-width: 44px;
    }
    
    .slider-btn {
        width: 44px;
        height: 44px;
    }
    
    /* Hover efektlerini kaldır */
    .btn:hover,
    .nav-link:hover,
    .filter-btn:hover {
        transform: none;
    }
    
    /* Active state kullan */
    .btn:active,
    .nav-link:active {
        transform: scale(0.95);
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .header,
    .fixed-contact-buttons,
    .back-to-top,
    .mobile-menu-toggle,
    .nav-actions {
        display: none !important;
    }
    
    .main-content {
        margin-top: 0;
    }
    
    .hero {
        min-height: auto;
        page-break-after: always;
    }
}

