
/* General Styling */
:root {
    --primary-color: #e12729;
    --secondary-color: #f37324;
    --tertiary-color: #f8cc1b;
    --quaternary-color: #72b043;
    --quinary-color: #0c8fc7;
    --text-color: #333;
    --light-gray: #f4f4f4;
    --dark-gray: #555;
}

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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
}

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

a {
    color: var(--primary-color);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--dark-gray);
    margin-bottom: 10px;
}

p {
    margin-bottom: 10px;
}

.btn {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.btn:hover {
    background: var(--secondary-color);
    text-decoration: none;
}

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

.btn-secondary {
    background: var(--quinary-color);
}

/* Header */
header {
    background: #fff;
    color: var(--text-color);
    padding: 10px 0;
    border-bottom: 1px solid var(--light-gray);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo img {
    height: 50px;
}

header nav ul {
    display: flex;
}

header nav ul li {
    margin-left: 20px;
}

header nav ul li a {
    color: var(--dark-gray);
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
}

header nav ul li a:hover {
    color: var(--primary-color);
}

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: url('../assets/Logistics.jpeg') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    padding: 100px 0;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
    color: #fff;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #fff;
}

.hero-buttons .btn {
    margin: 0 10px;
}

/* About Us Brief */
.about-us-brief {
    padding: 50px 0;
    background: var(--light-gray);
}

.about-us-brief .container {
    display: flex;
    align-items: center;
    gap: 30px;
}

.about-us-brief .about-content {
    flex: 1;
}

.about-us-brief .about-image {
    flex: 1;
    text-align: center;
}

.about-us-brief .about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Contact Info */
.contact-info {
    background: var(--primary-color);
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

.contact-info p {
    margin: 0;
    font-size: 1.1em;
}

/* Services Overview */
.services-overview {
    padding: 50px 0;
    text-align: center;
}

.services-overview h5 {
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.services-overview h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.services-overview .service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.services-overview .service-item {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.services-overview .service-item:hover {
    transform: translateY(-10px);
}

.services-overview .service-item img {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
}

.services-overview .service-item h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Transportation Expertise */
.transportation-expertise {
    background: var(--quinary-color);
    color: #fff;
    padding: 50px 0;
    text-align: center;
}

.transportation-expertise h2 {
    color: #fff;
    font-size: 2.5em;
    margin-bottom: 20px;
}

.transportation-expertise p {
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto 20px auto;
}

/* Accomplishments */
.accomplishments {
    padding: 50px 0;
    text-align: center;
    background: var(--light-gray);
}

.accomplishments h5 {
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.accomplishments h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
}

.accomplishments .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.accomplishments .stat-item {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

.accomplishments .stat-item h3 {
    font-size: 3em;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.accomplishments .stat-item h4 {
    color: var(--dark-gray);
    margin-bottom: 10px;
}

/* Testimonials */
.testimonials {
    padding: 50px 0;
    text-align: center;
}

.testimonials h5 {
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.testimonials .testimonial-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    margin-top: 30px;
    padding-bottom: 20px; /* For scrollbar */
}

.testimonials .testimonial-item {
    flex: 0 0 100%; /* Each item takes full width */
    scroll-snap-align: start;
    background: var(--light-gray);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.05);
    margin-right: 20px; /* Space between items */
}

.testimonials .testimonial-item:last-child {
    margin-right: 0;
}

.testimonials .testimonial-item p {
    font-style: italic;
    margin-bottom: 15px;
    font-size: 1.1em;
}

.testimonials .testimonial-item h6 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.testimonials .testimonial-item span {
    font-size: 0.9em;
    color: var(--dark-gray);
}

/* Global Business Operations */
.global-business-operations {
    background: var(--secondary-color);
    color: #fff;
    padding: 50px 0;
    text-align: center;
}

.global-business-operations h3 {
    color: #fff;
    font-size: 2.2em;
    margin-bottom: 10px;
}

.global-business-operations p {
    font-size: 1.1em;
}

/* Footer */
footer {
    background: #222;
    color: #fff;
    padding: 50px 0 20px 0;
}

footer .footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

footer .footer-col h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

footer .footer-col p,
footer .footer-col ul li a {
    color: #ccc;
    font-size: 0.95em;
}

footer .footer-col ul li {
    margin-bottom: 10px;
}

footer .footer-col ul li a:hover {
    color: #fff;
    text-decoration: none;
}

footer .footer-col.contact-col p i {
    margin-right: 10px;
    color: var(--primary-color);
}

footer .social-icons a {
    color: #fff;
    font-size: 24px;
    margin-right: 15px;
    transition: color 0.3s ease;
}

footer .social-icons a:hover {
    color: var(--primary-color);
}

footer .footer-bottom {
    text-align: center;
    border-top: 1px solid #444;
    padding-top: 20px;
}

footer .footer-bottom p {
    margin: 0;
    font-size: 0.9em;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        align-items: flex-start;
    }

    header nav {
        width: 100%;
        margin-top: 10px;
    }

    header nav ul {
        flex-direction: column;
        width: 100%;
        display: none; /* Hidden by default for mobile */
    }

    header nav ul.active {
        display: flex;
    }

    header nav ul li {
        margin: 10px 0;
        text-align: center;
    }

    .menu-toggle {
        display: block;
        position: absolute;
        right: 20px;
        top: 25px;
    }

    .hero {
        padding: 80px 0;
    }

    .hero h1 {
        font-size: 2.5em;
    }

    .hero p {
        font-size: 1em;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        margin: 10px 0;
    }

    .about-us-brief .container {
        flex-direction: column;
    }

    .about-us-brief .about-image {
        margin-top: 20px;
    }

    .services-overview .service-grid,
    .accomplishments .stats-grid,
    footer .footer-columns {
        grid-template-columns: 1fr;
    }

    .testimonials .testimonial-item {
        flex: 0 0 95%; /* Adjust for smaller screens */
        margin-right: 10px;
    }
}

@media (max-width: 480px) {
    .container {
        width: 95%;
    }

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

    .hero p {
        font-size: 0.9em;
    }

    .services-overview h2,
    .transportation-expertise h2,
    .accomplishments h2 {
        font-size: 2em;
    }

    .global-business-operations h3 {
        font-size: 1.8em;
    }

    .contact-info p {
        font-size: 0.9em;
    }
}



/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    text-align: center;
    padding: 80px 0;
}

.page-header h1 {
    color: #fff;
    font-size: 3em;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2em;
    color: #fff;
    opacity: 0.9;
}

/* Active Navigation Link */
header nav ul li a.active {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

/* About Page Styles */
.about-content {
    padding: 50px 0;
}

.about-intro {
    text-align: center;
    margin-bottom: 50px;
}

.about-intro h2 {
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.mission-vision {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.mission, .vision {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 10px;
    border-left: 5px solid var(--primary-color);
}

.mission h3, .vision h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.values {
    margin-bottom: 50px;
}

.values h2 {
    text-align: center;
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-item {
    text-align: center;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-10px);
}

.value-item i {
    font-size: 3em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.value-item h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.team-section {
    margin-bottom: 50px;
}

.team-section h2 {
    text-align: center;
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    text-align: center;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 15px;
}

.team-member h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.team-member p {
    color: var(--secondary-color);
    font-weight: bold;
    margin-bottom: 10px;
}

.company-stats {
    background: var(--light-gray);
    padding: 50px 0;
    border-radius: 10px;
}

.company-stats h2 {
    text-align: center;
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.company-stats .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.company-stats .stat-item {
    text-align: center;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.company-stats .stat-item h3 {
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 5px;
}

/* Services Page Styles */
.services-intro {
    padding: 50px 0;
    text-align: center;
    background: var(--light-gray);
}

.services-intro h2 {
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.services-detailed {
    padding: 50px 0;
}

.service-category {
    margin-bottom: 60px;
}

.service-category h3 {
    font-size: 2.2em;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
    border-bottom: 3px solid var(--primary-color);
    padding-bottom: 10px;
}

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

.services-detailed .service-item {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border-left: 5px solid var(--primary-color);
}

.services-detailed .service-item:hover {
    transform: translateY(-5px);
}

.services-detailed .service-item i {
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.services-detailed .service-item h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.services-detailed .service-item ul {
    margin-top: 15px;
}

.services-detailed .service-item ul li {
    padding: 5px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 20px;
}

.services-detailed .service-item ul li:before {
    content: "✓";
    color: var(--quaternary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.service-benefits {
    background: var(--light-gray);
    padding: 50px 0;
}

.service-benefits h2 {
    text-align: center;
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-item {
    text-align: center;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

.benefit-item i {
    font-size: 3em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.benefit-item h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Form Styles */
.tracking-form-section,
.quote-form-section,
.contact-form-section {
    padding: 50px 0;
    background: var(--light-gray);
}

.tracking-form-container,
.quote-form-container,
.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.tracking-form-container h2,
.quote-form-container h2,
.contact-form-container h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 2.2em;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: var(--dark-gray);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.error-message {
    color: var(--primary-color);
    font-size: 0.9em;
    margin-top: 5px;
    display: block;
}

.form-section {
    margin-bottom: 30px;
    padding: 20px;
    background: var(--light-gray);
    border-radius: 8px;
}

.form-section h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.95em;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 3px;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark:after {
    content: "✓";
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 12px;
}

/* Result Sections */
.tracking-result,
.quote-result,
.contact-success {
    padding: 50px 0;
}

.tracking-info,
.quote-info,
.success-message {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.tracking-info h3,
.quote-info h3,
.success-message h3 {
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 2.2em;
    text-align: center;
}

.package-details,
.quote-details {
    margin-bottom: 30px;
}

.detail-item,
.summary-item,
.pricing-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.detail-item strong,
.summary-item span:first-child,
.pricing-item span:first-child {
    color: var(--dark-gray);
}

.status-badge {
    background: var(--quaternary-color);
    color: #fff;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.9em;
}

/* Timeline Styles */
.tracking-timeline {
    margin-top: 30px;
}

.tracking-timeline h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.5em;
}

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

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

.timeline-item {
    position: relative;
    margin-bottom: 30px;
}

.timeline-icon {
    position: absolute;
    left: -22px;
    top: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.timeline-item.completed .timeline-icon {
    background: var(--quaternary-color);
    color: #fff;
}

.timeline-item.active .timeline-icon {
    background: var(--primary-color);
    color: #fff;
}

.timeline-item.pending .timeline-icon {
    background: #ddd;
    color: #999;
}

.timeline-content h5 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.timeline-date {
    font-size: 0.9em;
    color: #999;
}

/* Quote Specific Styles */
.quote-summary,
.quote-pricing {
    background: var(--light-gray);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.quote-summary h4,
.quote-pricing h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 5px;
}

.pricing-item.total {
    border-top: 2px solid var(--primary-color);
    margin-top: 10px;
    padding-top: 15px;
    font-size: 1.1em;
}

.quote-actions {
    text-align: center;
    margin-top: 30px;
}

.quote-actions .btn {
    margin: 0 10px;
}

/* Contact Page Styles */
.contact-info-section {
    padding: 50px 0;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.contact-method {
    text-align: center;
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

.contact-method i {
    font-size: 3em;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-method h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.success-message {
    text-align: center;
}

.success-message i {
    font-size: 4em;
    color: var(--quaternary-color);
    margin-bottom: 20px;
}

/* Map Section */
.map-section {
    padding: 50px 0;
    background: var(--light-gray);
}

.map-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 2.5em;
}

.map-placeholder {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.map-placeholder img {
    width: 100%;
    height: auto;
}

.map-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255,255,255,0.95);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
}

.map-info h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* FAQ Section */
.faq-section {
    padding: 50px 0;
}

.faq-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 2.5em;
}

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

.faq-item {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    border-left: 5px solid var(--primary-color);
}

.faq-item h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Help Sections */
.tracking-help,
.quote-help {
    padding: 50px 0;
    background: var(--light-gray);
}

.tracking-help h2,
.quote-help h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 2.5em;
}

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

.help-item {
    text-align: center;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

.help-item i {
    font-size: 3em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.help-item h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.5em;
    }

    .about-intro h2,
    .services-intro h2,
    .accomplishments h2,
    .service-benefits h2,
    .tracking-help h2,
    .quote-help h2,
    .faq-section h2,
    .map-section h2 {
        font-size: 2em;
    }

    .mission-vision {
        grid-template-columns: 1fr;
    }

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

    .tracking-form-container,
    .quote-form-container,
    .contact-form-container {
        padding: 20px;
    }

    .quote-actions .btn {
        display: block;
        margin: 10px 0;
    }

    .map-overlay {
        position: static;
        margin-top: 20px;
    }

    .timeline {
        padding-left: 20px;
    }

    .timeline-icon {
        left: -15px;
        width: 25px;
        height: 25px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 60px 0;
    }

    .page-header h1 {
        font-size: 2em;
    }

    .service-category h3 {
        font-size: 1.8em;
    }

    .tracking-info h3,
    .quote-info h3,
    .success-message h3 {
        font-size: 1.8em;
    }

    .contact-method,
    .help-item,
    .faq-item {
        padding: 20px;
    }
}

