/* ASLAN ASANSÖR - Simple Mobile Responsive CSS */

/* ===== MOBILE RESPONSIVE BREAKPOINTS ===== */
@media (max-width: 768px) {
    /* Container */
    .container {
        padding: 0 15px;
    }

    /* Header */
    .header {
        padding: 10px 0 !important;
    }

    .nav-wrapper {
        height: 50px;
    }

    .logo-image {
        height: 35px !important;
    }

    /* Desktop menu hide */
    .nav-menu {
        display: none !important;
    }

    /* Mobile menu toggle */
    .mobile-menu-toggle {
        display: flex !important;
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 8px;
        cursor: pointer;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3px;
    }

    .mobile-menu-toggle span {
        width: 20px;
        height: 2px;
        background: white;
        border-radius: 1px;
        transition: all 0.3s ease;
    }

    /* Mobile menu overlay */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.8);
        z-index: 1000;
        display: none;
    }

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

    /* Mobile menu panel */
    .mobile-menu-panel {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 350px;
        height: 100vh;
        background: linear-gradient(145deg, #0a0a0a, #1a1a1a);
        transition: right 0.3s ease;
        z-index: 1001;
        overflow-y: auto;
    }

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

    .mobile-menu-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mobile-logo {
        color: white;
        font-size: 1.2rem;
        font-weight: 700;
    }

    .mobile-menu-close {
        background: none;
        border: none;
        color: white;
        font-size: 1.5rem;
        cursor: pointer;
        width: 35px;
        height: 35px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
    }

    /* Mobile menu list */
    .mobile-menu-content {
        padding: 20px 0;
    }

    .mobile-menu-list {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .mobile-menu-list li {
        margin: 5px 0;
    }

    .mobile-menu-list a {
        display: flex;
        align-items: center;
        gap: 15px;
        padding: 15px 20px;
        color: white;
        text-decoration: none;
        border-radius: 8px;
        margin: 0 10px;
        transition: background 0.3s ease;
    }

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

    .mobile-menu-list a i {
        width: 20px;
        text-align: center;
        color: #D40000;
    }

    /* Contact buttons in mobile menu */
    .contact-cta {
        padding: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .contact-cta li {
        margin: 10px 0;
    }

    .contact-cta a {
        display: flex;
        align-items: center;
        gap: 15px;
        padding: 15px;
        background: rgba(255, 255, 255, 0.05);
        color: white;
        text-decoration: none;
        border-radius: 10px;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .contact-cta a:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: translateY(-2px);
    }

    .contact-cta a i {
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #ffffff !important;
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-size: 1.1rem;
    }

    .phone-number {
        background: rgba(255, 255, 255, 0.15);
        padding: 5px 10px;
        border-radius: 6px;
        font-size: 0.9rem;
        margin-left: auto;
    }

    /* Special button colors */
    .mobile-call-btn a { border-left: 3px solid #4a90e2; }
    .mobile-whatsapp-btn a { border-left: 3px solid #25d366; }
    .mobile-quote-btn a { border-left: 3px solid #ffd93d; }

    /* Hero Section Mobile */
    .modern-hero {
        padding: 80px 0 40px 0;
        min-height: 80vh;
    }

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

    .hero-title {
        font-size: 2rem !important;
        line-height: 1.2;
        margin-bottom: 15px;
    }

    .hero-description {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 25px;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .btn-hero {
        width: 100%;
        max-width: 250px;
        padding: 15px 20px;
        font-size: 1rem;
        min-height: 50px;
    }

    /* Services Section Mobile */
    .modern-services {
        padding: 50px 0;
    }

    .services-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        padding: 25px 20px !important;
        text-align: center;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto 15px auto;
        font-size: 1.5rem;
    }

    .service-card h3 {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }

    .service-card p {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }

    /* Projects Gallery Mobile */
    .projects-gallery {
        padding: 50px 0;
    }

    .projects-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .project-card {
        border-radius: 12px;
        overflow: hidden;
    }

    .project-image {
        height: 180px;
    }

    .project-info h4 {
        font-size: 1.1rem;
    }

    .project-info p {
        font-size: 0.9rem;
    }

    /* Stats Section Mobile */
    .company-stats-section {
        padding: 50px 0;
    }

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

    .stat-item {
        padding: 20px 15px;
        text-align: center;
    }

    .stat-icon {
        width: 45px;
        height: 45px;
        margin: 0 auto 12px auto;
        font-size: 1.3rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    .stat-desc {
        font-size: 0.8rem;
    }

    /* Contact Section Mobile */
    .contact-form-section {
        padding: 50px 0;
    }

    .contact-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .form-content,
    .contact-info {
        padding: 30px 20px;
    }

    .form-header h3,
    .contact-header h3 {
        font-size: 1.3rem;
    }

    .contact-form {
        gap: 15px;
    }

    .form-row {
        flex-direction: column;
        gap: 15px;
    }

    .form-group {
        gap: 6px;
    }

    .form-group label {
        font-size: 0.85rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 15px;
        font-size: 1rem;
    }

    .btn-submit {
        padding: 15px 20px;
        font-size: 1rem;
        min-height: 50px;
    }

    .contact-methods {
        gap: 15px;
    }

    .contact-item {
        padding: 12px;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    /* Mobil contact icon'ların içindeki ikonları beyaz yap */
    .contact-cta a i,
    .contact-item .contact-icon i,
    .contact-item .contact-icon .fa,
    .contact-item .contact-icon .fas,
    .contact-item .contact-icon .far,
    .contact-item .contact-icon .fab,
    .contact-item .contact-icon .fal,
    .contact-item .contact-icon .fad {
        color: #ffffff !important;
    }

    /* Genel tüm contact icon'lar için beyaz ikonlar */
    .contact-icon i,
    .contact-icon .fa,
    .contact-icon .fas,
    .contact-icon .far,
    .contact-icon .fab,
    .contact-icon .fal,
    .contact-icon .fad {
        color: #ffffff !important;
    }

    .contact-details strong {
        font-size: 0.85rem;
    }

    .contact-details a,
    .contact-details p {
        font-size: 0.95rem;
    }
}

/* Extra Small Mobile */
@media (max-width: 380px) {
    .hero-title {
        font-size: 1.8rem !important;
    }

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

    .mobile-menu-panel {
        width: 95%;
    }

    .container {
        padding: 0 10px;
    }
}

/* Large Mobile/Tablet */
@media (min-width: 481px) and (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Tablet Landscape */
@media (min-width: 769px) {
    .mobile-menu-toggle {
        display: none !important;
    }

    .nav-menu {
        display: flex !important;
    }

    .mobile-menu-overlay {
        display: none !important;
    }

    .hero-buttons {
        flex-direction: row;
        gap: 20px;
        justify-content: center;
    }

    .btn-hero {
        max-width: 220px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .projects-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .contact-wrapper {
        flex-direction: row;
        gap: 40px;
    }

    .form-content,
    .contact-info {
        flex: 1;
        padding: 40px;
    }

    .form-row {
        flex-direction: row;
        gap: 20px;
    }

    .form-row .form-group {
        flex: 1;
    }
}