* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* NEW IMPROVED COLOR SCHEME - Dark Navy & Orange */
    --primary-dark: #1a1a2e;
    --secondary-dark: #16213e;
    --accent-blue: #0f3460;
    --primary-orange: #FF6B35;
    --secondary-orange: #F7931E;
    --bright-orange: #FF8A50;
    --light-gray: #f8f9fa;
    --border-gray: #e0e0e0;
    --text-dark: #1a1a1a;
    --text-gray: #666;
    --white: #ffffff;
    --success-green: #28a745;
    --warning-red: #dc3545;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: var(--light-gray);
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* ==================== HEADER ==================== */
.header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 50%, var(--accent-blue) 100%);
    color: var(--white);
    padding: 16px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo-container a {
    display: block;
    text-decoration: none;
}

.logo-svg, .logo {
    height: 40px;
    width: auto;
    display: block;
}

/* Make logo text visible on dark background */
.logo-svg text:first-of-type {
    fill: white !important;
}

.logo-svg text:last-of-type {
    fill: var(--bright-orange) !important;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-right-nav {
    display: flex;
    gap: 15px;
    align-items: center;
}

.header-nav-link {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: opacity 0.3s ease;
    white-space: nowrap;
}

.header-nav-link:hover {
    opacity: 0.8;
}

.search-icon {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--white);
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-icon:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* ==================== BREADCRUMB ==================== */
.breadcrumb {
    background: var(--white);
    padding: 12px 0;
    font-size: 14px;
    border-bottom: 1px solid var(--border-gray);
}

.breadcrumb span {
    color: var(--text-gray);
}

.breadcrumb .separator {
    margin: 0 8px;
    color: #999;
}

/* ==================== HERO SECTION ==================== */
.hero {
    background: url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?w=1600&q=80') center/cover;
    min-height: 350px;
    display: flex;
    align-items: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 46, 0.6);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 40px 0;
}

.hero h1 {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: -1px;
    color: #fff;
    text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.8);
}

.hero p {
    font-size: clamp(15px, 2vw, 18px);
    line-height: 1.6;
    max-width: 650px;
    color: #f1f1f1;
    text-shadow: 1px 2px 6px rgba(0, 0, 0, 0.7);
}

/* ==================== MAIN CONTENT ==================== */
.main-content {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-dark);
    letter-spacing: -0.5px;
}

.section-subtitle {
    text-align: center;
    font-size: clamp(14px, 2vw, 16px);
    color: var(--text-gray);
    margin-bottom: 50px;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ==================== COURIER SECTIONS ==================== */
.courier-section {
    max-width: 900px;
    margin: 0 auto 40px;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.courier-section:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
}

.courier-header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--accent-blue) 100%);
    padding: 20px 24px;
    border-bottom: 3px solid var(--primary-orange);
    display: flex;
    align-items: center;
    gap: 16px;
}

.courier-logo {
    height: 45px;
    width: auto;
    object-fit: contain;
    filter: none; /* Remove the white filter */
}

.courier-title {
    font-size: clamp(18px, 3vw, 22px);
    font-weight: 600;
    color: var(--white);
}

.form-content {
    padding: 30px 24px;
}

.form-description {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.6;
    padding: 12px 16px;
    background: var(--light-gray);
    border-radius: 8px;
    border-left: 4px solid var(--primary-orange);
}

.form-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--primary-dark);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.tracking-input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border-gray);
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #fafafa;
}

.tracking-input:focus {
    outline: none;
    border-color: var(--primary-orange);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.track-btn {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--secondary-orange) 100%);
    color: var(--white);
    border: none;
    padding: 14px 40px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    margin-top: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 250px;
}

.track-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.track-btn:active {
    transform: translateY(0);
}

/* ==================== MODAL ==================== */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

.modal-overlay.active {
    display: flex;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: var(--white);
    border-radius: 16px;
    width: 100%;
    max-width: 550px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(30px) scale(0.95);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 50%, var(--accent-blue) 100%);
    color: var(--white);
    padding: 24px;
    border-radius: 16px 16px 0 0;
}

.modal-logo-svg {
    height: 36px;
    width: auto;
    margin-bottom: 12px;
}

.modal-logo-svg text {
    fill: white !important;
}

.modal-logo-svg path {
    fill: var(--primary-orange) !important;
}

.modal-header h3 {
    font-size: clamp(20px, 3vw, 24px);
    font-weight: 700;
    margin: 10px 0 8px 0;
}

.modal-courier-info {
    font-size: 14px;
    opacity: 0.9;
}

.modal-body {
    padding: 28px 24px;
}

.modal-description {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 24px;
    line-height: 1.6;
    padding: 12px 16px;
    background: var(--light-gray);
    border-radius: 8px;
    border-left: 4px solid var(--primary-orange);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--primary-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-gray);
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #fafafa;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 80px;
}

.modal-actions {
    display: flex;
    gap: 12px;
    margin-top: 28px;
}

.modal-btn {
    flex: 1;
    padding: 14px 20px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    letter-spacing: 0.5px;
}

.cancel-btn {
    background: #f0f0f0;
    color: #555;
}

.cancel-btn:hover {
    background: #e0e0e0;
}

.confirm-btn {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--secondary-orange) 100%);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.confirm-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.confirm-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    box-shadow: none;
}

.spinner {
    animation: rotate 1s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ==================== ERROR PAGE ==================== */
.error-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.error-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.error-header {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: var(--white);
    padding: 40px 30px;
    text-align: center;
}

.error-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    color: var(--white);
}

.error-icon svg {
    width: 100%;
    height: 100%;
}

.error-header h1 {
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 700;
    margin-bottom: 10px;
}

.error-header p {
    font-size: clamp(14px, 2vw, 16px);
    opacity: 0.95;
}

.error-body {
    padding: 40px 30px;
}

.alert-box {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: #fff3cd;
    border: 2px solid #ffc107;
    border-radius: 12px;
    margin-bottom: 40px;
}

.alert-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    color: #ffc107;
}

.alert-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
}

.alert-content h3 {
    font-size: clamp(16px, 2.5vw, 20px);
    color: var(--text-dark);
    margin-bottom: 10px;
}

.alert-content p {
    font-size: clamp(14px, 1.8vw, 15px);
    color: var(--text-gray);
    line-height: 1.7;
}

.call-to-action {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    margin-bottom: 40px;
}

.call-to-action h2 {
    font-size: clamp(20px, 3vw, 28px);
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.call-to-action > p {
    font-size: clamp(14px, 1.8vw, 16px);
    color: var(--text-gray);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.phone-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.phone-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.phone-icon svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
}

.phone-number {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 700;
    color: var(--primary-orange);
    letter-spacing: 1px;
}

.call-btn {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--secondary-orange) 100%);
    color: var(--white);
    border: none;
    padding: 16px 40px;
    font-size: clamp(14px, 2vw, 16px);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.call-btn svg {
    width: 20px;
    height: 20px;
}

.call-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(255, 107, 53, 0.4);
}

.availability {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-gray);
}

.availability svg {
    width: 20px;
    height: 20px;
    stroke: var(--text-gray);
}

.info-section {
    padding: 30px 24px;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--border-gray);
}

.info-section h3 {
    font-size: clamp(18px, 2.5vw, 22px);
    color: var(--primary-dark);
    margin-bottom: 24px;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-item {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: var(--light-gray);
    border-radius: 8px;
}

.info-item-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: var(--primary-orange);
    stroke: currentColor;
}

.info-item p {
    font-size: clamp(13px, 1.8vw, 15px);
    color: var(--text-gray);
    line-height: 1.6;
}

.info-item strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* ==================== FOOTER ==================== */
.footer {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 50%, var(--accent-blue) 100%);
    color: var(--white);
    padding: 50px 0 30px;
    margin-top: 80px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange) 0%, var(--secondary-orange) 50%, var(--primary-orange) 100%);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
}

.footer-logo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.footer-logo-svg {
    height: 45px;
    width: auto;
}

.footer-logo-svg text {
    fill: white !important;
}

.footer-logo-svg path {
    fill: var(--primary-orange) !important;
}

.footer-quote {
    font-style: italic;
    font-size: clamp(14px, 2vw, 16px);
    color: rgba(255, 255, 255, 0.95);
    max-width: 600px;
}

.footer-links-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-link {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    transition: opacity 0.3s ease;
    padding: 6px 10px;
}

.footer-link:hover {
    opacity: 0.8;
}

.footer-separator {
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
}

.footer-copyright {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-copyright p {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
}

.footer-tagline {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

/* ==================== HOMEPAGE SECTIONS ==================== */
.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.hero-cta {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--secondary-orange) 100%);
    color: var(--white);
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(255, 107, 53, 0.5);
}

.hero-secondary {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.hero-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

.stats-section {
    background: var(--white);
    padding: 50px 0;
    margin: -30px 0 40px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item h3 {
    font-size: clamp(32px, 5vw, 48px);
    color: var(--primary-orange);
    font-weight: 800;
    margin-bottom: 8px;
}

.stat-item p {
    font-size: clamp(14px, 2vw, 16px);
    color: var(--text-gray);
    font-weight: 500;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 50px 0;
}

.feature-card {
    background: var(--white);
    padding: 30px 24px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--secondary-orange) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    stroke: white;
}

.feature-card h3 {
    font-size: clamp(18px, 2.5vw, 22px);
    color: var(--primary-dark);
    margin-bottom: 12px;
    font-weight: 700;
}

.feature-card p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
}

.carriers-showcase {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 24px;
    border-radius: 16px;
    margin: 50px 0;
    text-align: center;
}

.carriers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-top: 40px;
    align-items: center;
}

.carrier-item {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.carrier-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.carrier-item img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.testimonial-section {
    margin: 60px 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--primary-orange);
}

.testimonial-text {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 700;
    color: var(--primary-dark);
    font-size: 16px;
}

.testimonial-role {
    font-size: 14px;
    color: var(--text-gray);
    margin-top: 4px;
}

.how-it-works {
    margin: 60px 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.step-card {
    position: relative;
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--secondary-orange) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    color: white;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.step-card h3 {
    font-size: 20px;
    color: var(--primary-dark);
    margin: 20px 0 12px 0;
    font-weight: 700;
}

.step-card p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 768px) {
    .header-right-nav {
        display: none;
    }
    
    .hero {
        min-height: 280px;
    }
    
    .main-content {
        padding: 40px 0;
    }
    
    .section-subtitle {
        margin-bottom: 35px;
    }
    
    .courier-section {
        margin-bottom: 30px;
    }
    
    .courier-header {
        padding: 16px 20px;
    }
    
    .courier-logo {
        height: 38px;
    }
    
    .form-content {
        padding: 24px 20px;
    }
    
    .track-btn {
        max-width: 100%;
    }
    
    .modal-actions {
        flex-direction: column;
    }
    
    .modal-btn {
        width: 100%;
    }
    
    .footer-separator {
        display: none;
    }
    
    .error-body {
        padding: 30px 20px;
    }
    
    .alert-box {
        flex-direction: column;
        padding: 20px;
    }
    
    .phone-display {
        flex-direction: column;
        gap: 12px;
    }
    
    .call-btn {
        width: 100%;
        justify-content: center;
    }
    
    .info-section {
        padding: 24px 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .header {
        padding: 12px 0;
    }
    
    .logo-svg, .logo {
        height: 34px;
    }
    
    .breadcrumb {
        padding: 10px 0;
        font-size: 13px;
    }
    
    .hero-content {
        padding: 30px 0;
    }
    
    .courier-section {
        border-radius: 10px;
    }
    
    .courier-header {
        padding: 14px 16px;
    }
    
    .form-content {
        padding: 20px 16px;
    }
    
    .tracking-input,
    .form-input,
    .form-textarea {
        font-size: 16px;
    }
    
    .modal-content {
        border-radius: 12px;
    }
    
    .modal-header {
        padding: 20px 16px;
        border-radius: 12px 12px 0 0;
    }
    
    .modal-body {
        padding: 24px 16px;
    }
    
    .error-container {
        padding: 30px 16px;
    }
    
    .error-card {
        border-radius: 12px;
    }
    
    .error-header {
        padding: 30px 20px;
    }
    
    .error-body {
        padding: 24px 16px;
    }
    
    .alert-box {
        padding: 16px;
    }
    
    .call-to-action {
        padding: 24px 16px;
    }
    
    .info-section {
        padding: 20px 16px;
    }
    
    .info-item {
        padding: 12px;
    }
}