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

html {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: #ffffff;
    color: #333;
    line-height: 1.5;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* Header Styles */
.header {
    background-color: #4d148c;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-svg {
    width: 120px;
    height: 35px;
}

.logo-fed {
    font-family: 'Arial Black', sans-serif;
    font-size: 32px;
    font-weight: 900;
    fill: #ffffff;
}

.logo-ex {
    font-family: 'Arial Black', sans-serif;
    font-size: 32px;
    font-weight: 900;
    fill: #ff6600;
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 8px;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 16px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    transition: background-color 0.2s;
    border-radius: 4px;
}

.nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.chevron {
    transition: transform 0.2s;
}

.nav-link:hover .chevron {
    transform: rotate(180deg);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.sign-in-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.sign-in-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.user-icon {
    width: 28px;
    height: 28px;
}

.search-btn {
    color: #ffffff;
    padding: 8px;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.search-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.fa-solid, .fas {
    font-weight: 900;
    font-size: 30px;
}


/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #ffffff;
    transition: transform 0.3s, opacity 0.3s;
}

/* Hero Section with Video */
.hero {
    position: relative;
    width: 100%;
    min-height: 350px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.1) 100%);
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 60px 24px 120px;
    min-height: 480px;
}

.hero-text-content {
    max-width: 400px;
}

.hero-title {
    color: #ffffff;
    margin-bottom: 24px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    font-size: 48px;
    font-weight: 300;
    line-height: 1.2;
}

/* Laptop Mockup */
.hero-laptop {
    flex-shrink: 0;
    max-width: 550px;
    width: 45%;
}

.laptop-frame {
    position: relative;
}

.laptop-screen {
    background-color: #ffffff;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    border: 2px solid #333;
}

.laptop-base {
    height: 16px;
    background: linear-gradient(180deg, #c0c0c0 0%, #888 100%);
    border-radius: 0 0 4px 4px;
    margin: 0 -8px;
}

.dashboard-mockup {
    font-size: 10px;
}

.dashboard-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 8px 12px;
    background-color: #4d148c;
    color: #ffffff;
}

.dashboard-logo {
    font-weight: bold;
    font-size: 12px;
    color: #ff6600;
}

.dashboard-nav {
    display: flex;
    gap: 12px;
    font-size: 8px;
    opacity: 0.9;
}

.dashboard-content {
    display: flex;
    min-height: 180px;
}

.dashboard-sidebar {
    width: 100px;
    background-color: #f5f5f5;
    padding: 8px;
    border-right: 1px solid #e0e0e0;
}

.sidebar-item {
    padding: 4px 6px;
    font-size: 7px;
    color: #666;
    margin-bottom: 2px;
    border-radius: 2px;
}

.sidebar-item.active {
    background-color: #4d148c;
    color: #ffffff;
}

.dashboard-main {
    flex: 1;
    padding: 12px;
    background-color: #ffffff;
}

.dashboard-title {
    font-size: 8px;
    color: #4d148c;
    margin-bottom: 4px;
}

.shipment-count {
    font-size: 11px;
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
}

.us-map {
    margin-bottom: 8px;
}

.map-svg {
    width: 100%;
    height: 80px;
}

.dashboard-badges {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.badge {
    padding: 2px 6px;
    border-radius: 2px;
    font-size: 6px;
    font-weight: bold;
}

.badge.warning {
    background-color: #fff3cd;
    color: #856404;
}

.badge.alert {
    background-color: #f8d7da;
    color: #721c24;
}

.badge.info {
    background-color: #d4edda;
    color: #155724;
}

/* Alert/Error Message Styles */
.alert {
    padding: 12px 16px;
    border-radius: 4px;
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.4;
    display: block;
    width: 100%;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    font-weight: 500;
}

.alert-danger::before {
    content: "⚠ ";
    margin-right: 8px;
}

/* Video Controls */
.video-controls {
    position: absolute;
    bottom: 130px;
    right: 24px;
    display: flex;
    gap: 8px;
    z-index: 20;
}

.video-control-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.2);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
    border: 1px solid rgba(255,255,255,0.3);
}

.video-control-btn:hover {
    background-color: rgba(255,255,255,0.3);
}

/* Action Bar */
.action-bar {
    position: relative;
    z-index: 20;
    margin-top: -80px;
    padding: 0 24px;
}

.action-bar-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 0;
    flex-wrap: wrap;
}

.action-buttons {
    display: flex;
    gap: 0;
    background-color: #fafafa;
    border-radius: 0px;
}

.action-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 24px 48px;
    background-color: #ffffff;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    border-right: 1px solid #e0e0e0;
    transform: translateY(0);
}

.action-button:last-child {
    border-right: none;
}

.action-button:hover {
    background-color: #f5f5f5;
}

.action-button.active {
    background-color: #4d148c;
    color: #ffffff;
    transform: translateY(-12px);
    padding: 36px 48px 12px 48px;
}

.action-button .material-symbols-outlined {
    font-size: 32px;
}

.action-button-text {
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.5px;
}

.action-bar .tracking-form {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    max-width: 400px;
    margin-top: 20px;
}

.action-bar .tracking-form form {
    display: flex;
    flex-direction: row;
}

.action-bar .input-wrapper {
    flex: 1;
}

.action-bar .tracking-input {
    width: 100%;
    height: 48px;
    padding: 0 16px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-right: none;
    border-radius: 4px 0 0 4px;
    outline: none;
}

.action-bar .tracking-input:focus {
    border-color: #4d148c;
    box-shadow: none;
}

.action-bar .tracking-input::placeholder {
    color: #888;
}

.action-bar .track-btn {
    height: 48px;
    padding: 0 24px;
    background-color: #ff6600;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 0 4px 4px 0;
    transition: background-color 0.2s;
}

.action-bar .track-btn:hover {
    background-color: #e55c00;
}

/* Info Banner */
.info-banner {
    padding: 24px;
    background-color: #f7f7f7;
}

.banner-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 20px 14px;
    background-color: #ffffff;
    border: 1px solid rgb(0 122 183);
    border-left: 4px solid rgb(0 122 183);
    border-radius: 4px;
}

.info-icon {
    flex-shrink: 0;
}

.banner-text {
    font-size: 16px;
    color: #333;
}

.banner-link {
    color: #333;
    text-decoration: underline;
    transition: color 0.2s;
}

.banner-link:hover {
    color: #4d148c;
}

/* Quick Links Section */
.quick-links {
    padding: 48px 24px;
    background-color: #ffffff;
    width: 100%;
}

.links-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.quick-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 0;
    width: 120px;
    text-align: center;
    transition: transform 0.2s;
}

.quick-link:hover {
    transform: translateY(-4px);
}

.link-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid #4d148c;
}

.link-icon .material-symbols-outlined {
    font-size: 50px;
    color: #4d148c;
    transition: transform 0.2s;
}

.quick-link:hover .link-icon .material-symbols-outlined {
    transform: scale(1.1);
}

.link-text {
    font-size: 0.875rem;
    font-weight: 700;
    color: #0066b3;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

/* Featured Image Section */
.featured-image-section {
    width: 100%;
    max-width: 400px;
    padding: 0;
    background-color: #ffffff;
}

.featured-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Why Ship with FedEx Section */
.why-fedex {
    background-color: #f5f5f5;
    padding: 15px 24px;
}

.why-fedex-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.why-fedex-content {
    flex: 1;
}

.why-fedex-title {
    font-size: 36px;
    font-weight: 300;
    color: #666;
    margin-bottom: 32px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 24px;
}

.feature h3 {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.feature p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.feature a {
    color: #333;
    text-decoration: underline;
}

.feature a:hover {
    color: #4d148c;
}

.disclaimer-text {
    font-size: 13px;
    color: #666;
    margin-bottom: 8px;
}

.disclaimer-text a {
    text-decoration: underline;
}

.cta-btn-outline {
    display: inline-block;
    margin-top: 24px;
    padding: 16px 32px;
    border: 2px solid #ff6600;
    color: #ff6600;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.2s;
}

.cta-btn-outline:hover {
    background-color: #ff6600;
    color: #ffffff;
}

.why-fedex-image {
    flex-shrink: 0;
    width: 400px;
}

.why-fedex-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

/* Stay Ahead Section */
.stay-ahead {
    padding: 40px 24px;
    background-color: #ffffff;
}

.stay-ahead-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 36px;
    font-weight: 300;
    color: #333;
    text-align: center;
    margin-bottom: 48px;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.card {
    display: flex;
    flex-direction: column;
}

.card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    margin-bottom: 20px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.card:hover .card-image img {
    transform: scale(1.05);
}

.card-title {
    font-size: 20px;
    font-weight: 400;
    color: #333;
    margin-bottom: 12px;
}

.card-description {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 16px;
    flex-grow: 1;
}

.card-description a {
    text-decoration: underline;
}

.card-link {
    font-size: 14px;
    font-weight: 700;
    color: #0066b3;
    letter-spacing: 0.5px;
    transition: color 0.2s;
}

.card-link:hover {
    color: #004a80;
    text-decoration: underline;
}

/* FedEx Delivers Section */
.fedex-delivers {
    padding: 40px 24px;
    background-color: #ffffff;
}

.fedex-delivers-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    align-items: center;
}

.delivers-content {
    flex: 1;
    background-color: #f5f5f5;
    padding: 40px;
}

.delivers-content h2 {
    font-size: 24px;
    font-weight: 400;
    color: #333;
    margin-bottom: 16px;
    line-height: 1.4;
}

.delivers-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.delivers-image {
    flex-shrink: 0;
    width: 45%;
}

.delivers-image img {
    width: 100%;
    height: auto;
}

/* Business Section */
.business-section {
    padding: 60px 24px;
    background-color: #ffffff;
}

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

.business-cards {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.business-card {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

.business-card-image {
    flex-shrink: 0;
    width: 220px;
    height: 160px;
    overflow: hidden;
}

.business-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.business-card-content {
    flex: 1;
}

.business-card-content h3 {
    font-size: 20px;
    font-weight: 400;
    color: #333;
    margin-bottom: 12px;
}

.business-card-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 16px;
}

/* Rewards Image */
.rewards-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
    position: relative;
}

.rewards-logos {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.reward-logo {
    width: 50px;
    height: 50px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 12px;
}

.reward-logo.target {
    background-color: #cc0000;
    color: white;
}

.reward-logo.lowes {
    background-color: #004990;
    color: white;
    font-size: 8px;
}

.reward-logo.starbucks {
    background-color: #00704a;
    color: white;
    border-radius: 50%;
}

.rewards-text {
    font-size: 18px;
    font-weight: 700;
    color: #4d148c;
    letter-spacing: 2px;
}

/* Rate Changes Section */
.rate-changes {
    padding: 40px 24px;
    background-color: #ffffff;
    border-top: 1px solid #e0e0e0;
}

.rate-changes-container {
    max-width: 1200px;
    margin: 0 auto;
}

.rate-item {
    margin-bottom: 32px;
}

.rate-item h3 {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.rate-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 8px;
}

.rate-item a {
    text-decoration: underline;
}

/* Footer */
.footer {
    background-color: #f5f5f5;
    padding-top: 48px;
}

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

.footer-main {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding-bottom: 32px;
}

.footer-column h4 {
    font-size: 12px;
    font-weight: 700;
    color: #4d148c;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 8px;
}

.footer-column a {
    font-size: 14px;
    color: #333;
    transition: color 0.2s;
}

.footer-column a:hover {
    color: #4d148c;
    text-decoration: underline;
}

.language-column {
    margin-left: auto;
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    color: #333;
}

.language-dropdown {
    position: relative;
    display: inline-block;
}

.language-dropdown select {
    appearance: none;
    background-color: #ffffff;
    border: 1px solid #ccc;
    padding: 12px 40px 12px 16px;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    min-width: 180px;
}

.dropdown-arrow {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.footer-divider {
    height: 1px;
    background-color: #ccc;
    margin: 32px 0;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-bottom: 32px;
}

.social-label {
    font-size: 12px;
    font-weight: 700;
    color: #4d148c;
    letter-spacing: 1px;
}

.social-icons {
    display: flex;
    gap: 16px;
}

.social-icons a {
    color: #333;
    transition: color 0.2s;
}

.social-icons a:hover {
    color: #4d148c;
}

.footer-bottom {
    background-color: #4d148c;
    padding: 16px 24px;
}

.footer-bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.copyright {
    font-size: 13px;
    color: #ffffff;
}

.footer-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.footer-nav a {
    font-size: 13px;
    color: #ffffff;
    transition: opacity 0.2s;
}

.footer-nav a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.footer-nav .divider {
    color: #ffffff;
    opacity: 0.5;
}

/* Chat Widget - WhatsApp Styling */
.chat-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background-color: #4d148c;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
    z-index: 1000;
    text-decoration: none;
}

.chat-widget i {
    font-size: 32px;
}

.chat-widget:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
}

.chat-label {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
        padding: 40px 24px 140px;
    }
    
    .hero-laptop {
        width: 80%;
        max-width: 450px;
        align-self: center;
    }
    
    .video-controls {
        bottom: 150px;
    }
    
    .action-bar-container {
        flex-direction: column;
        gap: 24px;
    }

    
    .action-bar .tracking-form {
        max-width: 100%;
        width: 100%;
    }
    
    .why-fedex-container {
        flex-direction: column;
    }
    
    .why-fedex-image {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .fedex-delivers-container {
        flex-direction: column;
    }
    
    .delivers-image {
        width: 100%;
    }
    
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .sign-in-btn {
        display: none;
    }
    
    .sign-in-btn span {
        display: none;
    }
    
    .header-actions {
        margin-left: auto;
    }
    
    .header-container {
        height: 60px;
    }
    
    .hero {
        min-height: 350px;
    }
    
    .hero-content {
        padding: 24px 16px 100px;
        justify-content: center;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 32px;
        text-align: center;
    }
    
    .hero-laptop {
        display: none;
    }
    
    .video-controls {
        bottom: 150px;
        right: 16px;
    }
    
    .action-bar {
        margin-top: -60px;
        padding: 0 16px;
    }
    
    .action-bar-container {
        padding: 16px;
        flex-direction: column;
        gap: 16px;
    }
    
    .action-buttons {
        gap: 0;
        width: 100%;
        border-radius: 6px;
    }
    
    .action-button {
        flex: 1;
        padding: 16px 12px;
        font-size: 12px;
        border-right: 1px solid #e0e0e0;
    }
    
    .action-button.active {
        transform: translateY(-8px);
        padding: 24px 12px 8px 12px;
    }
    
    .action-button .material-symbols-outlined {
        font-size: 24px;
    }
    
    .action-button-text {
        font-size: 16px;
    }
    
    .action-bar .tracking-form {
        display: flex;
        gap: 0;
        flex: 1;
        width: 100%;
        max-width: 100%;
        margin-top: 0;
    }
    
    .action-link-text {
        font-size: 16px;
    }
    
    .action-bar .tracking-form {
        display: flex;
        gap: 0;
        flex: 1;
        max-width: 100%;
    }
    
    .action-bar .tracking-input {
        border-radius: 4px 0 0 4px;
        border-right: none;
    }
    
    .action-bar .track-btn {
        border-radius: 0 4px 4px 0;
        width: auto;
        padding: 0 24px;
    }
    
    .quick-link {
        width: calc(50% - 12px);
        padding: 16px;
    }
    
   
    .link-icon svg {
        width: 48px;
        height: 48px;
    }
    
    
    
    .banner-container {
        flex-direction: row;
    }
    
    .banner-text {
        font-size: 14px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
    }
    
    .business-card {
        flex-direction: column;
    }
    
    .business-card-image {
        width: 100%;
        height: 200px;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
    }
    
    .footer-social {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-nav {
        justify-content: center;
    }
    
    .chat-label {
        display: none;
    }
    
    .chat-widget {
        min-width: 60px;
        padding: 0;
        border-radius: 50%;
    }
}

@media (max-width: 480px) {
    .hero-title-line {
        font-size: 26px;
    }
    
    .hero-title-line:first-child {
        font-size: 24px;
    }
    
    .action-link {
        width: calc(50% - 8px);
    }
    
    .action-icon {
        width: 28px;
        height: 28px;
    }
    
    .quick-link {
        width: 100%;
    }
    
    .links-container {
        gap: 0;
    }
    
    .quick-link {
        justify-content: flex-start;
        padding: 16px 24px;
    }
    
    .why-fedex-title {
        font-size: 28px;
    }
    
    .cta-btn-outline {
        display: block;
        text-align: center;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    animation: fadeIn 0.8s ease-out;
}

/* Focus States for Accessibility */
.nav-link:focus,
.sign-in-btn:focus,
.search-btn:focus,
.tab:focus,
.track-btn:focus,
.quick-link:focus,
.chat-widget:focus,
.card-link:focus,
.cta-btn-outline:focus {
    outline: 2px solid #ff6600;
    outline-offset: 2px;
}

.tracking-input:focus {
    outline: none;
}

/* Print Styles */
@media print {
    .header,
    .chat-widget {
        display: none;
    }
    
    .hero {
        background: #f0f0f0;
        color: #000;
    }
    
    .hero-title {
        color: #000;
    }
}
