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

/* Warning Banner */
.warning-banner {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
    padding: 2rem 0;
    position: relative;
    border-bottom: 4px solid #991b1b;
    margin-top: 80px;
}

.warning-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 1.5rem;
    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;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}





.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;
    transition: color 0.3s ease;
}

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

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

.store-location {
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #fbbf24;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

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

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #25d366;
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    width: fit-content;
}

.whatsapp-link:hover {
    background: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 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);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.photo-item:hover {
    transform: translateY(-5px);
    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: linear-gradient(45deg, #fbbf24, #f59e0b);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
}

.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;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

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

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

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

.nav-link:hover {
    color: #2563eb;
    background: rgba(37, 99, 235, 0.2);
    transform: translateY(-2px);
    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: #25d366;
    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: #128c7e;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(37, 211, 102, 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.1rem;
        line-height: 1.5;
        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;
    }
    
    .contact-methods {
        align-items: center;
    }
    
    .whatsapp-link {
        width: 100%;
        justify-content: center;
        padding: 0.75rem 1rem;
    }
    
    .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;
    }
    
    .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;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        transform: none;
        display: flex;
    }
    
    .nav-link {
        font-size: 1.3rem;
        padding: 1.2rem 0;
        font-weight: 700;
        background: rgba(37, 99, 235, 0.1);
        margin: 0.5rem 1rem;
        border-radius: 8px;
        min-width: auto;
    }



    .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: 1rem;
        line-height: 1.4;
        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;
    }
    
    .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;
}

.search-box {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    align-items: center;
}

.search-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1.1rem;
    transition: border-color 0.3s ease;
    background: white;
}

.search-input:focus {
    outline: none;
    border-color: #2563eb;
    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;
    transition: all 0.3s ease;
    min-width: 100px;
}

.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: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.victim-case {
    background: white;
    border: 2px solid rgba(220, 38, 38, 0.3);
    border-radius: 8px;
    padding: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

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

.case-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.8rem;
    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;
    }
}