/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1e40af;
    --secondary-color: #3b82f6;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --pending-color: #6b7280;
    --transit-color: #3b82f6;
    --delivery-color: #f97316;
    --delivered-color: #10b981;
    --bg-light: #f3f4f6;
    --text-dark: #1f2937;
    --border-color: #e5e7eb;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #ffffff;
    min-height: 100vh;
    padding: 0;
    margin: 0;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== NAVIGATION BAR ===== */
.main-nav {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    color: var(--primary-color);
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: opacity 0.3s;
}

.logo-link:hover {
    opacity: 0.8;
}

.logo-image {
    width: 45px;
    height: 45px;
    object-fit: contain;
    border-radius: 8px;
}

.logo-text {
    font-size: 28px;
    font-weight: bold;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
    font-size: 16px;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

/* ===== HERO SECTION WITH INTEGRATED TRACKING ===== */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #60a5fa 100%);
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 80px 20px 60px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="2" height="2" fill="white" fill-opacity="0.1"/></svg>');
    background-size: 50px 50px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.1);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    width: 100%;
    max-width: 1200px;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
    font-weight: 300;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Tracking Card */
.hero-tracking-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    margin: 0 auto 50px;
    max-width: 700px;
    animation: slideUp 0.6s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tracking-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.tracking-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hero-tracking-card h2 {
    color: var(--primary-color);
    font-size: 32px;
    margin-bottom: 10px;
    font-weight: 700;
}

.tracking-subtitle {
    color: #6b7280;
    font-size: 16px;
    margin-bottom: 25px;
}

.tracking-input-group {
    display: flex;
    gap: 10px;
}

.tracking-input-group input {
    flex: 1;
    padding: 16px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.tracking-input-group input:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    display: block;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
    font-weight: 400;
}

/* ===== BUTTON STYLES ===== */
.btn {
    padding: 16px 32px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

.btn-success {
    background: var(--success-color);
    color: white;
}

.btn-success:hover {
    background: #059669;
}

.btn-danger {
    background: var(--danger-color);
    color: white;
}

.btn-danger:hover {
    background: #dc2626;
}

.btn-small {
    padding: 8px 16px;
    font-size: 14px;
    margin: 0 5px;
}

/* ===== SHIPMENT DETAILS ===== */
.shipment-details {
    display: block;
    max-width: 1200px;
    margin: 0 auto;
}

/* ===== MODAL/POPUP STYLES ===== */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    overflow-y: auto;
    padding: 20px;
    animation: fadeIn 0.3s ease-in;
}

.modal-overlay.active {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 40px;
}

.modal-content {
    background: white;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 40px;
    animation: slideDown 0.4s ease-out;
    padding: 40px;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--danger-color);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10;
    padding: 0;
}

.modal-close:hover {
    background: #dc2626;
    transform: rotate(90deg);
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.detail-card {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.detail-card h3 {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-card p {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
}

/* ===== STATUS BADGES ===== */
.status-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
}

.status-pending { 
    background: var(--pending-color); 
    color: white; 
}

.status-transit { 
    background: var(--transit-color); 
    color: white; 
}

.status-delivery { 
    background: var(--delivery-color); 
    color: white; 
}

.status-delivered { 
    background: var(--delivered-color); 
    color: white; 
}

/* ===== PROGRESS BAR ===== */
.progress-section {
    margin: 30px 0;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin: 40px 0;
}

.progress-line {
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--border-color);
    z-index: 0;
}

.progress-line-fill {
    height: 100%;
    background: var(--delivered-color);
    transition: width 0.5s;
}

.progress-step {
    position: relative;
    z-index: 1;
    text-align: center;
    flex: 1;
}

.progress-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: 4px solid var(--border-color);
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    transition: all 0.3s;
}

.progress-step.active .progress-circle {
    border-color: var(--delivered-color);
    background: var(--delivered-color);
    color: white;
}

.progress-step.completed .progress-circle {
    border-color: var(--delivered-color);
    background: var(--delivered-color);
    color: white;
}

.progress-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

/* ===== MAP STYLES ===== */
.map-container {
    background: #e0f2fe;
    border-radius: 10px;
    height: 500px;
    position: relative;
    overflow: hidden;
    border: 2px solid var(--border-color);
    margin: 30px 0;
}

.map-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(0deg, rgba(0,0,0,0.05) 0px, rgba(0,0,0,0.05) 1px, transparent 1px, transparent 50px),
        repeating-linear-gradient(90deg, rgba(0,0,0,0.05) 0px, rgba(0,0,0,0.05) 1px, transparent 1px, transparent 50px);
}

.map-marker {
    position: absolute;
    width: 40px;
    height: 40px;
    background: var(--transit-color);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    transition: all 0.8s ease-in-out;
    z-index: 10;
}

.map-marker::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    background: white;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.map-label {
    position: absolute;
    background: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    white-space: nowrap;
    transform: translate(-50%, -60px);
    z-index: 11;
    font-size: 14px;
}

/* ===== NOTIFICATION PANEL ===== */
.notification-panel {
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
    padding: 15px 20px;
    border-radius: 8px;
    margin: 20px 0;
    display: none;
}

.notification-panel.active {
    display: block;
}

.notification-panel h4 {
    color: #92400e;
    margin-bottom: 8px;
}

.notification-panel p {
    color: #78350f;
    font-size: 14px;
}

/* ===== EMAIL LOGS ===== */
.email-logs {
    margin-top: 20px;
}

.email-log-item {
    background: white;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 10px;
    border-left: 4px solid var(--secondary-color);
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.email-log-item strong {
    display: block;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.email-log-item p {
    color: var(--text-dark);
    margin: 5px 0;
}

.email-log-item small {
    color: #6b7280;
}

/* ===== ERROR MESSAGE ===== */
.error-message {
    background: #fee2e2;
    border-left: 4px solid #ef4444;
    padding: 15px 20px;
    border-radius: 8px;
    color: #991b1b;
    margin: 20px auto;
    max-width: 1200px;
    display: none;
}

.error-message.active {
    display: block;
}

/* ===== ADMIN STYLES ===== */
.admin-header {
    background: white;
    padding: 20px 40px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.login-container {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    max-width: 400px;
    margin: 100px auto;
}

.login-container h2 {
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
    font-size: 28px;
}

/* ===== FORM STYLES ===== */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

/* ===== ADMIN PANEL ===== */
.admin-panel {
    display: none;
}

.admin-panel.active {
    display: block;
}

.panel-section {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.panel-section h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 24px;
}

/* ===== TABLE STYLES ===== */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background: white;
}

table th,
table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

table th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--text-dark);
    position: sticky;
    top: 0;
}

table tr:hover {
    background: var(--bg-light);
}

table select {
    padding: 6px 10px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 14px;
}

/* ===== LOGOUT BUTTON ===== */
.logout-btn {
    background: var(--danger-color);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.logout-btn:hover {
    background: #dc2626;
    transform: translateY(-2px);
}

/* ===== SUCCESS MESSAGE ===== */
.success-message {
    background: #d1fae5;
    border-left: 4px solid var(--success-color);
    padding: 15px 20px;
    border-radius: 8px;
    margin: 20px 0;
    color: #065f46;
    display: none;
}

.success-message.active {
    display: block;
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ===== SERVICES SECTION ===== */
.services-section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.section-description {
    text-align: center;
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-color: var(--secondary-color);
}

.service-icon {
    font-size: 64px;
    margin-bottom: 20px;
    display: block;
}

.service-card h3 {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card p {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    color: #6b7280;
    margin-bottom: 8px;
    font-size: 14px;
}

/* ===== WHY CHOOSE SECTION ===== */
.why-choose-section {
    background: var(--bg-light);
    padding: 80px 20px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 50px;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 10px;
    transition: transform 0.3s;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 56px;
    margin-bottom: 20px;
    display: block;
}

.feature-item h3 {
    color: var(--primary-color);
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 600;
}

.feature-item p {
    color: #6b7280;
    line-height: 1.6;
    font-size: 15px;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 80px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
}

.about-values {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.value-item {
    display: flex;
    flex-direction: column;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 10px;
    border-left: 4px solid var(--secondary-color);
}

.value-item strong {
    color: var(--primary-color);
    font-size: 18px;
    margin-bottom: 5px;
}

.value-item span {
    color: #6b7280;
    font-size: 14px;
}

.about-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder {
    background: linear-gradient(135deg, #e0f2fe 0%, #bfdbfe 100%);
    border-radius: 15px;
    padding: 80px 60px;
    text-align: center;
    width: 100%;
    border: 2px solid var(--border-color);
}

.placeholder-icon {
    font-size: 120px;
    display: block;
    margin-bottom: 20px;
}

.image-placeholder p {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 600;
}

/* ===== FOOTER ===== */
.main-footer {
    background: #1f2937;
    color: white;
    padding: 60px 0 0;
    margin-top: 80px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-column h3,
.footer-column h4 {
    margin-bottom: 20px;
    font-size: 18px;
    color: white;
}

.footer-logo {
    font-size: 24px;
    font-weight: bold;
    color: white;
    margin: 0;
}

.footer-logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    margin-bottom: 20px;
    transition: opacity 0.3s;
}

.footer-logo-link:hover {
    opacity: 0.8;
}

.footer-logo-image {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 6px;
}

.footer-description {
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s;
}

.social-icon:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 14px;
}

.footer-links a:hover {
    color: white;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    color: #d1d5db;
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 30px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: #9ca3af;
    margin: 0;
    font-size: 14px;
}

.footer-legal {
    display: flex;
    gap: 30px;
}

.footer-legal a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: white;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        padding: 15px 20px;
        gap: 15px;
    }

    .logo-image {
        width: 40px;
        height: 40px;
    }

    .logo-text {
        font-size: 24px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .modal-content {
        padding: 30px 20px;
        margin: 0;
    }

    .modal-close {
        width: 36px;
        height: 36px;
        font-size: 24px;
        top: 15px;
        right: 15px;
    }

    .modal-overlay.active {
        padding-top: 20px;
    }

    .hero-section {
        min-height: auto;
        padding: 60px 20px 40px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .hero-tracking-card {
        padding: 30px 20px;
    }

    .hero-tracking-card h2 {
        font-size: 24px;
    }

    .tracking-input-group {
        flex-direction: column;
    }

    .tracking-icon {
        font-size: 48px;
    }

    .hero-stats {
        gap: 40px;
    }

    .stat-number {
        font-size: 36px;
    }

    .stat-label {
        font-size: 14px;
    }

    .section-title {
        font-size: 32px;
    }

    .section-description {
        font-size: 16px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .image-placeholder {
        padding: 60px 40px;
    }

    .placeholder-icon {
        font-size: 80px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-container {
        padding: 0 20px;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        flex-direction: column;
        gap: 15px;
    }

    .progress-steps {
        flex-wrap: wrap;
        gap: 20px;
    }

    .progress-step {
        flex: 0 0 calc(50% - 10px);
    }

    .progress-line {
        display: none;
    }

    .map-container {
        height: 350px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    table {
        font-size: 12px;
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    table th,
    table td {
        padding: 8px;
    }

    .btn-small {
        padding: 6px 12px;
        font-size: 12px;
    }

    .login-container {
        margin: 50px 20px;
        padding: 30px 20px;
    }

    .panel-section {
        padding: 20px;
    }

    .admin-header {
        flex-direction: column;
        gap: 15px;
        padding: 15px 20px;
    }

    .details-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-tracking-card {
        padding: 25px 15px;
    }

    .btn {
        padding: 14px 24px;
        font-size: 15px;
    }

    .stat-number {
        font-size: 28px;
    }

    .service-card,
    .feature-item {
        padding: 25px 20px;
    }
}