/* ========================================
   KIMHEI - Responsive Styles
   Mobile, Tablet, Desktop Breakpoints
   ======================================== */

/* ========================================
   Tablet (max-width: 992px)
   ======================================== */
@media (max-width: 992px) {

    .story-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        flex-direction: row;
        padding-left: 80px;
    }

    .timeline-content {
        width: 100%;
    }

    .timeline-icon {
        left: 30px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .heritage-timeline {
        flex-direction: column;
        align-items: center;
    }

    .heritage-arrow {
        display: none;
    }
}

/* ========================================
   Mobile (max-width: 768px)
   ======================================== */
@media (max-width: 768px) {

    /* Navigation */
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary-white);
        flex-direction: column;
        padding: 20px;
        gap: var(--spacing-sm);
        box-shadow: var(--shadow-soft);
        max-height: 80vh;
        overflow-y: auto;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .lang-switch {
        position: absolute;
        top: 100%;
        right: 20px;
        margin-top: 10px;
    }

    /* Hero */
    .hero-fullscreen {
        padding: 100px 20px 60px;
        min-height: auto;
        height: auto;
    }

    .hero-fullscreen h1 {
        font-size: 2rem;
        line-height: 1.3;
    }

    .hero-stats {
        flex-direction: column;
        gap: var(--spacing-md);
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-contact-info {
        flex-direction: column;
        gap: var(--spacing-sm);
    }

    /* Grids */
    .founder-cards {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .pickup-grid {
        grid-template-columns: 1fr;
    }

    .vehicle-cards {
        grid-template-columns: 1fr;
    }

    /* Sections */
    section {
        padding: var(--spacing-xl) 0;
    }

    /* Typography */
    h1,
    h2,
    h3,
    h4,
    p {
        overflow-wrap: break-word;
        word-wrap: break-word;
        hyphens: auto;
    }

    .section-header h2 {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .section-badge {
        font-size: 0.8rem;
        padding: var(--spacing-xs) var(--spacing-sm);
    }

    /* Interview/CEO */
    .interview-container {
        padding: 0 10px;
    }

    .interview-item {
        flex-direction: column;
        text-align: center;
    }

    .speech-bubble {
        padding: 20px;
        margin-left: 0;
        margin-top: 15px;
    }

    .speech-bubble::before {
        display: none;
    }

    /* Cards */
    .stat-card,
    .service-card,
    .review-card {
        padding: var(--spacing-md);
    }

    /* Buttons */
    .btn {
        min-height: 48px;
        padding: 14px var(--spacing-md);
        font-size: 1rem;
    }

    /* Membership */
    .membership-price {
        flex-direction: column;
        gap: var(--spacing-sm);
    }

    .price-arrow {
        transform: rotate(90deg);
    }

    .membership-card {
        padding: 30px 20px;
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-card {
        flex-direction: column;
        text-align: center;
    }

    /* Timeline */
    .service-timeline {
        padding-left: 20px;
    }

    .timeline-item::before {
        left: -20px;
    }

    /* CEO Grid */
    .ceo-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Small Mobile (max-width: 480px)
   ======================================== */
@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-sm);
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .membership-price .price-new {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .hero-badge {
        padding: 10px 16px;
        font-size: 0.85rem;
    }

    .timeline-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        padding-left: 60px;
    }

    .qr-code {
        width: 160px;
        height: 160px;
    }
}

/* ========================================
   Hover Disabled for Touch Devices
   ======================================== */
@media (hover: none) {

    .custom-cursor,
    .custom-cursor-dot {
        display: none !important;
    }

    .service-card:hover,
    .stat-card:hover,
    .founder-card:hover,
    .review-card:hover,
    .job-card:hover,
    .contact-card:hover {
        transform: none;
    }

    .btn-primary:hover,
    .btn-whatsapp:hover {
        transform: none;
    }
}

/* ========================================
   Print Styles
   ======================================== */
@media print {

    .navbar,
    .footer,
    .floating-emojis,
    .ripple-container,
    .custom-cursor,
    .custom-cursor-dot {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }

    section {
        padding: 20px 0;
    }
}