/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0066cc;
    --secondary-color: #ff6b00;
    --dark-bg: #1a1a1a;
    --light-bg: #f5f5f5;
    --text-color: #333;
    --text-light: #666;
    --border-color: #e0e0e0;
    --white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Bar */
.top-bar {
    background: var(--dark-bg);
    padding: 0.8rem 20px;
    border-bottom: 2px solid var(--primary-color);
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    gap: 2rem;
}

.top-bar-left a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.top-bar-left a:hover {
    color: var(--primary-color);
}

.top-bar-right {
    display: flex;
    gap: 1.5rem;
}

.top-bar-right a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-bar-right a:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Navigation */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-brand h1 {
    color: var(--primary-color);
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    margin: 5px 0;
    transition: 0.3s;
}

/* Buttons */
.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: #0052a3;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    position: relative;
    color: var(--white);
    padding: 120px 20px;
    text-align: center;
    min-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Hero Video Background */
.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-carousel-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.hero-carousel-image.active {
    opacity: 1;
}

/* Hero Overlay for better text contrast */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 2;
}

/* Carousel Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    gap: 10px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--white);
    width: 30px;
    border-radius: 6px;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.8);
}

.hero-content {
    position: relative;
    z-index: 3;
    animation: heroFadeIn 0.8s ease-out;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About Section */
.about {
    padding: 80px 20px;
    background: var(--light-bg);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Why Choose Us */
.why-choose {
    padding: 80px 20px;
}

.why-choose .container h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.feature-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
    margin: -2.5rem -2.5rem 1rem -2.5rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* CTA Section */
.cta-section {
    position: relative;
    color: var(--white);
    padding: 60px 20px;
    text-align: center;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.85) 0%, rgba(0, 82, 163, 0.85) 100%);
    z-index: 2;
}

.cta-content {
    position: relative;
    z-index: 3;
}

.cta-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* How It Works */
.how-it-works {
    padding: 80px 20px;
    background: var(--light-bg);
}

.how-it-works .container h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    text-align: center;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.process-step {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    line-height: 50px;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.process-step h3 {
    font-size: 1rem;
    color: var(--text-color);
}

.how-it-works .container > .btn {
    display: block;
    margin: 2rem auto 0;
}

/* Statistics */
.statistics {
    padding: 80px 20px;
    background: var(--dark-bg);
    color: var(--white);
    text-align: center;
}

.statistics h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.statistics .container > p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-card h3 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.stat-card p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Shipment Insights Chart */
.shipment-insights {
    padding: 80px 20px;
    background: var(--dark-bg);
}

.shipment-insights .container h2 {
    font-size: 2.5rem;
    color: var(--white);
    text-align: center;
    margin-bottom: 1rem;
}

.shipment-insights .container > p {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.chart-legend {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    font-weight: 500;
}

.legend-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    display: inline-block;
}

.legend-dot.domestic {
    background: #4fc3f7;
}

.legend-dot.international {
    background: #ff7043;
}

#shipment-chart {
    width: 100%;
    height: 420px;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}

/* Industries */
.industries {
    padding: 80px 20px;
}

.industries .container h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    text-align: center;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.industry-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.industry-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.industry-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.industry-card h3 {
    margin: 1.5rem 1rem 0.5rem;
    color: var(--text-color);
    font-size: 1.2rem;
}

.industry-card p {
    color: var(--text-light);
    padding: 0 1rem 1.5rem;
    line-height: 1.6;
}

/* Inline FAQ Section */
.faq-inline {
    padding: 80px 20px;
    background: var(--white);
}

.faq-inline .container > h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 0.75rem;
}

.faq-inline .container > p {
    text-align: center;
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
}

.faq-inline-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.faq-inline-item {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-inline-item:hover {
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.1);
}

.faq-inline-header {
    width: 100%;
    background: var(--white);
    border: none;
    padding: 1.1rem 1.25rem;
    text-align: left;
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--text-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: background 0.3s ease, color 0.3s ease;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.faq-inline-header i {
    color: var(--primary-color);
    font-size: 0.9rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-inline-header:hover,
.faq-inline-header.active {
    background: #f0f6ff;
    color: var(--primary-color);
}

.faq-inline-header.active i {
    transform: rotate(180deg);
}

.faq-inline-body {
    display: none;
    padding: 0 1.25rem 1.1rem;
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.8;
    border-top: 1px solid #e8f0fe;
}

.faq-inline-body.open {
    display: block;
}

/* Testimonials */
.testimonials {
    padding: 80px 20px;
    background: var(--light-bg);
}

.testimonials .container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    text-align: center;
}

.testimonials .container > p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.testimonials-carousel-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonials-viewport {
    overflow: hidden;
    flex: 1;
    min-width: 0;
}

.testimonials-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.45s ease;
    will-change: transform;
}

/* CSS enforces 3 visible cards — JS only moves the track */
.testimonial-card {
    flex: 0 0 calc((100% - 3rem) / 3);
    min-width: 0;
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    box-sizing: border-box;
}

@media (max-width: 1023px) {
    .testimonial-card {
        flex: 0 0 calc((100% - 1.5rem) / 2);
    }
}

@media (max-width: 639px) {
    .testimonial-card {
        flex: 0 0 100%;
    }
}

.testimonial-arrow {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    font-size: 1rem;
    cursor: pointer;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 12px rgba(0,102,204,0.25);
}

.testimonial-arrow:hover {
    background: #0052a3;
    transform: scale(1.1);
}

.testimonial-arrow:disabled {
    background: #ccc;
    cursor: default;
    transform: none;
    box-shadow: none;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    border: none;
    padding: 0;
}

.testimonial-dot.active {
    background: var(--primary-color);
    transform: scale(1.3);
}

.testimonial-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    border: 3px solid var(--primary-color);
}

.testimonial-content {
    margin-bottom: 1.5rem;
    font-style: italic;
    color: var(--text-light);
    line-height: 1.8;
    min-height: 80px;
}

.testimonial-content:before {
    content: '"';
    font-size: 3rem;
    color: var(--primary-color);
    line-height: 0;
    vertical-align: -0.45em;
    margin-right: 0.1em;
}

.testimonial-author h4 {
    color: var(--text-color);
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.testimonial-author p {
    color: var(--primary-color);
    font-size: 0.9rem;
}

/* Quote Form */
.quote-form {
    padding: 80px 20px;
    background: var(--light-bg);
}

.quote-form .container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    text-align: center;
}

.quote-form .container > p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    border: 1px solid #e8f0fe;
    border-radius: 8px;
    background: #fafcff;
}

.form-section-header {
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary-color);
}

.form-section-header h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.form-section-header span {
    font-size: 0.88rem;
    color: var(--text-light);
    font-weight: 400;
}

.btn-add-parcel {
    margin-left: auto;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 1rem;
    padding: 0.7rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    transition: background 0.2s ease;
}

.btn-add-parcel:hover {
    background: var(--secondary-color);
}

.parcel-rows-header {
    display: grid;
    grid-template-columns: 1fr 1.4fr 1fr 1fr 1fr 28px;
    gap: 0.5rem;
    margin-bottom: 0.35rem;
    padding: 0 0.1rem;
}

.parcel-rows-header span {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.parcel-row {
    display: grid;
    grid-template-columns: 1fr 1.4fr 1fr 1fr 1fr 28px;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    align-items: center;
}

.parcel-row input {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.parcel-row input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 5px rgba(0,102,204,0.2);
}

.parcel-row-spacer {
    display: block;
    width: 28px;
}

.btn-remove-parcel {
    width: 26px;
    height: 26px;
    background: #fee2e2;
    color: #dc2626;
    border: none;
    border-radius: 50%;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s ease;
    padding: 0;
}

.btn-remove-parcel:hover {
    background: #fca5a5;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    resize: vertical;
    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);
    box-shadow: 0 0 5px rgba(0, 102, 204, 0.2);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-row .form-group {
    margin-bottom: 1.5rem;
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.form-actions .btn {
    flex: 1;
}

.btn-whatsapp {
    background-color: #25D366;
    color: #fff;
    border: 2px solid #25D366;
}

.btn-whatsapp:hover {
    background-color: #1ebe5d;
    border-color: #1ebe5d;
    color: #fff;
}

/* Contact Section */
.contact-section {
    padding: 80px 20px;
}

.contact-section .container h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    text-align: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.contact-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-card h3 {
    margin-bottom: 1rem;
    color: var(--text-color);
}

.contact-card p,
.contact-card a {
    color: var(--text-light);
    text-decoration: none;
    line-height: 1.8;
}

.contact-card a:hover {
    color: var(--primary-color);
}

/* Footer */
.footer {
    background: var(--dark-bg);
    color: var(--white);
    padding: 60px 20px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.footer-section a,
.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    line-height: 1.8;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.newsletter-form {
    display: flex;
    margin-top: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 5px 0 0 5px;
}

.newsletter-form button {
    padding: 10px 20px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
}

.newsletter-form button:hover {
    background: #0052a3;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.8);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: var(--white);
    font-size: 1.3rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .top-bar-left {
        gap: 1rem;
        font-size: 0.8rem;
    }

    .top-bar-left a {
        font-size: 0.8rem;
    }

    .top-bar-right {
        gap: 1rem;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        min-height: 400px;
        padding: 80px 20px;
    }

    .hero-video {
        display: none;
    }

    .hero-overlay {
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%);
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    h2 {
        font-size: 2rem !important;
    }

    .values-grid,
    .features-grid,
    .industries-grid,
    .stats-grid,
    .contact-grid,
    .footer-content,
    .faq-inline-grid {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        border-radius: 5px;
        margin-bottom: 0.5rem;
    }

    .newsletter-form button {
        border-radius: 5px;
    }
}

@media (max-width: 480px) {
    .top-bar .container {
        flex-direction: column;
        gap: 0.8rem;
    }

    .top-bar-left {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
    }

    .top-bar-left a {
        font-size: 0.75rem;
    }

    .top-bar-right {
        gap: 1rem;
        width: 100%;
        justify-content: center;
    }

    .hero {
        min-height: 400px;
        padding: 60px 20px;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .process-step {
        padding: 1.5rem;
    }

    .step-number {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 1.2rem;
    }

    .stat-card h3 {
        font-size: 2rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .btn-large {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .contact-section .container h2,
    .about .container h2,
    .quote-form .container h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 600px) {
    .footer-bottom {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

/* ── Nav Logo ── */
.nav-logo {
    height: 90px;
    width: auto;
    display: block;
}

/* ── Nav Dropdown (Resources) ── */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    cursor: pointer;
}

.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 180px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.13);
    list-style: none;
    padding: 0.75rem 0 0.5rem;
    z-index: 200;
    border-top: 3px solid var(--primary-color);
}

/* Invisible bridge fills the gap so mouse can travel from toggle → menu */
.nav-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 8px;
}

.nav-dropdown:hover .nav-dropdown-menu {
    display: block;
}

.nav-dropdown-menu li a {
    display: block;
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    color: var(--text-color);
    white-space: nowrap;
    transition: background 0.2s, color 0.2s;
}

.nav-dropdown-menu li a:hover {
    background: #f0f6ff;
    color: var(--primary-color);
}

/* ── Footer Logo ── */
.footer-logo {
    margin-bottom: 0.75rem;
}

.footer-logo img {
    height: 90px;
    width: auto;
}

/* ── Service Pills ── */
.service-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.25rem;
    justify-content: center;
}

.service-pill {
    padding: 0.55rem 1.4rem;
    border: 2px solid var(--primary-color);
    border-radius: 30px;
    background: transparent;
    color: var(--primary-color);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: inherit;
}

.service-pill:hover {
    background: #e8f0fe;
}

.service-pill.active {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(0,102,204,0.25);
}

/* ── Carrier Service Multi-Select ── */
.carrier-select-wrapper {
    position: relative;
}

.carrier-select-toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    background: var(--white);
    font-size: 0.95rem;
    color: var(--text-light);
    cursor: pointer;
    transition: border-color 0.3s;
    font-family: inherit;
    text-align: left;
}

.carrier-select-toggle:hover,
.carrier-select-toggle.open {
    border-color: var(--primary-color);
    outline: none;
}

.carrier-select-toggle .fa-chevron-down {
    transition: transform 0.3s;
    color: var(--text-light);
}

.carrier-select-toggle.open .fa-chevron-down {
    transform: rotate(180deg);
}

.carrier-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: var(--white);
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    z-index: 50;
    padding: 0.75rem 0;
}

.carrier-dropdown.open {
    display: block;
}

.carrier-hint {
    font-size: 0.8rem;
    color: var(--text-light);
    padding: 0 1rem 0.5rem;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 0.4rem;
}

.carrier-option {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.55rem 1rem;
    cursor: pointer;
    font-size: 0.93rem;
    color: var(--text-color);
    transition: background 0.15s;
}

.carrier-option:hover {
    background: #f0f6ff;
}

.carrier-option input[type="checkbox"] {
    accent-color: var(--primary-color);
    width: 15px;
    height: 15px;
    cursor: pointer;
    flex-shrink: 0;
}

/* ── Mobile: nav dropdown stacks in menu ── */
@media (max-width: 768px) {
    .nav-dropdown-menu {
        position: static;
        box-shadow: none;
        border-top: none;
        border-left: 3px solid var(--primary-color);
        border-radius: 0;
        padding: 0.25rem 0 0.25rem 0.75rem;
        margin-top: 0.25rem;
    }

    .nav-dropdown.open .nav-dropdown-menu {
        display: block;
    }
}

