* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #1e3c72;
    --dark-blue: #152a52;
    --accent-orange: #f59e0b;
    --light-orange: #fbbf24;
    --white: #ffffff;
    --light-gray: #f8fafc;
    --text-gray: #64748b;
    --dark-text: #1e293b;
    --success: #10b981;
    --error: #ef4444;
    --warning: #f59e0b;
    --info: #3b82f6;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Roboto, Arial, sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    overflow-x: hidden;
}

header {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

header.scrolled {
    box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    text-decoration: none;
}

.logo i {
    color: var(--accent-orange);
    font-size: 1.8rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-text);
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-orange);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-orange);
    transition: width 0.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-blue);
    cursor: pointer;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
}

.btn-primary {
    background: var(--accent-orange);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--light-orange);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(245,158,11,0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-blue);
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
}

.hero {
    margin-top: 80px;
    background: linear-gradient(135deg, rgba(30,60,114,0.9) 0%, rgba(21,42,82,0.9) 100%), 
                url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover;
    color: var(--white);
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.stats-bar {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-orange);
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.trust-signals {
    background: var(--white);
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin: -3rem auto 0;
    max-width: 1000px;
    border-radius: 15px;
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stars {
    color: var(--accent-orange);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
}

.trust-badge i {
    color: var(--accent-orange);
}

section {
    padding: 5rem 2rem;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.section-title p {
    color: var(--text-gray);
    font-size: 1.1rem;
}

.why-us {
    background: var(--light-gray);
}

.why-us > * {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

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

.feature-box {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
}

.feature-box h3 {
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.feature-box p {
    color: var(--text-gray);
}

.services-section > * {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

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

.service-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

.service-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.service-card:nth-child(1) .service-image {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
}

.service-card:nth-child(2) .service-image {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
}

.service-card:nth-child(3) .service-image {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
}

.service-card:nth-child(4) .service-image {
    background: linear-gradient(135deg, #d97706 0%, #f59e0b 100%);
}

.service-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-orange);
    color: var(--white);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-content {
    padding: 1.5rem;
}

.service-content h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-blue);
}

.service-content p {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    padding: 0.3rem 0;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-features li i {
    color: var(--accent-orange);
    font-size: 0.8rem;
}

.reviews {
    background: var(--light-gray);
}

.reviews > * {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

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

.review-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.review-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 1.2rem;
}

.review-meta h4 {
    color: var(--primary-blue);
    margin-bottom: 0.2rem;
}

.location {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.review-stars {
    color: var(--accent-orange);
    margin-bottom: 1rem;
}

.review-text {
    color: var(--text-gray);
    font-style: italic;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: var(--white);
    text-align: center;
}

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

.cta-content h2 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.cta-content p {
    margin-bottom: 2rem;
    opacity: 0.9;
    font-size: 1.2rem;
}

.tracking-section {
    margin-top: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: var(--white);
    text-align: center;
    padding: 4rem 2rem;
}

.tracking-content {
    max-width: 900px;
    margin: 0 auto;
}

.tracking-content h2 {
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.tracking-content p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.tracking-form {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.tracking-input {
    flex: 1;
    min-width: 300px;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
}

.tracking-result {
    display: none;
    margin-top: 2rem;
    text-align: left;
}

.tracking-result.active {
    display: block;
}

.package-overview {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    color: var(--dark-text);
}

.package-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--light-gray);
    flex-wrap: wrap;
    gap: 1rem;
}

.package-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-orange));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.package-info h3 {
    color: var(--primary-blue);
    font-size: 1.2rem;
}

/* CORRECTED: Added all status badge classes */
.package-status-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    background: #dbeafe;
    color: #1e40af;
}

.package-status-badge.delivered {
    background: #d1fae5;
    color: #065f46;
}

.package-status-badge.in-transit {
    background: #dbeafe;
    color: #1e40af;
}

.package-status-badge.pending {
    background: #fef3c7;
    color: #92400e;
}

.package-status-badge.exception {
    background: #fee2e2;
    color: #991b1b;
}

.package-status-badge.not-found {
    background: #f3f4f6;
    color: #6b7280;
}

.package-actions {
    display: flex;
    gap: 0.5rem;
}

.btn-icon {
    width: 40px;
    height: 40px;
    border: 2px solid #e2e8f0;
    background: var(--white);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    color: var(--text-gray);
}

.btn-icon:hover {
    border-color: var(--accent-orange);
    color: var(--accent-orange);
}

.progress-section {
    margin-bottom: 2rem;
}

.progress-bar-container {
    position: relative;
    padding: 2rem 0;
}

.progress-bar {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 6px;
    background: #e2e8f0;
    border-radius: 3px;
    transform: translateY(-50%);
}

/* CORRECTED: Added progress bar fill */
.progress-bar-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-orange));
    border-radius: 3px;
    transition: width 0.5s ease;
    width: 0%;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
}

.step-icon {
    width: 50px;
    height: 50px;
    background: var(--white);
    border: 3px solid #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    font-size: 1.2rem;
    transition: all 0.3s;
}

.step.active .step-icon {
    background: var(--accent-orange);
    border-color: var(--accent-orange);
    color: var(--white);
}

.step.completed .step-icon {
    background: var(--success);
    border-color: var(--success);
    color: var(--white);
}

.step span {
    font-size: 0.8rem;
    color: var(--text-gray);
    text-align: center;
}

.package-details-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.detail-card {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.detail-icon {
    width: 45px;
    height: 45px;
    background: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-orange);
    font-size: 1.2rem;
}

.detail-label {
    font-size: 0.8rem;
    color: var(--text-gray);
    display: block;
}

.detail-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-blue);
}

.route-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.route-endpoint {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.endpoint-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.endpoint-icon.from {
    background: var(--primary-blue);
    color: var(--white);
}

.endpoint-icon.to {
    background: var(--accent-orange);
    color: var(--white);
}

.endpoint-label {
    font-size: 0.75rem;
    color: var(--text-gray);
    text-transform: uppercase;
}

.endpoint-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-blue);
}

.route-line {
    flex: 1;
    height: 3px;
    background: #cbd5e1;
    margin: 0 2rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 100px;
}

.route-progress {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-orange));
    width: 0%;
    transition: width 0.5s ease;
}

.route-line i {
    position: relative;
    z-index: 2;
    background: var(--white);
    padding: 0.5rem;
    border-radius: 50%;
    color: var(--accent-orange);
}

.timeline-section {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
}

.timeline-section h4 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e2e8f0;
}

.timeline-item {
    position: relative;
    margin-bottom: 1.5rem;
    padding: 1rem 1rem 1rem 2rem;
    background: var(--white);
    border-radius: 10px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 1.2rem;
    width: 12px;
    height: 12px;
    background: var(--accent-orange);
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: 0 0 0 3px var(--accent-orange);
}

.timeline-item.completed::before {
    background: var(--success);
    box-shadow: 0 0 0 3px var(--success);
}

.timeline-item.not-found::before {
    background: var(--error);
    box-shadow: 0 0 0 3px var(--error);
}

.timeline-date {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: 0.3rem;
}

.timeline-status {
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 0.2rem;
}

.timeline-location {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.tracking-footer {
    background: #eff6ff;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-blue);
}

.info-box {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
}

.info-box i {
    color: var(--primary-blue);
}

.quote-section {
    margin-top: 80px;
    padding: 4rem 2rem;
}

.quote-section .section-title {
    max-width: 1000px;
    margin: 0 auto 3rem;
}

.quote-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.quote-form {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 15px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-blue);
    font-weight: 500;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-orange);
}

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

.quote-results {
    display: none;
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.quote-results.active {
    display: block;
}

.quote-option {
    background: var(--light-gray);
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.quote-option:hover,
.quote-option.selected {
    border-color: var(--accent-orange);
    background: rgba(245,158,11,0.05);
}

.quote-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-orange);
}

.service-info-section {
    background: var(--light-gray);
    padding: 4rem 2rem;
}

.service-info-section .section-title,
.service-comparison {
    max-width: 1200px;
    margin: 0 auto;
}

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

.comparison-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

.comparison-card.highlighted {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.comparison-header {
    padding: 1.5rem;
    color: var(--white);
    position: relative;
}

.popular-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-orange);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.comparison-header h3 {
    margin-bottom: 0.5rem;
}

.price-from {
    font-size: 1.2rem;
    opacity: 0.9;
}

.comparison-features {
    list-style: none;
    padding: 1.5rem;
}

.comparison-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
}

.comparison-features li i {
    color: var(--success);
}

.contact-hero {
    margin-top: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: var(--white);
    text-align: center;
    padding: 4rem 2rem;
}

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

.contact-hero h1 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-hero p {
    opacity: 0.9;
}

.contact-section {
    padding: 4rem 2rem;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.contact-info-header h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.contact-card {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform 0.3s;
}

.contact-card:hover {
    transform: translateX(5px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

.contact-details h4 {
    color: var(--primary-blue);
    margin-bottom: 0.3rem;
}

.contact-details p {
    color: var(--text-gray);
}

.contact-details a {
    color: var(--accent-orange);
    text-decoration: none;
}

.availability {
    font-size: 0.85rem;
    color: var(--text-gray);
}

.contact-form-wrapper {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.form-header {
    margin-bottom: 1.5rem;
}

.form-header h3 {
    color: var(--primary-blue);
}

.form-row {
    margin-bottom: 1rem;
}

.form-row.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.required {
    color: var(--error);
}

.alert {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.alert-success {
    background: #d1fae5;
    color: #065f46;
}

.alert-error {
    background: #fee2e2;
    color: #991b1b;
}

.btn-submit {
    width: 100%;
    justify-content: center;
}

footer {
    background: var(--dark-blue);
    color: var(--white);
    padding: 4rem 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: var(--accent-orange);
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
    color: rgba(255,255,255,0.8);
}

.footer-section a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--accent-orange);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--accent-orange);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
}

.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.chat-button {
    width: 60px;
    height: 60px;
    background: var(--accent-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 20px rgba(245,158,11,0.4);
    transition: all 0.3s;
}

.chat-button:hover {
    transform: scale(1.1);
}

.chat-box {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    display: none;
    overflow: hidden;
}

.chat-box.active {
    display: block;
}

.chat-header {
    background: var(--primary-blue);
    color: var(--white);
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
}

.chat-messages {
    height: 300px;
    overflow-y: auto;
    padding: 1rem;
    background: var(--light-gray);
}

.chat-message {
    margin-bottom: 1rem;
    padding: 0.8rem;
    border-radius: 10px;
    max-width: 80%;
}

.chat-message.bot {
    background: var(--white);
    color: var(--dark-text);
}

.chat-message.user {
    background: var(--primary-blue);
    color: var(--white);
    margin-left: auto;
}

.chat-input {
    display: flex;
    padding: 1rem;
    border-top: 1px solid #e2e8f0;
}

.chat-input input {
    flex: 1;
    padding: 0.8rem;
    border: 1px solid #e2e8f0;
    border-radius: 25px;
    outline: none;
}

.chat-send {
    background: var(--accent-orange);
    color: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-left: 0.5rem;
    cursor: pointer;
    transition: all 0.3s;
}

.chat-send:hover {
    background: var(--light-orange);
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero {
        padding: 4rem 1.5rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .stats-bar {
        gap: 2rem;
    }

    .trust-signals {
        margin: -2rem 1rem 0;
        padding: 1.5rem;
    }

    .quote-container,
    .contact-container {
        grid-template-columns: 1fr;
    }

    .form-row.two-col {
        grid-template-columns: 1fr;
    }

    .dimensions-row {
        grid-template-columns: 1fr;
    }

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

    .progress-steps {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .step span {
        font-size: 0.7rem;
    }

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

    .route-line {
        width: 100%;
        margin: 0;
    }

    .chat-box {
        width: 300px;
        right: -30px;
    }

    .comparison-card.highlighted {
        transform: none;
    }

    .footer-content {
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.75rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    section {
        padding: 3rem 1rem;
    }

    .package-details-grid {
        grid-template-columns: 1fr;
    }

    .dimensions-row {
        grid-template-columns: 1fr;
    }

    .service-comparison {
        grid-template-columns: 1fr;
    }

    .comparison-card.highlighted {
        transform: none;
    }
}