/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Chrome and Firefox compatibility fixes */
html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    overflow-scrolling: touch;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
}

/* Warning Banner */
.warning-banner {
    background: -webkit-linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    background: -moz-linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    background: -o-linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
    padding: 2rem 0;
    position: relative;
    border-bottom: 4px solid #991b1b;
    margin-top: 80px;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000px;
    -moz-perspective: 1000px;
    perspective: 1000px;
}

.warning-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 1.5rem;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.warning-icon {
    font-size: 3rem;
    flex-shrink: 0;
    margin-top: 0.5rem;
}

.warning-content {
    flex: 1;
}

.warning-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    color: #fef2f2;
}

.warning-text p {
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 1.1rem;
}

.warning-text strong {
    color: #fef2f2;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.contact-info-warning {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 1.5rem;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}





.contact-info-warning h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #fef2f2;
}

.contact-info-warning ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.contact-info-warning li {
    margin-bottom: 0.5rem;
    padding: 0.5rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 6px;
}

.contact-info-warning a {
    color: #fbbf24;
    text-decoration: none;
    font-weight: 600;
    -webkit-transition: color 0.3s ease;
    -moz-transition: color 0.3s ease;
    -o-transition: color 0.3s ease;
    transition: color 0.3s ease;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

.contact-info-warning a:hover {
    color: #f59e0b;
    text-decoration: underline;
}

.store-locations {
    display: -webkit-grid;
    display: -ms-grid;
    display: grid;
    -webkit-grid-template-columns: 1fr 1fr;
    -ms-grid-template-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.store-location {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #fbbf24;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1rem;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.store-photo {
    margin-top: 0;
    text-align: center;
    position: relative;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}



.store-image {
    width: 100%;
    height: 350px;
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    object-fit: cover;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.store-image:hover {
    -webkit-transform: scale(1.02) translateZ(0);
    -moz-transform: scale(1.02);
    -ms-transform: scale(1.02);
    -o-transform: scale(1.02);
    transform: scale(1.02) translateZ(0);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.contact-methods {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 0;
}

.phone-number {
    color: #fef2f2;
    font-size: 0.95rem;
}

.whatsapp-link {
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.5rem;
    background: #4a7c59;
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.whatsapp-link:hover {
    background: #3a5f47;
    -webkit-transform: translateY(-2px) translateZ(0);
    -moz-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    -o-transform: translateY(-2px);
    transform: translateY(-2px) translateZ(0);
    box-shadow: 0 4px 12px rgba(74, 124, 89, 0.3);
}

.whatsapp-link i {
    font-size: 1.1rem;
}

.victim-list {
    text-align: center;
    font-size: 1.2rem;
    color: #fef2f2;
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(220, 38, 38, 0.3);
    border-radius: 8px;
    border: 2px solid #dc2626;
}

.customs-evidence {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
}

.customs-evidence h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #fef2f2;
    text-align: center;
}

.evidence-notice {
    background: rgba(0, 0, 0, 0.4);
    padding: 1.5rem;
    border-radius: 12px;
    border: 2px solid #fbbf24;
}

.evidence-notice p {
    margin-bottom: 1rem;
    text-align: center;
}

.evidence-documents {
    margin-top: 1rem;
}

.evidence-photos {
    margin-bottom: 2rem;
}

.evidence-photos h5 {
    font-size: 1.3rem;
    color: #fef2f2;
    margin-bottom: 0.5rem;
    text-align: center;
    font-weight: 600;
}

.photo-count {
    text-align: center;
    color: #fbbf24;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    max-width: 100%;
}

.photo-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    -webkit-transition: transform 0.3s ease, box-shadow 0.3s ease;
    -moz-transition: transform 0.3s ease, box-shadow 0.3s ease;
    -o-transition: transform 0.3s ease, box-shadow 0.3s ease;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}



.magnify-btn {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    border: none;
    padding: 8px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    width: 40px;
    height: 40px;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.magnify-btn:hover {
    background: rgba(0, 0, 0, 0.9);
    -webkit-transform: scale(1.1) translateZ(0);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1) translateZ(0);
}

.photo-item:hover {
    -webkit-transform: translateY(-5px) translateZ(0);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -o-transform: translateY(-5px);
    transform: translateY(-5px) translateZ(0);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.evidence-photo {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid rgba(251, 191, 36, 0.3);
    background: -webkit-linear-gradient(45deg, #fbbf24, #f59e0b);
    background: -moz-linear-gradient(45deg, #fbbf24, #f59e0b);
    background: -o-linear-gradient(45deg, #fbbf24, #f59e0b);
    background: linear-gradient(45deg, #fbbf24, #f59e0b);
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.photo-caption {
    text-align: center;
    color: #fef2f2;
    margin-top: 0.75rem;
    font-size: 0.95rem;
    font-weight: 500;
}

.evidence-item {
    display: flex;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 1rem;
}

.evidence-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    margin-top: 0.5rem;
}

.evidence-details {
    flex: 1;
}

.evidence-details h5 {
    font-size: 1.2rem;
    color: #fbbf24;
    margin-bottom: 1rem;
    font-weight: 600;
}

.evidence-details p {
    margin-bottom: 0.5rem;
    color: #fef2f2;
    font-size: 0.95rem;
    line-height: 1.4;
}

.evidence-details strong {
    color: #fbbf24;
}

.evidence-summary {
    background: rgba(220, 38, 38, 0.2);
    padding: 1.5rem;
    border-radius: 8px;
    border: 2px solid #dc2626;
    margin-bottom: 1rem;
}

.evidence-summary h5 {
    font-size: 1.2rem;
    color: #fef2f2;
    margin-bottom: 1rem;
    font-weight: 600;
}

.evidence-summary ul {
    list-style: none;
    padding: 0;
}

.evidence-summary li {
    color: #fef2f2;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.evidence-summary li::before {
    content: '🔍';
    position: absolute;
    left: 0;
    top: 0;
}

.evidence-note {
    background: rgba(251, 191, 36, 0.1);
    padding: 1rem;
    border-radius: 8px;
    border: 2px solid #fbbf24;
    text-align: center;
}

.evidence-note p {
    color: #fef2f2;
    font-size: 1rem;
    margin: 0;
}

.evidence-note strong {
    color: #fbbf24;
}

/* Top Banner */
.top-banner {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    color: white;
    padding: 1rem 0;
    position: relative;
    overflow: hidden;
}

.banner-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.banner-left {
    display: flex;
    justify-content: center;
    align-items: center;
}

.delivery-truck {
    position: relative;
    width: 200px;
    height: 120px;
}

.truck-body {
    position: relative;
    width: 100%;
    height: 100%;
}

.truck-cab {
    position: absolute;
    left: 0;
    top: 20px;
    width: 60px;
    height: 40px;
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
    border-radius: 8px 0 0 8px;
    border: 2px solid #6366f1;
}

.truck-cab::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    width: 20px;
    height: 15px;
    background: #374151;
    border-radius: 2px;
}

.truck-cargo {
    position: absolute;
    left: 55px;
    top: 15px;
    width: 100px;
    height: 50px;
    background: #fbbf24;
    border-radius: 4px;
    border: 2px solid #f59e0b;
}

.package {
    position: absolute;
    top: 5px;
    left: 5px;
    width: 90px;
    height: 40px;
    background: #fbbf24;
    border: 1px solid #f59e0b;
}

.package::after {
    content: '|||';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #92400e;
    font-size: 12px;
    letter-spacing: 2px;
}

.truck-wheels {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.wheel {
    width: 20px;
    height: 20px;
    background: #1e40af;
    border-radius: 50%;
    border: 2px solid #1e3a8a;
}

.speed-lines {
    position: absolute;
    top: 30px;
    left: -20px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.line {
    width: 15px;
    height: 2px;
    background: white;
    border-radius: 1px;
}

.stopwatch {
    position: absolute;
    top: 10px;
    left: 120px;
    width: 30px;
    height: 30px;
}

.stopwatch-body {
    width: 100%;
    height: 100%;
    background: #8b5cf6;
    border-radius: 50%;
    border: 2px solid #a855f7;
}

.stopwatch-hands {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 2px;
    height: 12px;
    background: #fbbf24;
    border-radius: 1px;
}

.stopwatch-hands::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 8px;
    background: #fbbf24;
    transform: rotate(45deg);
    transform-origin: bottom center;
}

.banner-right {
    display: flex;
    justify-content: flex-end;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.location-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.pin-icon {
    font-size: 1.2rem;
    color: #ef4444;
}

.location-text {
    display: flex;
    flex-direction: column;
}

.location-text strong {
    font-size: 1rem;
    font-weight: 600;
    color: white;
}

.location-text span {
    font-size: 0.8rem;
    color: #cbd5e1;
    margin-top: 0.25rem;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* Navigation */
.navbar {
    position: relative;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
}

    .nav-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        position: relative;
        -webkit-transform: translateZ(0);
        -moz-transform: translateZ(0);
        -ms-transform: translateZ(0);
        transform: translateZ(0);
    }
    
    @media (max-width: 768px) {
            .nav-container {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 20px;
    }
    
    @media (max-width: 480px) {
        .nav-container {
            padding: 0.8rem 15px;
            gap: 0.8rem;
        }
        
        .nav-menu {
            gap: 0.5rem;
        }
        
            .nav-link {
        font-size: 1rem;
        padding: 0.6rem 0.8rem;
        max-width: 150px;
    }
    
    /* Mobile Contact Section */
    .contact-section {
        padding: 2rem 0;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .contact-item {
        padding: 1.5rem;
    }
    
    .store-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .store-card {
        padding: 1rem;
    }
    }
    }

.nav-logo h2 {
    color: #2563eb;
    font-weight: 700;
}

.nav-menu {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 2rem;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 700;
    font-size: 1.4rem;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    background: rgba(37, 99, 235, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    text-align: center;
    min-width: 150px;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

.nav-link:hover {
    color: #2563eb;
    background: rgba(37, 99, 235, 0.2);
    -webkit-transform: translateY(-2px) translateZ(0);
    -moz-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    -o-transform: translateY(-2px);
    transform: translateY(-2px) translateZ(0);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}



/* Services Section */
.services {
    padding: 5rem 0;
    background: #f8fafc;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1e293b;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.service-icon {
    font-size: 3rem;
    color: #2563eb;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.service-card p {
    color: #64748b;
}

/* About Section */
.about {
    padding: 5rem 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.about-text p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.8;
}

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

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #64748b;
    font-weight: 500;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.3);
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: #f8fafc;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: #2563eb;
    margin-top: 0.25rem;
}

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.contact-item p {
    color: #64748b;
}

.contact-links {
    margin-top: 0.5rem;
}

.whatsapp-link-small {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: #4a7c59;
    color: white;
    text-decoration: none;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.whatsapp-link-small:hover {
    background: #3a5f47;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(74, 124, 89, 0.3);
}

.whatsapp-link-small i {
    font-size: 0.9rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
}



/* Responsive Design */
@media (max-width: 768px) {
    /* Mobile Warning Banner */
    .warning-container {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .warning-icon {
        font-size: 2.5rem;
        margin-top: 0;
    }
    
    .warning-title {
        font-size: 1.5rem;
    }
    
    .warning-text p {
        font-size: 1.3rem;
        line-height: 1.6;
        margin-bottom: 1rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        overflow: visible;
        white-space: normal;
    }
    
    .store-locations {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .store-location {
        padding: 1rem;
        font-size: 1rem;
        line-height: 1.4;
        overflow: visible;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .store-photo {
        margin-top: 0.8rem;
        position: relative;
    }
    

    
    .store-image {
        height: 280px;
        width: 100%;
        object-fit: cover;
    }
    
    .contact-methods {
        align-items: center;
    }
    
    .whatsapp-link {
        width: 100%;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        padding: 0.75rem 1rem;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    
    .contact-info-warning {
        padding: 0.8rem;
        overflow: visible;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .contact-info-warning h4 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .contact-info-warning ul {
        margin-bottom: 0.8rem;
    }
    
    .contact-info-warning li {
        font-size: 1rem;
        margin-bottom: 0.8rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        overflow: visible;
        white-space: normal;
    }
    
    .warning-banner {
        margin-top: 60px;
        padding: 1rem 0.5rem;
        min-height: auto;
        height: auto;
    }
    
    .warning-container {
        padding: 0.8rem;
        min-height: auto;
        height: auto;
    }
    
    .customs-evidence h4 {
        font-size: 1.1rem;
    }
    
    .evidence-notice {
        padding: 1rem;
    }
    
    .evidence-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .evidence-icon {
        font-size: 2rem;
        margin-top: 0;
    }
    
    .evidence-details h5 {
        font-size: 1.1rem;
    }
    
    .evidence-details p {
        font-size: 0.9rem;
    }
    
    .evidence-summary {
        padding: 1rem;
    }
    
    .evidence-summary h5 {
        font-size: 1.1rem;
    }
    
    .evidence-summary li {
        font-size: 0.9rem;
    }
    
    .evidence-photos h5 {
        font-size: 1.1rem;
    }
    
    .photo-count {
        font-size: 0.9rem;
    }
    
    .photo-gallery {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .photo-item {
        padding: 0.75rem;
        position: relative;
    }
    

    
    .magnify-btn {
        bottom: 10px;
        right: 10px;
        padding: 6px;
        font-size: 1rem;
        width: 32px;
        height: 32px;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    
    .evidence-photo {
        height: 150px;
        font-size: 1rem;
    }
    
    .photo-caption {
        font-size: 0.85rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .victims-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-card {
        padding: 1.5rem;
    }
    
    .stat-card h3 {
        font-size: 2rem;
    }
    
    .victims-categories {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .category {
        padding: 1.5rem;
    }
    
    .victims-notice {
        padding: 1.5rem;
    }
    
    /* Mobile Banner */
    .banner-container {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }
    
    .delivery-truck {
        width: 150px;
        height: 90px;
    }
    
    .stopwatch {
        width: 25px;
        height: 25px;
        left: 100px;
    }
    
    .location-info {
        align-items: center;
    }
    
    .location-item {
        width: 100%;
        max-width: 300px;
    }
    
    /* Mobile Navigation */
    .nav-menu {
        position: static;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        background-color: transparent;
        width: 100%;
        text-align: center;
        -webkit-transition: 0.3s;
        -moz-transition: 0.3s;
        -o-transition: 0.3s;
        transition: 0.3s;
        box-shadow: none;
        padding: 0;
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none;
        transform: none;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        gap: 1rem;
    }
    
    .nav-link {
        font-size: 1.1rem;
        padding: 0.8rem 1rem;
        font-weight: 700;
        background: rgba(37, 99, 235, 0.1);
        margin: 0;
        border-radius: 8px;
        min-width: auto;
        -webkit-flex: 1;
        -ms-flex: 1;
        flex: 1;
        max-width: 200px;
        -webkit-tap-highlight-color: transparent;
        -webkit-touch-callout: none;
    }



    .nav-toggle {
        display: none;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Mobile Hero */
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-graphic {
        font-size: 5rem;
    }

    /* Mobile Services */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    /* Mobile About */
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .about-text h2 {
        font-size: 2rem;
    }

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

    .image-placeholder {
        height: 250px;
        font-size: 3rem;
    }

    /* Mobile Contact */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }


}

@media (max-width: 480px) {
    .container {
        padding: 0 0.8rem;
    }
    
    .warning-text p {
        font-size: 1.2rem;
        line-height: 1.5;
        margin-bottom: 0.8rem;
        overflow: visible;
        white-space: normal;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .contact-info-warning {
        padding: 0.6rem;
        overflow: visible;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .contact-info-warning h4 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .contact-info-warning li {
        font-size: 0.95rem;
        margin-bottom: 0.6rem;
        overflow: visible;
        white-space: normal;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .store-location {
        padding: 0.8rem;
        font-size: 0.95rem;
        line-height: 1.3;
        overflow: visible;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    /* Contact Section Styles */
    .contact-section {
        padding: 4rem 0;
        background: #f8fafc;
    }
    
    .contact-content {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    .contact-info {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        margin-bottom: 3rem;
    }
    
    .contact-item {
        background: white;
        padding: 2rem;
        border-radius: 12px;
        text-align: center;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
    }
    
    .contact-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }
    
    .contact-item i {
        font-size: 2.5rem;
        color: #2563eb;
        margin-bottom: 1rem;
    }
    
    .contact-item h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
        color: #1e293b;
    }
    
    .contact-item p {
        color: #64748b;
        margin-bottom: 0.5rem;
    }
    
    .contact-item a {
        color: #2563eb;
        text-decoration: none;
        font-weight: 600;
    }
    
    .contact-item a:hover {
        text-decoration: underline;
    }
    
    .store-locations-contact {
        background: white;
        padding: 2rem;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
    
    .store-locations-contact h3 {
        text-align: center;
        font-size: 1.5rem;
        margin-bottom: 2rem;
        color: #1e293b;
    }
    
    .store-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }
    
    .store-card {
        background: #f8fafc;
        padding: 1.5rem;
        border-radius: 8px;
        border-left: 4px solid #2563eb;
    }
    
    .store-card h4 {
        color: #2563eb;
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .store-card p {
        margin-bottom: 0.5rem;
        color: #64748b;
    }
    
    .store-card .whatsapp-link {
        margin-top: 1rem;
        display: -webkit-inline-flex;
        display: -ms-inline-flexbox;
        display: inline-flex;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 0.5rem;
        background: #4a7c59;
        color: white;
        text-decoration: none;
        padding: 0.5rem 1rem;
        border-radius: 6px;
        font-size: 0.9rem;
        font-weight: 600;
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }
    
    .store-card .whatsapp-link:hover {
        background: #3a5f47;
        -webkit-transform: translateY(-2px) translateZ(0);
        -moz-transform: translateY(-2px);
        -ms-transform: translateY(-2px);
        -o-transform: translateY(-2px);
        transform: translateY(-2px) translateZ(0);
        box-shadow: 0 4px 12px rgba(74, 124, 89, 0.3);
    }
    
    .store-photo {
        margin-top: 0.6rem;
        position: relative;
    }
    

    
    .magnify-btn {
        bottom: 8px;
        right: 8px;
        padding: 4px;
        font-size: 0.8rem;
        width: 28px;
        height: 28px;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    
    .store-image {
        height: 220px;
        width: 100%;
        object-fit: cover;
    }
    
    .warning-banner {
        margin-top: 50px;
        padding: 0.8rem 0.3rem;
        min-height: auto;
        height: auto;
    }
    
    .warning-container {
        padding: 0.6rem;
        min-height: auto;
        height: auto;
    }
    
    .warning-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .service-card {
        padding: 1rem;
    }

    .about-text h2 {
        font-size: 1.8rem;
    }

    .stat h3 {
        font-size: 2rem;
    }
}

/* Tablet Specific Adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-container {
        gap: 3rem;
    }

    .hero-title {
        font-size: 3rem;
    }

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

    .about-content {
        gap: 3rem;
    }

    .contact-content {
        gap: 3rem;
    }
}

/* Large Screen Enhancements */
@media (min-width: 1025px) {
    .hero-title {
        font-size: 5rem;
    }

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

    .hero-graphic {
        font-size: 10rem;
    }
}

/* Victims Section Styles */
.victims-section {
    padding: 5rem 0;
    background: #f8fafc;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 3rem;
}

.victims-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-card h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #dc2626;
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: #64748b;
    font-weight: 500;
}

.victims-content {
    max-width: 800px;
    margin: 0 auto;
}

.victims-notice {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    text-align: center;
}

.victims-notice h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.victims-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.category {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.category h4 {
    font-size: 1.3rem;
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 600;
}

.category ul {
    list-style: none;
    padding: 0;
}

.category li {
    color: #64748b;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.category li::before {
    content: '⚠️';
    position: absolute;
    left: 0;
    top: 0;
}

.victims-update {
    background: rgba(220, 38, 38, 0.1);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid #dc2626;
    text-align: center;
}

.victims-update h4 {
    font-size: 1.3rem;
    color: #dc2626;
    margin-bottom: 1rem;
}

.victims-update p {
    color: #64748b;
    margin-bottom: 0.5rem;
}

.victims-update strong {
    color: #dc2626;
}

/* Smooth animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.about-text,
.contact-info,
.stat-card,
.category {
    animation: fadeInUp 0.6s ease-out;
}

/* Victims List Styles */
.victims-list {
    margin-bottom: 3rem;
}

.victims-list h4 {
    font-size: 1.5rem;
    color: #dc2626;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 600;
}

.victims-list {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* 搜尋功能樣式 */
.search-container {
    margin-bottom: 2rem;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
}

.search-box {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
}

.search-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1.1rem;
    -webkit-transition: border-color 0.3s ease;
    -moz-transition: border-color 0.3s ease;
    -o-transition: border-color 0.3s ease;
    transition: border-color 0.3s ease;
    background: white;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.search-input:focus {
    outline: none;
    border-color: #2563eb;
    -webkit-box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    -moz-box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.search-btn {
    padding: 1rem 2rem;
    background: #2563eb;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    min-width: 100px;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.search-btn:hover {
    background: #1d4ed8;
}

.search-btn.clear-mode {
    background: #dc2626;
}

.search-btn.clear-mode:hover {
    background: #b91c1c;
}

.search-stats {
    font-size: 1rem;
    color: #64748b;
    font-weight: 600;
    margin-top: 0.5rem;
}

/* 搜尋結果高亮 */
.victim-case.highlight {
    background: #fef3c7;
    border-color: #f59e0b;
}

.victim-case.hidden {
    display: none;
}

.victim-cases {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
}

.victim-case {
    background: white;
    border: 2px solid rgba(220, 38, 38, 0.3);
    border-radius: 8px;
    padding: 1.2rem;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
}

.victim-case:hover {
    background: #fef2f2;
    border-color: rgba(220, 38, 38, 0.5);
    -webkit-transform: translateY(-2px);
    -moz-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    transform: translateY(-2px);
    -webkit-box-shadow: 0 4px 12px rgba(220, 38, 38, 0.2);
    -moz-box-shadow: 0 4px 12px rgba(220, 38, 38, 0.2);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.2);
}

.case-header {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.8rem;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    border-bottom: 1px solid rgba(220, 38, 38, 0.2);
}

.tracking-number {
    background: #dc2626;
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: 'Courier New', monospace;
}

.delivery-type {
    background: rgba(220, 38, 38, 0.2);
    color: #dc2626;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 500;
}

    .case-details p {
        margin-bottom: 0.5rem;
        font-size: 0.9rem;
        line-height: 1.5;
        color: #374151;
    }

/* Image Modal Styles */
.image-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    transition: color 0.3s ease;
}

.modal-close:hover,
.modal-close:focus {
    color: #bbb;
    text-decoration: none;
}

.modal-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: white;
    padding: 10px 0;
    height: 150px;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Make evidence photos clickable */
.evidence-photo {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.evidence-photo:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Responsive Modal Styles */
@media (max-width: 768px) {
    .modal-content {
        max-width: 95%;
        max-height: 80%;
    }
    
    .modal-close {
        top: 10px;
        right: 20px;
        font-size: 30px;
    }
    
    .modal-caption {
        width: 90%;
        font-size: 1rem;
        height: auto;
        padding: 15px 0;
    }
}

@media (max-width: 480px) {
    .modal-content {
        max-width: 98%;
        max-height: 75%;
    }
    
    .modal-close {
        top: 5px;
        right: 15px;
        font-size: 25px;
    }
    
    .modal-caption {
        width: 95%;
        font-size: 0.9rem;
        padding: 10px 0;
    }
}

.case-details strong {
    color: #dc2626;
    font-weight: 600;
}

/* Responsive styles for victim cases */
@media (max-width: 768px) {
    .victim-cases {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .case-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .victim-case {
        padding: 1rem;
    }
    
    .case-details p {
        font-size: 0.85rem;
    }
    
    /* 移動端搜尋樣式 */
    .search-container {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .search-box {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .search-input {
        width: 100%;
        font-size: 0.9rem;
        padding: 0.8rem;
    }
    
    .search-btn {
        width: 100%;
        padding: 0.8rem;
        font-size: 0.9rem;
        min-width: auto;
    }
    
    .search-stats {
        font-size: 0.8rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .warning-banner {
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
        border-radius: 0 !important;
        box-sizing: border-box;
        padding-left: 0;
        padding-right: 0;
    }
    .warning-container {
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
        border-radius: 0 !important;
        box-sizing: border-box;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    .container {
        padding-left: 0;
        padding-right: 0;
    }
    .warning-text, .warning-text p, .warning-title, .contact-info-warning, .contact-info-warning li, .store-location {
        color: #fff !important;
    }
    
    /* 確保文字完整顯示 */
    .warning-text p {
        margin-right: 0 !important;
        padding-right: 0 !important;
        max-width: none !important;
        width: 100% !important;
    }
    
    .contact-info-warning {
        margin-right: 0 !important;
        padding-right: 0 !important;
        max-width: none !important;
        width: 100% !important;
    }
    
    .contact-info-warning li {
        margin-right: 0 !important;
        padding-right: 0 !important;
        max-width: none !important;
        width: 100% !important;
    }
    
    .store-location {
        margin-right: 0 !important;
        padding-right: 0 !important;
        max-width: none !important;
        width: 100% !important;
    }
}

@media (max-width: 480px) {
    .warning-banner {
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
        border-radius: 0 !important;
        box-sizing: border-box;
        padding-left: 0;
        padding-right: 0;
    }
    .warning-container {
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
        border-radius: 0 !important;
        box-sizing: border-box;
        padding-left: 0.3rem;
        padding-right: 0.3rem;
    }
    .container {
        padding-left: 0;
        padding-right: 0;
    }
    .warning-text, .warning-text p, .warning-title, .contact-info-warning, .contact-info-warning li, .store-location {
        color: #fff !important;
    }
    
    /* 確保文字完整顯示 */
    .warning-text p {
        margin-right: 0 !important;
        padding-right: 0 !important;
        max-width: none !important;
        width: 100% !important;
    }
    
    .contact-info-warning {
        margin-right: 0 !important;
        padding-right: 0 !important;
        max-width: none !important;
        width: 100% !important;
    }
    
    .contact-info-warning li {
        margin-right: 0 !important;
        padding-right: 0 !important;
        max-width: none !important;
        width: 100% !important;
    }
    
    .store-location {
        margin-right: 0 !important;
        padding-right: 0 !important;
        max-width: none !important;
        width: 100% !important;
    }
}