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

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #10b981;
    --accent-color: #f59e0b;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

html {
    scroll-behavior: smooth;
}

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

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

/* Top Header */
.top-header {
    background: var(--text-dark);
    color: white;
    padding: 0.35rem 0;
    font-size: 0.85rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.top-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.top-header-info {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.top-header-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: color 0.3s ease;
    font-size: 0.85rem;
}

.top-header-link:hover {
    color: white;
}

.top-icon {
    font-size: 0.9rem;
}

.top-header-cta {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.btn-top {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.8rem;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    white-space: nowrap;
}

.btn-top:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 32px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.navbar {
    padding: 0;
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border-color);
}

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

.logo-image {
    height: 42px;
    width: auto;
    object-fit: contain;
}

.logo h1 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    line-height: 1.2;
}

.company-info-box {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    border-left: 4px solid var(--primary-color);
}

.company-info-box p {
    margin: 0.5rem 0;
    color: var(--text-dark);
}

.company-info-box p:first-child {
    margin-top: 0;
}

.company-info-box p:last-child {
    margin-bottom: 0;
}

.certificate-display {
    margin-top: 2rem;
    text-align: center;
}

.certificate-image {
    max-width: 100%;
    height: auto;
    max-height: 500px;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0.6rem 0;
    margin: 0;
}

/* Mobile menu overlay */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-overlay.active {
    display: block;
    opacity: 1;
}

@media (max-width: 768px) {
    .menu-overlay.active {
        display: block;
    }
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.875rem;
    transition: color 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.2rem;
    white-space: nowrap;
    padding: 0.4rem 0.5rem;
    border-radius: 4px;
}

.nav-link:hover {
    background: rgba(37, 99, 235, 0.05);
}


.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 6px;
    padding: 0.4rem 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.3s ease;
    list-style: none;
    margin-top: 0.4rem;
    z-index: 1001;
    border: 1px solid var(--border-color);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.6rem 1.25rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: background 0.2s ease;
    font-size: 0.875rem;
}

.dropdown-menu a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

.dropdown-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.header-cta {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
    text-align: center;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

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

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

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

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    padding-top: 140px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
}

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

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem 0;
    z-index: 2;
}

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

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1rem;
    opacity: 0.9;
}

/* Section Styles */
section {
    padding: 3rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    background: var(--bg-white);
}

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

.service-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Coverage Section */
.coverage {
    background: var(--bg-light);
}

.coverage-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.coverage-map {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder {
    text-align: center;
    color: var(--text-light);
}

.map-placeholder h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.routes-list h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.route-categories {
    display: grid;
    gap: 1.5rem;
}

.route-category {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.route-category h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.route-category ul {
    list-style: none;
}

.route-category li {
    padding: 0.5rem 0;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

.route-category li:last-child {
    border-bottom: none;
}

/* Track Section */
.track {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
}

.track .section-title,
.track .section-subtitle {
    color: white;
}

.track-form-container {
    max-width: 600px;
    margin: 0 auto 3rem;
}

.track-form {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.track-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
    color: var(--text-dark);
    background: white;
}

/* Track input inside shipment-info */
.shipment-info .track-input {
    border: 2px solid var(--border-color);
    background: var(--bg-white);
}

.shipment-info .track-input:focus {
    border-color: var(--primary-color);
}

.track-hint {
    text-align: center;
    opacity: 0.9;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Track hint inside shipment-info */
.shipment-info .track-hint {
    color: var(--text-light);
    opacity: 1;
}

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

.track-feature {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

/* Track feature inside shipment-info (white background) */
.shipment-info .track-feature {
    background: var(--bg-light);
    backdrop-filter: none;
    border: 1px solid var(--border-color);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.track-feature h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: white;
}

/* Track feature heading inside shipment-info (white background) */
.shipment-info .track-feature h4 {
    color: var(--text-dark);
}

.track-feature p {
    opacity: 0.9;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Track feature text inside shipment-info (white background) */
.shipment-info .track-feature p {
    color: var(--text-light);
    opacity: 1;
}

/* Industries Section */
.industries {
    background: var(--bg-white);
}

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

.industry-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.industry-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.industry-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.industry-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.industry-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* About Section */
.about {
    background: var(--bg-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text .lead {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

.about-values {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

.value-item {
    background: var(--bg-white);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

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

.value-item p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.95rem;
}

.about-image {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder {
    text-align: center;
    color: var(--text-light);
}

/* Pricing Section */
.pricing {
    background: var(--bg-white);
}

.quote-form-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.quote-form {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.quote-form h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
    outline: none;
}

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

/* Form Messages */
.success-message,
.error-message {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-weight: 500;
    animation: slideDown 0.3s ease;
}

.success-message {
    background: #10b981;
    color: white;
    border: 1px solid #059669;
}

.error-message {
    background: #ef4444;
    color: white;
    border: 1px solid #dc2626;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.pricing-info {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.pricing-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.75rem 0;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-contact {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.pricing-contact h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.pricing-contact p {
    margin-bottom: 0.5rem;
    opacity: 0.95;
}

/* Testimonials Section */
.testimonials {
    background: var(--bg-light);
}

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

.testimonial-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.testimonial-rating {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
}

.author-info h4 {
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.author-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

/* Contact Section */
.contact {
    background: var(--bg-white);
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.contact-form-wrapper {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.contact-form {
    display: flex;
    flex-direction: column;
}

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

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: start;
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-item h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

/* FAQ Section */
.faq {
    background: var(--bg-light);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-white);
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin: 0;
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

/* Policies Section */
.policies {
    background: var(--bg-white);
}

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

.policy-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.policy-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.policy-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.policy-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.policy-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.policy-link:hover {
    color: var(--primary-dark);
}

/* Blog / News Section */
.blog {
    padding: 5rem 0;
    background: var(--bg-light);
}

.blog-subsection {
    margin-bottom: 2rem;
}

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

.blog-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.blog-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.blog-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.blog-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.blog-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.blog-link:hover {
    color: var(--primary-dark);
}

/* Shipment Info Section */
.shipment-info {
    padding: 5rem 0;
    background: var(--bg-white);
}

.shipment-subsection {
    margin-bottom: 2rem;
}

.rates-content {
    margin-top: 2rem;
}

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

.rate-factor {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.rate-factor h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.rate-factor ul {
    list-style: none;
    padding: 0;
}

.rate-factor ul li {
    padding: 0.5rem 0;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

.rate-factor ul li:last-child {
    border-bottom: none;
}

.rates-cta {
    text-align: center;
    margin-top: 2rem;
}

.timeline-content {
    margin-top: 2rem;
}

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

.timeline-service {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.timeline-service h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.timeline-service ul {
    list-style: none;
    padding: 0;
}

.timeline-service ul li {
    padding: 0.5rem 0;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

.timeline-service ul li:last-child {
    border-bottom: none;
}

.timeline-note {
    margin-top: 1.5rem;
    font-style: italic;
    color: var(--text-light);
    text-align: center;
}

/* Book Shipment Section */
.book-shipment {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    text-align: center;
    padding: 4rem 0;
}

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

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

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: white;
}

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

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

.footer-section ul li {
    margin-bottom: 0.75rem;
}

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

.footer-section ul li a:hover {
    color: white;
}

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

.social-links a {
    font-size: 1.5rem;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    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);
}

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

/* Responsive Design */
/* Home Section Styles */
.home-section {
    background: var(--bg-white);
    padding: 5rem 0;
}

.home-subsection {
    margin-bottom: 2rem;
}

.subsection-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-align: center;
}

.overview-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.overview-content .lead {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

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

.overview-feature {
    text-align: center;
    padding: 1.5rem;
}

.overview-feature h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.overview-feature p {
    color: var(--text-light);
    font-size: 0.95rem;
}

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

.why-choose-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.why-choose-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.why-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.why-choose-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.why-choose-card p {
    color: var(--text-light);
    line-height: 1.8;
}

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

.highlight-item {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    position: relative;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.highlight-number {
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--primary-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.highlight-item h4 {
    font-size: 1.2rem;
    margin: 1rem 0 0.5rem;
    color: var(--text-dark);
}

.highlight-item p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Service Detail Styles */
.service-detail {
    background: var(--bg-light);
    padding: 2rem 0;
    margin-bottom: 1.5rem;
    border-radius: 12px;
}

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

.service-icon-large {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.service-detail-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    text-align: center;
}

.service-detail-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    text-align: center;
}

.service-features {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.service-features li {
    padding: 0.75rem;
    background: var(--bg-white);
    border-radius: 8px;
    color: var(--text-dark);
}

/* Coverage Subsection Styles */
.coverage-subsection {
    margin-bottom: 4rem;
    padding: 2rem 0;
}

.subsection-description {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

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

.country-region {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.country-region h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.country-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.country-list span {
    background: var(--bg-light);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    color: var(--text-dark);
}

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

.route-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.route-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.route-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.route-card ul {
    list-style: none;
    padding-left: 0;
}

.route-card li {
    padding: 0.5rem 0;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

.route-card li:last-child {
    border-bottom: none;
}

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

.domestic-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.domestic-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.domestic-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.domestic-card ul {
    list-style: none;
    padding-left: 0;
}

.domestic-card li {
    padding: 0.5rem 0;
    color: var(--text-light);
}

/* Track Subsection Styles */
.track-subsection {
    margin-bottom: 2rem;
}

/* Track subsection inside shipment-info (white background) */
.shipment-info .track-subsection {
    color: var(--text-dark);
}

.shipment-info .track-subsection .subsection-title {
    color: var(--text-dark);
}

.shipment-info .track-subsection .track-hint {
    color: var(--text-light);
}

.track-info {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
    backdrop-filter: blur(10px);
    max-width: 100%;
}

.track-info h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: white;
}

/* Track info inside shipment-info (white background) */
.shipment-info .track-info {
    background: var(--bg-white);
    backdrop-filter: none;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.shipment-info .track-info h4 {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 2rem;
}

.track-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 100%;
    margin: 0 auto;
}

.track-step {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

/* Step number inside shipment-info (white background) */
.shipment-info .step-number {
    background: var(--primary-color);
    color: white;
}

.track-step p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
    max-width: 100%;
}

/* Track step text inside shipment-info (white background) */
.shipment-info .track-step p {
    color: var(--text-light);
    margin-top: 0.5rem;
}

/* Industry Features */
.industry-features {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
}

.industry-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
    font-size: 0.95rem;
}

.industry-features li::before {
    content: "• ";
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 0.5rem;
}

/* About Subsection Styles */
.about-subsection {
    margin-bottom: 2rem;
}

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

.story-content .lead {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.story-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.timeline-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 12px;
}

.timeline-year {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.timeline-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

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

.mission-card,
.vision-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.mission-card h3,
.vision-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.mission-card p,
.vision-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.mission-card ul,
.vision-card ul {
    list-style: none;
    padding-left: 0;
}

.mission-card li,
.vision-card li {
    padding: 0.75rem 0;
    color: var(--text-dark);
}

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

.trust-item {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.trust-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.trust-item h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.trust-item p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Pricing Subsection */
.pricing-subsection {
    margin-bottom: 2rem;
}

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

.policy-content .policy-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.policy-content .policy-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.policy-content .policy-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Testimonials Subsection */
.testimonials-subsection {
    margin-bottom: 2rem;
}

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

.success-story {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.story-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.success-story h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.success-story p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.story-metrics {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.story-metrics span {
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Contact Subsection Styles */
.contact-subsection {
    margin-bottom: 1.5rem;
}

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

.office-card {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.office-card h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.address-details p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    line-height: 1.6;
    font-size: 0.9rem;
}

.address-details p:last-child {
    margin-bottom: 0;
}

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

.contact-number-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.contact-number-card.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
}

.number-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-number-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.number-list p {
    margin-bottom: 0.75rem;
    line-height: 1.8;
}

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

.email-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.3s ease;
}

.email-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.email-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.email-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.email-card p {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.email-desc {
    color: var(--text-light);
    font-size: 0.9rem;
}

.contact-form-section {
    margin-top: 4rem;
}

/* FAQ Category Styles */
.faq-category {
    margin-bottom: 2rem;
}

.faq-category-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-align: center;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--border-color);
}

.faq-question h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin: 0;
}

/* Policy Subsection Styles */
.policy-subsection {
    margin-bottom: 2rem;
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
}

.policy-content-detailed {
    max-width: 1000px;
    margin: 0 auto;
}

.policy-section {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
}

.policy-section h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.policy-section p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.policy-section ul {
    list-style: none;
    padding-left: 0;
}

.policy-section li {
    padding: 0.75rem 0;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
    line-height: 1.8;
}

.policy-section li:last-child {
    border-bottom: none;
}

.policy-section li::before {
    content: "→ ";
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 0.5rem;
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .coverage-content,
    .about-content,
    .quote-form-container,
    .contact-content {
        grid-template-columns: 1fr;
    }

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

    .nav-menu {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .header-cta {
        gap: 0.75rem;
    }

    .btn {
        padding: 0.65rem 1.3rem;
        font-size: 0.9rem;
    }

    .service-features {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .countries-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 900px) and (min-width: 769px) {
    .nav-menu {
        gap: 1rem;
        font-size: 0.85rem;
    }

    .header-cta .btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }

    .logo h1 {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .top-header {
        display: none;
    }

    .header {
        top: 0;
    }

    .header-top {
        flex-wrap: wrap;
        gap: 0.75rem;
        padding: 0.5rem 0;
    }

    .logo-image {
        height: 36px;
    }

    .logo h1 {
        font-size: 1.1rem;
    }

    .top-header-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .top-header-info {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
    }

    .top-header-cta {
        width: 100%;
        flex-direction: column;
    }

    .btn-top {
        width: 100%;
        text-align: center;
    }

    .header-cta {
        display: none;
    }

    .header-cta.mobile {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 1rem;
        margin: 0;
        padding: 1.5rem 2rem;
        border-bottom: 2px solid var(--border-color);
        background: var(--bg-light);
    }

    .header-cta.mobile .btn {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
        text-align: center;
    }

    .hamburger {
        display: flex;
        z-index: 1002;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        left: -100%;
        flex-direction: column;
        background: white;
        width: 85%;
        max-width: 450px;
        height: 100vh;
        padding: 0;
        margin: 0;
        box-shadow: var(--shadow-xl);
        transition: left 0.3s ease;
        gap: 0;
        align-items: stretch;
        border-bottom: none;
        overflow-y: auto;
        overflow-x: hidden;
        z-index: 1001;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
    }

    .nav-menu::-webkit-scrollbar {
        width: 6px;
    }

    .nav-menu::-webkit-scrollbar-track {
        background: var(--bg-light);
    }

    .nav-menu::-webkit-scrollbar-thumb {
        background: var(--border-color);
        border-radius: 3px;
    }

    .nav-menu::-webkit-scrollbar-thumb:hover {
        background: var(--text-light);
    }

    .nav-menu.active {
        display: flex;
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .nav-menu > li:last-child .nav-link {
        border-bottom: none;
    }

    .nav-menu .nav-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 1rem 2rem;
        color: var(--text-dark);
        text-decoration: none;
        font-weight: 500;
        font-size: 1rem;
        border-bottom: 1px solid var(--border-color);
        transition: background 0.2s ease, color 0.2s ease;
        box-sizing: border-box;
        word-wrap: break-word;
        white-space: normal;
        text-align: left;
    }

    .nav-menu .nav-link:hover {
        background: var(--bg-light);
        color: var(--primary-color);
    }

    .nav-menu .nav-link::after {
        display: none;
    }

    .dropdown {
        width: 100%;
    }

    .dropdown-menu {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none;
        margin: 0 !important;
        margin-top: 0;
        margin-left: 0;
        border-left: none;
        border-top: 1px solid var(--border-color);
        padding: 0;
        background: var(--bg-light);
        border-radius: 0;
        width: 100%;
        min-width: 100%;
        max-width: 100%;
        display: none !important;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .dropdown.active .dropdown-menu {
        display: block !important;
        max-height: 1000px;
    }

    .dropdown-menu li {
        width: 100%;
        list-style: none;
    }

    .dropdown-menu a {
        display: block;
        width: 100%;
        padding: 0.875rem 2rem 0.875rem 3rem;
        color: var(--text-light);
        text-decoration: none;
        font-size: 0.95rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        transition: background 0.2s ease, color 0.2s ease;
        word-wrap: break-word;
        white-space: normal;
        text-align: left;
        box-sizing: border-box;
    }

    .dropdown-menu a:hover {
        background: rgba(37, 99, 235, 0.1);
        color: var(--primary-color);
    }

    .dropdown-menu a:last-child {
        border-bottom: none;
    }

    .dropdown-arrow {
        float: right;
        margin-left: 0.5rem;
        font-size: 0.7rem;
        transition: transform 0.3s ease;
    }

    .dropdown.active .dropdown-arrow {
        transform: rotate(180deg);
    }

    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }

    html.menu-open {
        overflow: hidden;
    }

    .menu-close-btn {
        position: absolute;
        top: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
        border: none;
        background: var(--bg-light);
        border-radius: 50%;
        font-size: 1.5rem;
        color: var(--text-dark);
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1002;
        transition: background 0.2s ease, transform 0.2s ease;
    }

    .menu-close-btn:hover {
        background: var(--primary-color);
        color: white;
        transform: rotate(90deg);
    }

    .hero {
        padding-top: 120px;
    }

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

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

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

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

    .track-form {
        flex-direction: column;
    }

    .subsection-title {
        font-size: 1.5rem;
    }

    .service-detail-text h3 {
        font-size: 1.5rem;
    }

    .countries-grid,
    .shipping-routes,
    .domestic-services {
        grid-template-columns: 1fr;
    }

    .why-choose-grid,
    .highlights-grid,
    .trusted-reasons {
        grid-template-columns: 1fr;
    }

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

    .policy-content {
        grid-template-columns: 1fr;
    }

    .success-stories {
        grid-template-columns: 1fr;
    }

    .office-addresses,
    .contact-numbers,
    .email-contacts {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .header-top {
        padding: 0.75rem 0;
    }

    .logo h1 {
        font-size: 1.1rem;
    }

    .hero {
        padding-top: 100px;
        min-height: auto;
        padding-bottom: 3rem;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .services-grid,
    .industries-grid,
    .testimonials-grid,
    .policies-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stat-item h3 {
        font-size: 2rem;
    }

    .stat-item p {
        font-size: 0.85rem;
    }

    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }

    .btn-large {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .subsection-title {
        font-size: 1.3rem;
    }

    .overview-content .lead {
        font-size: 1.1rem;
    }

    .service-detail {
        padding: 2rem 0;
    }

    .service-icon-large {
        font-size: 3rem;
    }

    .service-detail-text h3 {
        font-size: 1.3rem;
    }

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

    .country-list {
        gap: 0.5rem;
    }

    .country-list span {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }

    .quote-form-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .quote-form,
    .pricing-info {
        padding: 1.5rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .policy-subsection {
        padding: 1.5rem;
    }

    .policy-section {
        padding: 1.5rem;
    }

    .faq-category-title {
        font-size: 1.5rem;
    }

    .faq-question h4 {
        font-size: 1rem;
    }
}
